blob: 72a6903dcd0d403888c7a54a0adedd01f7f4f940 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>Apache Axis2/C - Apache Axis2/C - hello.c</title><style type="text/css" media="all">
@import url("../../../style/maven-base.css");
@import url("../../../style/maven-classic.css");</style><link rel="stylesheet" href="../../../style/print.css" type="text/css" media="print"></link><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></meta></head><body class="composite"><div id="banner"><a href="http://www.apache.org/" id="organizationLogo"><img alt="Apache Software Foundation" src="http://www.apache.org/images/asf-logo.gif"></img></a><a href="http://ws.apache.org/axis2/c" id="projectLogo"><img alt="Apache Axis2/C" src="http://ws.apache.org/axis2/images/axis.jpg"></img></a><div class="clear"><hr></hr></div></div><div id="breadcrumbs"><div class="xleft">
Last published: 21 July 2008
| Doc for 1.5.0</div><div class="xright"></div><div class="clear"><hr></hr></div></div><div id="leftColumn"><div id="navcolumn"><div id="menuApache_Axis2_C"><h5>Apache Axis2/C</h5><ul><li class="none"><a href="../../../index.html">Apache Axis2/C Home</a></li><li class="expanded"><a href="../../../download.cgi">Download Axis2/C</a><ul><li class="none"><a href="../../../download.cgi">Releases</a></li></ul></li><li class="expanded"><a href="../../../docs/index.html">Documentation</a><ul><li class="none"><a href="../../../docs/installationguide.html">Installation Guide</a></li><li class="none"><a href="../../../docs/axis2c_manual.html">Axis2/C manual</a></li><li class="none"><a href="../../../docs/faq.html">Axis2/C FAQ</a></li></ul></li><li class="expanded"><a href="../../../lists_issues.html">Get Involved</a><ul><li class="none"><a href="../../../lists_issues.html">Mailing Lists &amp; Issue Tracking</a></li><li class="none"><a href="../../../svn.html">Checkout Source Code</a></li></ul></li><li class="expanded"><a href="../../../coding_conventions.html">Developer Guidelines</a><ul><li class="none"><a href="../../../coding_conventions.html">Coding Convention</a></li><li class="none"><a href="../../../versioning.html">Versionning</a></li></ul></li><li class="expanded"><a href="../../../team-list.html">Project Information</a><ul><li class="none"><a href="../../../team-list.html">Project Team</a></li><li class="none"><a href="http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/" class="externalLink" title="External Link">Source Code</a></li></ul></li></ul></div><a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"><img alt="Built by Maven" src="../../../images/logos/maven-button-1.png"></img></a></div></div><div id="bodyColumn"><div class="contentBox"><div class="section"><div class="contentBox"><div class="section"><font face="Monospace">
<font color="#808080"><i>/*<br></br>
 * Copyright 2004,2005 The Apache Software Foundation.<br></br>
 *<br></br>
 * Licensed under the Apache License, Version 2.0 (the "License");<br></br>
 * you may not use this file except in compliance with the License.<br></br>
 * You may obtain a copy of the License at<br></br>
 *<br></br>
 *      http://www.apache.org/licenses/LICENSE-2.0<br></br>
 *<br></br>
 * Unless required by applicable law or agreed to in writing, software<br></br>
 * distributed under the License is distributed on an "AS IS" BASIS,<br></br>
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<br></br>
 * See the License for the specific language governing permissions and<br></br>
 * limitations under the License.<br></br>
 */</i></font><br></br>
<br></br>
<font color="#008000">#include &lt;stdio.h&gt;<br></br></font>
<font color="#008000">#include &lt;axiom.h&gt;<br></br></font>
<font color="#008000">#include &lt;axis2_util.h&gt;<br></br></font>
<font color="#008000">#include &lt;axiom_soap.h&gt;<br></br></font>
<font color="#008000">#include &lt;axis2_client.h&gt;<br></br></font>
<br></br>
<font color="#000000">axiom_node_t</font> *<br></br>
<font color="#000000">build_om_request</font>(<font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font>);<br></br>
<br></br>
<font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<br></br>
<font color="#000000">process_om_response</font>(<font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font>,<br></br>
        <font color="#000000">axiom_node_t</font> *<font color="#000000">node</font>);<br></br>
