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/codegen/client/interop_doc1/Makefile.am | 56 +++++++++++++ samples/codegen/client/interop_doc1/readme | 13 +++ .../codegen/client/interop_doc1/test_echo_date.c | 77 ++++++++++++++++++ .../client/interop_doc1/test_echo_struct_array.c | 93 ++++++++++++++++++++++ 4 files changed, 239 insertions(+) create mode 100644 samples/codegen/client/interop_doc1/Makefile.am create mode 100644 samples/codegen/client/interop_doc1/readme create mode 100644 samples/codegen/client/interop_doc1/test_echo_date.c create mode 100644 samples/codegen/client/interop_doc1/test_echo_struct_array.c (limited to 'samples/codegen/client/interop_doc1') diff --git a/samples/codegen/client/interop_doc1/Makefile.am b/samples/codegen/client/interop_doc1/Makefile.am new file mode 100644 index 0000000..ff7ecb8 --- /dev/null +++ b/samples/codegen/client/interop_doc1/Makefile.am @@ -0,0 +1,56 @@ +prgbindir=$(prefix)/bin/samples +samplesdir=$(prefix)/samples/client/InteropTestPortTypeDocService +prgbin_PROGRAMS = test_echo_date test_echo_struct_array +test_echo_date_SOURCES = \ +axis2_echoBase64.c axis2_echoFloat.c axis2_echoString.c \ +axis2_echoBase64Response.c axis2_echoFloatResponse.c axis2_echoStringResponse.c \ +axis2_echoBoolean.c axis2_echoHexBinary.c axis2_echoStructArray.c \ +axis2_echoBooleanResponse.c axis2_echoHexBinaryResponse.c axis2_echoStructArrayResponse.c \ +axis2_echoDate.c axis2_echoIntegerArray.c axis2_echoStruct.c \ +axis2_echoDateResponse.c axis2_echoIntegerArrayResponse.c axis2_echoStructResponse.c \ +axis2_echoDecimal.c axis2_echoInteger.c axis2_echoVoid.c \ +axis2_echoDecimalResponse.c axis2_echoIntegerResponse.c axis2_echoVoidResponse.c \ +axis2_echoFloatArray.c axis2_echoStringArray.c axis2_InteropTestPortTypeDocService_stub.c \ +axis2_echoFloatArrayResponse.c axis2_echoStringArrayResponse.c axis2_SOAPStruct.c \ +test_echo_date.c + +test_echo_date_LDADD = \ + -L$(AXIS2C_HOME)/lib \ + -laxutil \ + -laxis2_axiom \ + -laxis2_wsdl \ + -laxis2_engine \ + -laxis2_parser \ + -lpthread \ + -laxis2_http_sender \ + -laxis2_http_receiver \ + $(GUTHTHILA_LIBS) + +test_echo_struct_array_SOURCES = \ +axis2_echoBase64.c axis2_echoFloat.c axis2_echoString.c \ +axis2_echoBase64Response.c axis2_echoFloatResponse.c axis2_echoStringResponse.c \ +axis2_echoBoolean.c axis2_echoHexBinary.c axis2_echoStructArray.c \ +axis2_echoBooleanResponse.c axis2_echoHexBinaryResponse.c axis2_echoStructArrayResponse.c \ +axis2_echoDate.c axis2_echoIntegerArray.c axis2_echoStruct.c \ +axis2_echoDateResponse.c axis2_echoIntegerArrayResponse.c axis2_echoStructResponse.c \ +axis2_echoDecimal.c axis2_echoInteger.c axis2_echoVoid.c \ +axis2_echoDecimalResponse.c axis2_echoIntegerResponse.c axis2_echoVoidResponse.c \ +axis2_echoFloatArray.c axis2_echoStringArray.c axis2_InteropTestPortTypeDocService_stub.c \ +axis2_echoFloatArrayResponse.c axis2_echoStringArrayResponse.c axis2_SOAPStruct.c \ +test_echo_struct_array.c + +test_echo_struct_array_LDADD = \ + -L$(AXIS2C_HOME)/lib \ + -laxutil \ + -laxis2_axiom \ + -laxis2_wsdl \ + -laxis2_engine \ + -laxis2_parser \ + -lpthread \ + -laxis2_http_sender \ + -laxis2_http_receiver \ + $(GUTHTHILA_LIBS) + +INCLUDES = -I$(AXIS2C_HOME)/include \ + @UTILINC@ \ + @AXIOMINC@ diff --git a/samples/codegen/client/interop_doc1/readme b/samples/codegen/client/interop_doc1/readme new file mode 100644 index 0000000..dc4ed1f --- /dev/null +++ b/samples/codegen/client/interop_doc1/readme @@ -0,0 +1,13 @@ +This sample demonstrates the use of code generation using Axis2/Java WSDL2Java +tool (Axis2/Java source revision 414253). + +sample sources test_echo_date.c test_echo_struct_array.c +wsdl $AXIS2C_SRC_HOME/test/resources/wsdl/InteropTestRound1Doc.wsdl + +Command to execute the code generation: +WSDL2C.sh -uri InteropTestRound1Doc.wsdl -u -d adb +WSDL2C.bat -uri InteropTestRound1Doc.wsdl -u -d adb + +Please check the instruction of $AXIS2C_SRC_HOME/c/tools/codegen/javatool/README.txt +on how to use the script + diff --git a/samples/codegen/client/interop_doc1/test_echo_date.c b/samples/codegen/client/interop_doc1/test_echo_date.c new file mode 100644 index 0000000..b66c33d --- /dev/null +++ b/samples/codegen/client/interop_doc1/test_echo_date.c @@ -0,0 +1,77 @@ + +/* + * 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_stub_InteropTestPortTypeDocService.h" + +int +main( + int argc, + char **argv) +{ + axutil_env_t *env = NULL; + axis2_char_t *client_home = NULL; + + axis2_char_t *endpoint_uri = NULL; + + axis2_stub_t *stub = NULL; + + /* variables use databinding */ + adb_echoDate_t *echo_in = NULL; + adb_echoDateResponse_t *echo_out = NULL; + + axutil_date_time_t *echo_date = NULL; + axutil_date_time_t *return_echo_date = NULL; + + axis2_char_t *send_date_str = NULL; + axis2_char_t *return_date_str = NULL; + + endpoint_uri = "http://localhost:9090/axis2/services/interop_doc1"; + + env = axutil_env_create_all("codegen_utest_blocking.log", + AXIS2_LOG_LEVEL_TRACE); + + /* Set up deploy folder. */ + client_home = AXIS2_GETENV("AXIS2C_HOME"); + if (!client_home) + client_home = "../../../deploy"; + + stub = axis2_stub_create_InteropTestPortTypeDocService(env, + client_home, + endpoint_uri); + + /* create the struct */ + echo_date = axutil_date_time_create(env); /* default to current date */ + send_date_str = axutil_date_time_serialize_date_time(echo_date, env); + printf("sending date %s\n", send_date_str); + + /* create the input params using databinding */ + echo_in = adb_echoDate_create(env); + adb_echoDate_set_arg_0_10(echo_in, env, echo_date); + + /* invoke the web service method */ + echo_out = axis2_stub_op_InteropTestPortTypeDocService_echoDate(stub, env, echo_in); + + /* return the output params using databinding */ + return_echo_date = adb_echoDateResponse_get_echoDateReturn(echo_out, env); + + return_date_str = + axutil_date_time_serialize_date_time(return_echo_date, env); + printf("returned date %s\n", return_date_str); + + return 0; +} diff --git a/samples/codegen/client/interop_doc1/test_echo_struct_array.c b/samples/codegen/client/interop_doc1/test_echo_struct_array.c new file mode 100644 index 0000000..19a3a9a --- /dev/null +++ b/samples/codegen/client/interop_doc1/test_echo_struct_array.c @@ -0,0 +1,93 @@ + +/* + * 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_stub_InteropTestPortTypeDocService.h" + +int +main( + int argc, + char **argv) +{ + axutil_env_t *env = NULL; + axis2_char_t *client_home = NULL; + axis2_char_t *endpoint_uri = NULL; + axis2_stub_t *stub = NULL; + + /* variables use databinding */ + adb_echoStructArray_t *echo_in = NULL; + adb_echoStructArrayResponse_t *echo_out = NULL; + + adb_SOAPStruct_t *echo_struct = NULL; + int arr_size = 0; + int ret_arr_size = 0; + + int i = 0; /* for for loop */ + + endpoint_uri = "http://localhost:9090/axis2/services/interop_doc1"; + + env = axutil_env_create_all("codegen_utest_blocking.log", + AXIS2_LOG_LEVEL_TRACE); + + /* Set up deploy folder. */ + client_home = AXIS2_GETENV("AXIS2C_HOME"); + if (!client_home) + client_home = "../../../deploy"; + + stub = axis2_stub_create_InteropTestPortTypeDocService(env, + client_home, + endpoint_uri); + + /* create the struct */ + echo_in = adb_echoStructArray_create(env); + + /* create the struct array */ + echo_struct = adb_SOAPStruct_create(env); + adb_SOAPStruct_set_varString(echo_struct, env, "sturct0"); + adb_SOAPStruct_set_varInt(echo_struct, env, 0); + adb_SOAPStruct_set_varFloat(echo_struct, env, 0); + + adb_echoStructArray_add_arg_0_7(echo_in, env, echo_struct); + + echo_struct = adb_SOAPStruct_create(env); + adb_SOAPStruct_set_varString(echo_struct, env, "sturct1"); + adb_SOAPStruct_set_varInt(echo_struct, env, 10); + adb_SOAPStruct_set_varFloat(echo_struct, env, 100); + + adb_echoStructArray_add_arg_0_7(echo_in, env, echo_struct); + + echo_struct = adb_SOAPStruct_create(env); + adb_SOAPStruct_set_varString(echo_struct, env, "sturct2"); + adb_SOAPStruct_set_varInt(echo_struct, env, 20); + adb_SOAPStruct_set_varFloat(echo_struct, env, 200); + + adb_echoStructArray_add_arg_0_7(echo_in, env, echo_struct); + + /* invoke the web service method */ + echo_out = axis2_stub_op_InteropTestPortTypeDocService_echoStruct(stub, env, echo_in); + + ret_arr_size = adb_echoStructArrayResponse_sizeof_echoStructArrayReturn(echo_out, env); + for (i = 0; i < ret_arr_size; i++) + { + echo_struct = adb_echoStructArrayResponse_get_echoStructArrayReturn(echo_out, env); + printf("recieved turn %d \n string %s\n int %d\n float %f\n\n", i, + adb_SOAPStruct_get_varString(echo_struct, env), + adb_SOAPStruct_get_varInt(echo_struct, env), + adb_SOAPStruct_get_varFloat(echo_struct, env)); + } + return 0; +} -- cgit v1.1-32-gdbae