diff options
author | gmcdonald | 2010-02-13 01:32:03 +0000 |
---|---|---|
committer | gmcdonald | 2010-02-13 01:32:03 +0000 |
commit | 0425aadc78680e53000fd0108b540d6eca048516 (patch) | |
tree | 8ec7ab8e015d454c5ec586dfc91e05a2dce1cfc0 /xdocs/docs/hello/client | |
download | axis2c-0425aadc78680e53000fd0108b540d6eca048516.tar.gz axis2c-0425aadc78680e53000fd0108b540d6eca048516.tar.bz2 |
Moving axis svn, part of TLP move INFRA-2441
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@909681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'xdocs/docs/hello/client')
-rw-r--r-- | xdocs/docs/hello/client/hello.c | 154 | ||||
-rw-r--r-- | xdocs/docs/hello/client/hello.c.html | 147 |
2 files changed, 301 insertions, 0 deletions
diff --git a/xdocs/docs/hello/client/hello.c b/xdocs/docs/hello/client/hello.c new file mode 100644 index 0000000..1cd6760 --- /dev/null +++ b/xdocs/docs/hello/client/hello.c @@ -0,0 +1,154 @@ + +/* + * Copyright 2004,2005 The Apache Software Foundation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include <stdio.h> +#include <axiom.h> +#include <axis2_util.h> +#include <axiom_soap.h> +#include <axis2_client.h> + +axiom_node_t *build_om_request( + const axutil_env_t * env); + +const axis2_char_t *process_om_response( + const axutil_env_t * env, + axiom_node_t * node); + +int +main( + int argc, + char **argv) +{ + const axutil_env_t *env = NULL; + const axis2_char_t *address = NULL; + axis2_endpoint_ref_t *endpoint_ref = NULL; + axis2_options_t *options = NULL; + const axis2_char_t *client_home = NULL; + axis2_svc_client_t *svc_client = NULL; + axiom_node_t *payload = NULL; + axiom_node_t *ret_node = NULL; + + env = axutil_env_create_all("hello_client.log", AXIS2_LOG_LEVEL_TRACE); + + options = axis2_options_create(env); + + address = "http://localhost:9090/axis2/services/hello"; + if (argc > 1) + address = argv[1]; + if (axutil_strcmp(address, "-h") == 0) + { + printf("Usage : %s [endpoint_url]\n", argv[0]); + printf("use -h for help\n"); + return 0; + } + printf("Using endpoint : %s\n", address); + endpoint_ref = axis2_endpoint_ref_create(env, address); + axis2_options_set_to(options, env, endpoint_ref); + + client_home = AXIS2_GETENV("AXIS2C_HOME"); + if (!client_home || !strcmp(client_home, "")) + client_home = "../.."; + + svc_client = axis2_svc_client_create(env, client_home); + if (!svc_client) + { + printf("Error creating service client\n"); + AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, + "Stub invoke FAILED: Error code:" " %d :: %s", + env->error->error_number, + AXIS2_ERROR_GET_MESSAGE(env->error)); + return -1; + } + + axis2_svc_client_set_options(svc_client, env, options); + + payload = build_om_request(env); + + ret_node = axis2_svc_client_send_receive(svc_client, env, payload); + + if (ret_node) + { + const axis2_char_t *greeting = process_om_response(env, ret_node); + if (greeting) + printf("\nReceived greeting: \"%s\" from service\n", greeting); + + axiom_node_free_tree(ret_node, env); + ret_node = NULL; + } + else + { + AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, + "Stub invoke FAILED: Error code:" " %d :: %s", + env->error->error_number, + AXIS2_ERROR_GET_MESSAGE(env->error)); + printf("hello client invoke FAILED!\n"); + } + + if (svc_client) + { + axis2_svc_client_free(svc_client, env); + svc_client = NULL; + } + + if (env) + { + axutil_env_free((axutil_env_t *) env); + env = NULL; + } + + return 0; +} + +axiom_node_t * +build_om_request( + const axutil_env_t * env) +{ + axiom_node_t *greet_om_node = NULL; + axiom_element_t *greet_om_ele = NULL; + + greet_om_ele = + axiom_element_create(env, NULL, "greet", NULL, &greet_om_node); + axiom_element_set_text(greet_om_ele, env, "Hello Server!", greet_om_node); + + return greet_om_node; +} + +const axis2_char_t * +process_om_response( + const axutil_env_t * env, + axiom_node_t * node) +{ + axiom_node_t *service_greeting_node = NULL; + axiom_node_t *return_node = NULL; + + if (node) + { + service_greeting_node = axiom_node_get_first_child(node, env); + if (service_greeting_node && + axiom_node_get_node_type(service_greeting_node, env) == AXIOM_TEXT) + { + axiom_text_t *greeting = + (axiom_text_t *) + axiom_node_get_data_element(service_greeting_node, env); + if (greeting && axiom_text_get_value(greeting, env)) + { + return axiom_text_get_value(greeting, env); + } + } + } + return NULL; +} diff --git a/xdocs/docs/hello/client/hello.c.html b/xdocs/docs/hello/client/hello.c.html new file mode 100644 index 0000000..505adc4 --- /dev/null +++ b/xdocs/docs/hello/client/hello.c.html @@ -0,0 +1,147 @@ +<!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 - hello.c</title></head><body><div class="contentBox"><div class="section"><font face="Monospace">
+<font color="#808080"><i>/*<br />
+ * Copyright 2004,2005 The Apache Software Foundation.<br />
+ *<br />
+ * Licensed under the Apache License, Version 2.0 (the "License");<br />
+ * you may not use this file except in compliance with the License.<br />
+ * You may obtain a copy of the License at<br />
+ *<br />
+ * http://www.apache.org/licenses/LICENSE-2.0<br />
+ *<br />
+ * Unless required by applicable law or agreed to in writing, software<br />
+ * distributed under the License is distributed on an "AS IS" BASIS,<br />
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<br />
+ * See the License for the specific language governing permissions and<br />
+ * limitations under the License.<br />
+ */</i></font><br />
+<br />
+<font color="#008000">#include <stdio.h><br /></font>
+<font color="#008000">#include <axiom.h><br /></font>
+<font color="#008000">#include <axis2_util.h><br /></font>
+<font color="#008000">#include <axiom_soap.h><br /></font>
+<font color="#008000">#include <axis2_client.h><br /></font>
+<br />
+<font color="#000000">axiom_node_t</font> *<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 />
+<font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<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 />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">node</font>);<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 />
+ <font color="#800000">const</font> <font color="#000000">axutil_env_t</font> *<font color="#000000">env</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<font color="#000000">address</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axis2_endpoint_ref_t</font>* <font color="#000000">endpoint_ref</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axis2_options_t</font> *<font color="#000000">options</font> = <font color="#000000">NULL</font>;<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 />
+ <font color="#000000">axis2_svc_client_t</font>* <font color="#000000">svc_client</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">payload</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">ret_node</font> = <font color="#000000">NULL</font>;<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 />
+ <font color="#000000">options</font> = <font color="#000000">axis2_options_create</font>(<font color="#000000">env</font>);<br />
+<br />
+ <font color="#000000">address</font> = <font color="#ff0000">"http://localhost:9090/axis2/services/hello"</font>;<br />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">argc</font> > <font color="#0000ff">1</font>)<br />
+ <font color="#000000">address</font> = <font color="#000000">argv</font>[<font color="#0000ff">1</font>];<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 />
+ <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 />
+ <font color="#000000">printf</font>(<font color="#ff0000">"use -h for help\n"</font>);<br />
+ <font color="#000000"><b>return</b></font> <font color="#0000ff">0</font>;<br />
+ }<br />
+ <font color="#000000">printf</font>(<font color="#ff0000">"Using endpoint : %s\n"</font>, <font color="#000000">address</font>);<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 />
+ <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 />
+ <font color="#000000">client_home</font> = <font color="#000000">AXIS2_GETENV</font>(<font color="#ff0000">"AXIS2C_HOME"</font>);<br />
+ <font color="#000000"><b>if</b></font> (!<font color="#000000">client_home</font> || !<font color="#000000">strcmp</font>(<font color="#000000">client_home</font>, <font color="#ff0000">""</font>))<br />
+ <font color="#000000">client_home</font> = <font color="#ff0000">"../.."</font>;<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 />
+ <font color="#000000"><b>if</b></font> (!<font color="#000000">svc_client</font>)<br />
+ {<br />
+ <font color="#000000">printf</font>(<font color="#ff0000">"Error creating service client\n"</font>);<br />
+ <font color="#000000">AXIS2_LOG_ERROR</font>(<font color="#000000">env</font>-><font color="#000000">log</font>, <font color="#000000">AXIS2_LOG_SI</font>, <font color="#ff0000">"Stub invoke FAILED: Error code:"</font><br />
+ <font color="#ff0000">" %d :: %s"</font>, <font color="#000000">env</font>-><font color="#000000">error</font>-><font color="#000000">error_number</font>,<br />
+ <font color="#000000">AXIS2_ERROR_GET_MESSAGE</font>(<font color="#000000">env</font>-><font color="#000000">error</font>));<br />
+ <font color="#000000"><b>return</b></font> -<font color="#0000ff">1</font>;<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 />
+ <font color="#000000">payload</font> = <font color="#000000">build_om_request</font>(<font color="#000000">env</font>);<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 />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">ret_node</font>)<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 />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">greeting</font>)<br />
+ <font color="#000000">printf</font>(<font color="#ff0000">"\nReceived greeting: \"%s\" from service\n"</font>, <font color="#000000">greeting</font>);<br />
+<br />
+ <font color="#000000">axiom_node_free_tree</font>(<font color="#000000">ret_node</font>, <font color="#000000">env</font>);<br />
+ <font color="#000000">ret_node</font> = <font color="#000000">NULL</font>;<br />
+ }<br />
+ <font color="#000000"><b>else</b></font><br />
+ {<br />
+ <font color="#000000">AXIS2_LOG_ERROR</font>(<font color="#000000">env</font>-><font color="#000000">log</font>, <font color="#000000">AXIS2_LOG_SI</font>, <font color="#ff0000">"Stub invoke FAILED: Error code:"</font><br />
+ <font color="#ff0000">" %d :: %s"</font>, <font color="#000000">env</font>-><font color="#000000">error</font>-><font color="#000000">error_number</font>,<br />
+ <font color="#000000">AXIS2_ERROR_GET_MESSAGE</font>(<font color="#000000">env</font>-><font color="#000000">error</font>));<br />
+ <font color="#000000">printf</font>(<font color="#ff0000">"hello client invoke FAILED!\n"</font>);<br />
+ }<br />
+<br />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">svc_client</font>)<br />
+ {<br />
+ <font color="#000000">axis2_svc_client_free</font>(<font color="#000000">svc_client</font>, <font color="#000000">env</font>);<br />
+ <font color="#000000">svc_client</font> = <font color="#000000">NULL</font>;<br />
+ }<br />
+<br />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">env</font>)<br />
+ {<br />
+ <font color="#000000">axutil_env_free</font>((<font color="#000000">axutil_env_t</font> *) <font color="#000000">env</font>);<br />
+ <font color="#000000">env</font> = <font color="#000000">NULL</font>;<br />
+ }<br />
+<br />
+ <font color="#000000"><b>return</b></font> <font color="#0000ff">0</font>;<br />
+}<br />
+<br />
+<font color="#000000">axiom_node_t</font> *<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 />
+ <font color="#000000">axiom_node_t</font>* <font color="#000000">greet_om_node</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axiom_element_t</font> * <font color="#000000">greet_om_ele</font> = <font color="#000000">NULL</font>;<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>, &<font color="#000000">greet_om_node</font>);<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 />
+ <font color="#000000"><b>return</b></font> <font color="#000000">greet_om_node</font>;<br />
+}<br />
+<br />
+<font color="#800000">const</font> <font color="#000000">axis2_char_t</font> *<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 />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">node</font>)<br />
+{<br />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">service_greeting_node</font> = <font color="#000000">NULL</font>;<br />
+ <font color="#000000">axiom_node_t</font> *<font color="#000000">return_node</font> = <font color="#000000">NULL</font>;<br />
+<br />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">node</font>)<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 />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">service_greeting_node</font> &&<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 />
+ <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 />
+ <font color="#000000"><b>if</b></font> (<font color="#000000">greeting</font> && <font color="#000000">axiom_text_get_value</font>(<font color="#000000">greeting</font> , <font color="#000000">env</font>))<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 />
+ <font color="#000000"><b>return</b></font> <font color="#000000">NULL</font>;<br />
+}<br />
+<br />
+ </font></div></div><div class="clear"><hr /></div></body></html>
\ No newline at end of file |