<br></br>
<font color="#800000">int</font> <font color="#000000">main</font>(<font color="#800000">int</font> <font color="#000000">argc</font><font color="#800000">char</font>** <font color="#000000">argv</font>)<br></br>
{<br></br>
    <font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<font color="#000000">address</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axis2_endpoint_ref_t</font><font color="#000000">endpoint_ref</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axis2_options_t</font> *<font color="#000000">options</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<font color="#000000">client_home</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axis2_svc_client_t</font><font color="#000000">svc_client</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axiom_node_t</font> *<font color="#000000">payload</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axiom_node_t</font> *<font color="#000000">ret_node</font> = <font color="#000000">NULL</font>;<br></br>
<br></br>
    <font color="#000000">env</font> = <font color="#000000">axutil_env_create_all</font>(<font color="#FF0000">"hello_client.log"</font><font color="#000000">AXIS2_LOG_LEVEL_TRACE</font>);<br></br>
<br></br>
    <font color="#000000">options</font> = <font color="#000000">axis2_options_create</font>(<font color="#000000">env</font>);<br></br>
<br></br>
    <font color="#000000">address</font> = <font color="#FF0000">"http://localhost:9090/axis2/services/hello"</font>;<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">argc</font> &gt; <font color="#0000FF">1</font>)<br></br>
        <font color="#000000">address</font> = <font color="#000000">argv</font>[<font color="#0000FF">1</font>];<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">axutil_strcmp</font>(<font color="#000000">address</font><font color="#FF0000">"-h"</font>) == <font color="#0000FF">0</font>)<br></br>
    {<br></br>
        <font color="#000000">printf</font>(<font color="#FF0000">"Usage : %s [endpoint_url]\n"</font><font color="#000000">argv</font>[<font color="#0000FF">0</font>]);<br></br>
        <font color="#000000">printf</font>(<font color="#FF0000">"use -h for help\n"</font>);<br></br>
        <font color="#000000"><b>return</b></font> <font color="#0000FF">0</font>;<br></br>
    }<br></br>
    <font color="#000000">printf</font>(<font color="#FF0000">"Using endpoint : %s\n"</font><font color="#000000">address</font>);<br></br>
    <font color="#000000">endpoint_ref</font> = <font color="#000000">axis2_endpoint_ref_create</font>(<font color="#000000">env</font><font color="#000000">address</font>);<br></br>
    <font color="#000000">axis2_options_set_to</font>(<font color="#000000">options</font><font color="#000000">env</font><font color="#000000">endpoint_ref</font>);<br></br>
<br></br>
    <font color="#000000">client_home</font> = <font color="#000000">AXIS2_GETENV</font>(<font color="#FF0000">"AXIS2C_HOME"</font>);<br></br>
    <font color="#000000"><b>if</b></font> (!<font color="#000000">client_home</font> &amp;&amp; !<font color="#000000">strcmp</font>(<font color="#000000">client_home</font><font color="#FF0000">""</font>))<br></br>
        <font color="#000000">client_home</font> = <font color="#FF0000">"../.."</font>;<br></br>
<br></br>
    <font color="#000000">svc_client</font> = <font color="#000000">axis2_svc_client_create</font>(<font color="#000000">env</font><font color="#000000">client_home</font>);<br></br>
    <font color="#000000"><b>if</b></font> (!<font color="#000000">svc_client</font>)<br></br>
    {<br></br>
        <font color="#000000">printf</font>(<font color="#FF0000">"Error creating service client\n"</font>);<br></br>
        <font color="#000000">AXIS2_LOG_ERROR</font>(<font color="#000000">env</font>-&gt;<font color="#000000">log</font><font color="#000000">AXIS2_LOG_SI</font><font color="#FF0000">"Stub invoke FAILED: Error code:"</font><br></br>
                <font color="#FF0000">" %d :: %s"</font><font color="#000000">env</font>-&gt;<font color="#000000">error</font>-&gt;<font color="#000000">error_number</font>,<br></br>
                <font color="#000000">AXIS2_ERROR_GET_MESSAGE</font>(<font color="#000000">env</font>-&gt;<font color="#000000">error</font>));<br></br>
        <font color="#000000"><b>return</b></font> -<font color="#0000FF">1</font>;<br></br>
    }<br></br>
<br></br>
    <font color="#000000">axis2_svc_client_set_options</font>(<font color="#000000">svc_client</font><font color="#000000">env</font><font color="#000000">options</font>);<br></br>
<br></br>
    <font color="#000000">payload</font> = <font color="#000000">build_om_request</font>(<font color="#000000">env</font>);<br></br>
<br></br>
    <font color="#000000">ret_node</font> = <font color="#000000">axis2_svc_client_send_receive</font>(<font color="#000000">svc_client</font><font color="#000000">env</font><font color="#000000">payload</font>);<br></br>
<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">ret_node</font>)<br></br>
    {<br></br>
        <font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<font color="#000000">greeting</font> = <font color="#000000">process_om_response</font>(<font color="#000000">env</font><font color="#000000">ret_node</font>);<br></br>
        <font color="#000000"><b>if</b></font> (<font color="#000000">greeting</font>)<br></br>
            <font color="#000000">printf</font>(<font color="#FF0000">"\nReceived greeting: \"%s\" from service\n"</font><font color="#000000">greeting</font>);<br></br>
<br></br>
        <font color="#000000">axiom_node_free_tree</font>(<font color="#000000">ret_node</font><font color="#000000">env</font>);<br></br>
        <font color="#000000">ret_node</font> = <font color="#000000">NULL</font>;<br></br>
    }<br></br>
    <font color="#000000"><b>else</b></font><br></br>
    {<br></br>
        <font color="#000000">AXIS2_LOG_ERROR</font>(<font color="#000000">env</font>-&gt;<font color="#000000">log</font><font color="#000000">AXIS2_LOG_SI</font><font color="#FF0000">"Stub invoke FAILED: Error code:"</font><br></br>
                <font color="#FF0000">" %d :: %s"</font><font color="#000000">env</font>-&gt;<font color="#000000">error</font>-&gt;<font color="#000000">error_number</font>,<br></br>
                <font color="#000000">AXIS2_ERROR_GET_MESSAGE</font>(<font color="#000000">env</font>-&gt;<font color="#000000">error</font>));<br></br>
        <font color="#000000">printf</font>(<font color="#FF0000">"hello client invoke FAILED!\n"</font>);<br></br>
    }<br></br>
<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">svc_client</font>)<br></br>
    {<br></br>
        <font color="#000000">axis2_svc_client_free</font>(<font color="#000000">svc_client</font><font color="#000000">env</font>);<br></br>
        <font color="#000000">svc_client</font> = <font color="#000000">NULL</font>;<br></br>
    }<br></br>
<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">env</font>)<br></br>
    {<br></br>
        <font color="#000000">axutil_env_free</font>((<font color="#000000">axutil_env_t</font> *) <font color="#000000">env</font>);<br></br>
        <font color="#000000">env</font> = <font color="#000000">NULL</font>;<br></br>
    }<br></br>
<br></br>
    <font color="#000000"><b>return</b></font> <font color="#0000FF">0</font>;<br></br>
}<br></br>
<br></br>
<font color="#000000">axiom_node_t</font> *<br></br>
<font color="#000000">build_om_request</font>(<font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font>)<br></br>
{<br></br>
    <font color="#000000">axiom_node_t</font><font color="#000000">greet_om_node</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axiom_element_t</font> * <font color="#000000">greet_om_ele</font> = <font color="#000000">NULL</font>;<br></br>
<br></br>
    <font color="#000000">greet_om_ele</font> = <font color="#000000">axiom_element_create</font>(<font color="#000000">env</font><font color="#000000">NULL</font><font color="#FF0000">"greet"</font><font color="#000000">NULL</font>, &amp;<font color="#000000">greet_om_node</font>);<br></br>
    <font color="#000000">axiom_element_set_text</font>(<font color="#000000">greet_om_ele</font><font color="#000000">env</font><font color="#FF0000">"Hello Server!"</font><font color="#000000">greet_om_node</font>);<br></br>
<br></br>
    <font color="#000000"><b>return</b></font> <font color="#000000">greet_om_node</font>;<br></br>
}<br></br>
<br></br>
<font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<br></br>
<font color="#000000">process_om_response</font>(<font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font>,<br></br>
        <font color="#000000">axiom_node_t</font> *<font color="#000000">node</font>)<br></br>
{<br></br>
    <font color="#000000">axiom_node_t</font> *<font color="#000000">service_greeting_node</font> = <font color="#000000">NULL</font>;<br></br>
    <font color="#000000">axiom_node_t</font> *<font color="#000000">return_node</font> = <font color="#000000">NULL</font>;<br></br>
<br></br>
    <font color="#000000"><b>if</b></font> (<font color="#000000">node</font>)<br></br>
    {<br></br>
        <font color="#000000">service_greeting_node</font> = <font color="#000000">axiom_node_get_first_child</font>(<font color="#000000">node</font><font color="#000000">env</font>);<br></br>
        <font color="#000000"><b>if</b></font> (<font color="#000000">service_greeting_node</font> &amp;&amp;<br></br>
                <font color="#000000">axiom_node_get_node_type</font>(<font color="#000000">service_greeting_node</font><font color="#000000">env</font>) == <font color="#000000">AXIOM_TEXT</font>)<br></br>
        {<br></br>
            <font color="#000000">axiom_text_t</font> *<font color="#000000">greeting</font> = (<font color="#000000">axiom_text_t</font> *)<font color="#000000">axiom_node_get_data_element</font>(<font color="#000000">service_greeting_node</font><font color="#000000">env</font>);<br></br>
            <font color="#000000"><b>if</b></font> (<font color="#000000">greeting</font> &amp;&amp; <font color="#000000">axiom_text_get_value</font>(<font color="#000000">greeting</font> , <font color="#000000">env</font>))<br></br>
            {<br></br>
                <font color="#000000"><b>return</b></font> <font color="#000000">axiom_text_get_value</font>(<font color="#000000">greeting</font><font color="#000000">env</font>);<br></br>
            }<br></br>
        }<br></br>
    }<br></br>
    <font color="#000000"><b>return</b></font> <font color="#000000">NULL</font>;<br></br>
}<br></br>
<br></br>
</font></div></div><div class="clear"><hr></hr></div></div></div></div><div class="clear"><hr></hr></div><div id="footer"><div class="xright">© 2005-2008, Apache Software Foundation</div><div class="clear"><hr></hr></div></div></body></html>