From 0425aadc78680e53000fd0108b540d6eca048516 Mon Sep 17 00:00:00 2001 From: gmcdonald Date: Sat, 13 Feb 2010 01:32:03 +0000 Subject: 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 --- samples/client/math/Makefile.am | 20 ++++ samples/client/math/axis2_math_stub.c | 193 ++++++++++++++++++++++++++++++++ samples/client/math/axis2_math_stub.h | 86 +++++++++++++++ samples/client/math/math.mk | 8 ++ samples/client/math/math_client.c | 201 ++++++++++++++++++++++++++++++++++ samples/client/math/services.xml | 18 +++ 6 files changed, 526 insertions(+) create mode 100644 samples/client/math/Makefile.am create mode 100644 samples/client/math/axis2_math_stub.c create mode 100644 samples/client/math/axis2_math_stub.h create mode 100644 samples/client/math/math.mk create mode 100644 samples/client/math/math_client.c create mode 100644 samples/client/math/services.xml (limited to 'samples/client/math') diff --git a/samples/client/math/Makefile.am b/samples/client/math/Makefile.am new file mode 100644 index 0000000..8cca62e --- /dev/null +++ b/samples/client/math/Makefile.am @@ -0,0 +1,20 @@ +prgbindir=$(prefix)/samples/bin +prgbin_PROGRAMS = math +noinst_HEADERS = axis2_math_stub.h +math_SOURCES = axis2_math_stub.c \ + math_client.c + +math_LDADD = \ + -L$(AXIS2C_HOME)/lib \ + -laxutil \ + -laxis2_axiom \ + -laxis2_engine \ + -laxis2_parser \ + -lpthread \ + -laxis2_http_sender \ + -laxis2_http_receiver \ + $(GUTHTHILA_LIBS) + +INCLUDES = @AXIS2INC@ + +EXTRA_DIST=math.mk diff --git a/samples/client/math/axis2_math_stub.c b/samples/client/math/axis2_math_stub.c new file mode 100644 index 0000000..366e159 --- /dev/null +++ b/samples/client/math/axis2_math_stub.c @@ -0,0 +1,193 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 "axis2_math_stub.h" + +axis2_stub_t * +axis2_math_stub_create_with_endpoint_ref_and_client_home( + const axutil_env_t * env, + axis2_endpoint_ref_t * endpoint_ref, + axis2_char_t * client_home) +{ + axis2_stub_t *stub = NULL; + + AXIS2_ENV_CHECK(env, NULL); + + stub = (axis2_stub_t *) + axis2_stub_create_with_endpoint_ref_and_client_home(env, endpoint_ref, + client_home); + if (!stub) + { + AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE); + return NULL; + } + axis2_populate_axis_service(stub, env); + return stub; +} + +void +axis2_populate_axis_service( + axis2_stub_t * stub, + const axutil_env_t * env) +{ + axis2_svc_client_t *svc_client = NULL; + axutil_qname_t *op_qname = NULL; + axis2_svc_t *svc = NULL; + axis2_op_t *op = NULL; + + /*Modifying the Service */ + svc_client = axis2_stub_get_svc_client(stub, env); + svc = axis2_svc_client_get_svc(svc_client, env); + + /*creating the operations */ + + op_qname = axutil_qname_create(env, "add", "", NULL); + op = axis2_op_create_with_qname(env, op_qname); + axis2_op_set_msg_exchange_pattern(op, env, AXIS2_MEP_URI_OUT_IN); + axis2_svc_add_op(svc, env, op); + axutil_qname_free(op_qname, env); + + op_qname = axutil_qname_create(env, "sub", "", NULL); + op = axis2_op_create_with_qname(env, op_qname); + axis2_op_set_msg_exchange_pattern(op, env, AXIS2_MEP_URI_OUT_IN); + axis2_svc_add_op(svc, env, op); + axutil_qname_free(op_qname, env); + + op_qname = axutil_qname_create(env, "mul", "", NULL); + op = axis2_op_create_with_qname(env, op_qname); + axis2_op_set_msg_exchange_pattern(op, env, AXIS2_MEP_URI_OUT_IN); + axis2_svc_add_op(svc, env, op); + axutil_qname_free(op_qname, env); + + op_qname = axutil_qname_create(env, "div", "", NULL); + op = axis2_op_create_with_qname(env, op_qname); + axis2_op_set_msg_exchange_pattern(op, env, AXIS2_MEP_URI_OUT_IN); + axis2_svc_add_op(svc, env, op); + axutil_qname_free(op_qname, env); +} + +axis2_stub_t * +axis2_math_stub_create_with_endpoint_uri_and_client_home( + const axutil_env_t * env, + const axis2_char_t * endpoint_uri, + const axis2_char_t * client_home) +{ + axis2_stub_t *stub = NULL; + + AXIS2_ENV_CHECK(env, NULL); + + stub = (axis2_stub_t *) + axis2_stub_create_with_endpoint_uri_and_client_home(env, endpoint_uri, + client_home); + if (!stub) + { + AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE); + return NULL; + } + + axis2_populate_axis_service(stub, env); + + return stub; +} + +/***************************Function implementation****************************/ + +axiom_node_t * +axis2_math_stub_add( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node) +{ + axis2_svc_client_t *svc_client = NULL; + axiom_node_t *ret_node = NULL; + axutil_qname_t *op_qname = NULL; + + AXIS2_ENV_CHECK(env, AXIS2_FAILURE); + + svc_client = axis2_stub_get_svc_client(stub, env); + op_qname = axutil_qname_create(env, "add", "", NULL); + ret_node = + axis2_svc_client_send_receive_with_op_qname(svc_client, env, op_qname, + node); + axutil_qname_free(op_qname, env); + + return ret_node; +} + +axiom_node_t * +axis2_math_stub_sub( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node) +{ + axis2_svc_client_t *svc_client = NULL; + axiom_node_t *ret_node = NULL; + axutil_qname_t *op_qname = NULL; + + AXIS2_ENV_CHECK(env, AXIS2_FAILURE); + + svc_client = axis2_stub_get_svc_client(stub, env); + op_qname = axutil_qname_create(env, "sub", "", NULL); + ret_node = + axis2_svc_client_send_receive_with_op_qname(svc_client, env, op_qname, + node); + + return ret_node; +} + +axiom_node_t * +axis2_math_stub_mul( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node) +{ + axis2_svc_client_t *svc_client = NULL; + axiom_node_t *ret_node = NULL; + axutil_qname_t *op_qname = NULL; + + AXIS2_ENV_CHECK(env, AXIS2_FAILURE); + + svc_client = axis2_stub_get_svc_client(stub, env); + op_qname = axutil_qname_create(env, "mul", "", NULL); + ret_node = + axis2_svc_client_send_receive_with_op_qname(svc_client, env, op_qname, + node); + + return ret_node; +} + +axiom_node_t * +axis2_math_stub_div( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node) +{ + axis2_svc_client_t *svc_client = NULL; + axiom_node_t *ret_node = NULL; + axutil_qname_t *op_qname = NULL; + + AXIS2_ENV_CHECK(env, AXIS2_FAILURE); + + svc_client = axis2_stub_get_svc_client(stub, env); + op_qname = axutil_qname_create(env, "div", "", NULL); + ret_node = + axis2_svc_client_send_receive_with_op_qname(svc_client, env, op_qname, + node); + + return ret_node; +} diff --git a/samples/client/math/axis2_math_stub.h b/samples/client/math/axis2_math_stub.h new file mode 100644 index 0000000..20497b5 --- /dev/null +++ b/samples/client/math/axis2_math_stub.h @@ -0,0 +1,86 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +#ifndef AXIS2_ECHO_STUB_H +#define AXIS2_ECHO_STUB_H + +/** + * @file axis2_math_stub.h + * @brief axis2 math stub interface + */ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + + axiom_node_t *axis2_math_stub_add( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node); + + axiom_node_t *axis2_math_stub_sub( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node); + + axiom_node_t *axis2_math_stub_mul( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node); + + axiom_node_t *axis2_math_stub_div( + axis2_stub_t * stub, + const axutil_env_t * env, + axiom_node_t * node); + + /** + * populate services + */ + void axis2_populate_axis_service( + axis2_stub_t * stub, + const axutil_env_t * env); + + /** + * Creates axis2_stub struct + * @param endpoint reference + * @return pointer to newly created axis2_stub struct + */ + axis2_stub_t *axis2_math_stub_create_with_endpoint_ref_and_client_home( + const axutil_env_t * env, + axis2_endpoint_ref_t * endpoint_ref, + axis2_char_t * client_home); + + /** + * Creates axis2_stub struct + * @param endpoint uri + * @return pointer to newly created axis2_stub struct + */ + axis2_stub_t *axis2_math_stub_create_with_endpoint_uri_and_client_home( + const axutil_env_t * env, + const axis2_char_t * endpoint_uri, + const axis2_char_t * client_home); + + /** @} */ + +#ifdef __cplusplus +} +#endif +#endif /* AXIS2_ECHO_STUB_H */ diff --git a/samples/client/math/math.mk b/samples/client/math/math.mk new file mode 100644 index 0000000..c82a342 --- /dev/null +++ b/samples/client/math/math.mk @@ -0,0 +1,8 @@ +echo: + @cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "AXIS2_DECLARE_EXPORT" /D "_MBCS" *.C /I.\..\..\..\include /c + @link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axutil.lib axis2_engine.lib axis2_parser.lib /OUT:math.exe + + + + + diff --git a/samples/client/math/math_client.c b/samples/client/math/math_client.c new file mode 100644 index 0000000..5d783a7 --- /dev/null +++ b/samples/client/math/math_client.c @@ -0,0 +1,201 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 "axis2_math_stub.h" +#include +#include +#include +#include +#include + +axiom_node_t *build_om_programatically( + const axutil_env_t * env, + const axis2_char_t * operation, + const axis2_char_t * param1, + const axis2_char_t * param2); + +int +main( + int argc, + char **argv) +{ + axis2_stub_t *stub = NULL; + axiom_node_t *node = NULL; + axis2_status_t status = AXIS2_FAILURE; + const axutil_env_t *env = NULL; + const axis2_char_t *address = NULL; + const axis2_char_t *client_home = NULL; + axiom_node_t *ret_node = NULL; + + const axis2_char_t *operation = "add"; + const axis2_char_t *param1 = "40"; + const axis2_char_t *param2 = "8"; + + env = axutil_env_create_all("math_blocking.log", AXIS2_LOG_LEVEL_TRACE); + + client_home = AXIS2_GETENV("AXIS2C_HOME"); + if (!client_home || !strcmp(client_home, "")) + client_home = "../.."; + + address = "http://localhost:9090/axis2/services/math"; + if (argc > 1) + operation = argv[1]; + if (axutil_strcmp(operation, "-h") == 0) + { + printf("Usage : %s [operation] [param1] [param2] [endpoint_url]\n", + argv[0]); + printf("use -h for help\n"); + printf("default operation add\n"); + printf("default param1 %s\n", param1); + printf("default param2 %s\n", param2); + printf("default endpoint_url %s\n", address); + printf + ("NOTE: command line arguments must appear in given order, with trailing ones being optional\n"); + return 0; + } + if (argc > 2) + param1 = argv[2]; + if (argc > 3) + param2 = argv[3]; + if (argc > 4) + address = argv[4]; + + printf("Using endpoint : %s\n", address); + printf("\nInvoking operation %s with params %s and %s\n", operation, param1, + param2); + + node = build_om_programatically(env, operation, param1, param2); + stub = + axis2_math_stub_create_with_endpoint_uri_and_client_home(env, address, + client_home); + + /* create node and invoke math */ + if (stub) + { + ret_node = axis2_math_stub_add(stub, env, node); + } + + if (ret_node) + { + if (axiom_node_get_node_type(ret_node, env) == AXIOM_ELEMENT) + { + axis2_char_t *result = NULL; + axiom_element_t *result_ele = + (axiom_element_t *) axiom_node_get_data_element(ret_node, env); + + result = axiom_element_get_text(result_ele, env, ret_node); + printf("\nResult = %s\n", result); + } + else + { + axiom_xml_writer_t *writer = NULL; + axiom_output_t *om_output = NULL; + axis2_char_t *buffer = NULL; + writer = + axiom_xml_writer_create_for_memory(env, NULL, AXIS2_TRUE, 0, + AXIS2_XML_PARSER_TYPE_BUFFER); + om_output = axiom_output_create(env, writer); + + axiom_node_serialize(ret_node, env, om_output); + buffer = (axis2_char_t *) axiom_xml_writer_get_xml(writer, env); + printf("\nReceived invalid OM as result : %s\n", buffer); + if (buffer) + { + AXIS2_FREE(env->allocator, buffer); + buffer = NULL; + } + if (om_output) + { + axiom_output_free(om_output, env); + om_output = NULL; + } + axiom_xml_writer_free(writer, env); + } + } + 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("math stub invoke FAILED!\n"); + } + + if (stub) + { + axis2_stub_free(stub, env); + } + + if (env) + { + axutil_env_free((axutil_env_t *) env); + env = NULL; + } + + return status; +} + +axiom_node_t * +build_om_programatically( + const axutil_env_t * env, + const axis2_char_t * operation, + const axis2_char_t * param1, + const axis2_char_t * param2) +{ + axiom_node_t *math_om_node = NULL; + axiom_element_t *math_om_ele = NULL; + axiom_node_t *text_om_node = NULL; + axiom_element_t *text_om_ele = NULL; + axiom_namespace_t *ns1 = NULL; + + axiom_xml_writer_t *xml_writer = NULL; + axiom_output_t *om_output = NULL; + axis2_char_t *buffer = NULL; + + ns1 = + axiom_namespace_create(env, "http://ws.apache.org/axis2/services/math", + "ns1"); + + math_om_ele = + axiom_element_create(env, NULL, operation, ns1, &math_om_node); + + text_om_ele = + axiom_element_create(env, math_om_node, "param1", NULL, &text_om_node); + axiom_element_set_text(text_om_ele, env, param1, text_om_node); + + text_om_ele = + axiom_element_create(env, math_om_node, "param2", NULL, &text_om_node); + axiom_element_set_text(text_om_ele, env, param2, text_om_node); + + xml_writer = + axiom_xml_writer_create_for_memory(env, NULL, AXIS2_FALSE, AXIS2_FALSE, + AXIS2_XML_PARSER_TYPE_BUFFER); + om_output = axiom_output_create(env, xml_writer); + + axiom_node_serialize(math_om_node, env, om_output); + buffer = (axis2_char_t *) axiom_xml_writer_get_xml(xml_writer, env); + AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "\nSending OM node in XML : %s \n", + buffer); + if (om_output) + { + axiom_output_free(om_output, env); + om_output = NULL; + } + + return math_om_node; +} diff --git a/samples/client/math/services.xml b/samples/client/math/services.xml new file mode 100644 index 0000000..53c43e9 --- /dev/null +++ b/samples/client/math/services.xml @@ -0,0 +1,18 @@ + + math + + This is a testing service, named 'math' to test multiple operations in the same service + + + + + + + + + + + + + + -- cgit v1.1-32-gdbae