diff options
Diffstat (limited to 'samples/codegen/server')
| -rw-r--r-- | samples/codegen/server/calc_xml_inout/Makefile.am | 14 | ||||
| -rw-r--r-- | samples/codegen/server/calc_xml_inout/axis2_skel_Calculator.c | 135 | ||||
| -rw-r--r-- | samples/codegen/server/calc_xml_inout/readme | 12 | ||||
| -rw-r--r-- | samples/codegen/server/calculator/Makefile.am | 15 | ||||
| -rw-r--r-- | samples/codegen/server/calculator/axis2_skel_Calculator.c | 158 | ||||
| -rw-r--r-- | samples/codegen/server/calculator/readme | 12 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc1/Makefile.am | 23 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc1/axis2_skel_InteropTestPortTypeDocService.c | 274 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc1/readme | 10 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc2/Makefile.am | 16 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc2/axis2_skel_WSDLInteropTestDocLitService.c | 139 | ||||
| -rw-r--r-- | samples/codegen/server/interop_doc2/readme | 10 | 
12 files changed, 818 insertions, 0 deletions
diff --git a/samples/codegen/server/calc_xml_inout/Makefile.am b/samples/codegen/server/calc_xml_inout/Makefile.am new file mode 100644 index 0000000..145ef08 --- /dev/null +++ b/samples/codegen/server/calc_xml_inout/Makefile.am @@ -0,0 +1,14 @@ +prglibdir=$(prefix)/services/Calculator +samplesdir=$(prefix)/samples/server/Calculator +prglib_LTLIBRARIES = libCalculator.la +prglib_DATA= services.xml +EXTRA_DIST = services.xml +SUBDIRS = +libCalculator_la_SOURCES =  \ +	axis2_Calculator.c \ +	axis2_Calculator_svc_skeleton.c + +libCalculator_la_LIBADD  = +INCLUDES = -I$(AXIS2C_HOME)/include \ +			@UTILINC@ \ +			@AXIOMINC@ diff --git a/samples/codegen/server/calc_xml_inout/axis2_skel_Calculator.c b/samples/codegen/server/calc_xml_inout/axis2_skel_Calculator.c new file mode 100644 index 0000000..ceb6bbe --- /dev/null +++ b/samples/codegen/server/calc_xml_inout/axis2_skel_Calculator.c @@ -0,0 +1,135 @@ + +/* + * 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. + */ + +/** + * axis2_skel_Calculator.c + * + * This file was auto-generated from WSDL + * by the Apache Axis2/Java version: #axisVersion# #today# + * axis2_skel_Calculator Axis2/C skeleton for the axisService + */ + +#include "axis2_skel_Calculator.h" + +/** + * Auto generated function definition + + * @param param0 + +*/ +axiom_node_t * +axis2_skel_Calculator_add( +    const axutil_env_t * env, +    axiom_node_t * param0) +{ +    /* Todo fill this with the necessary business logic */ +    axiom_node_t *req = param0; +    axiom_node_t *node = NULL; +    axiom_element_t *ele = NULL; +    axis2_char_t *text = NULL; + +    axiom_node_t *op_node = NULL; +    axiom_element_t *op_ele = NULL; +    axiom_node_t *value_node = NULL; +    axiom_element_t *value_ele = NULL; +    axiom_namespace_t *ns1 = NULL; +    axis2_char_t *om_str = NULL; + +    char value_str[64]; + +    int result = 0; + +    int value1, +     value2; +    if (!req) +    { +        printf("response null\n"); +        return NULL; +    } +    else +    { +        node = axiom_node_get_first_child(req, env); +        ele = axiom_node_get_data_element(node, env); +        text = axiom_element_get_text(ele, env, node); +        value1 = atoi(text); + +        node = axiom_node_get_next_sibling(node, env); +        ele = axiom_node_get_data_element(node, env); +        text = axiom_element_get_text(ele, env, node); +        value2 = atoi(text); + +    } + +    result = value1 + value2; + +    ns1 = +        axiom_namespace_create(env, "http://localhost/axis/Calculator", "ns1"); +    op_ele = axiom_element_create(env, NULL, "addResponse", ns1, &op_node); + +    value_ele = axiom_element_create(env, op_node, "in1", NULL, &value_node); +    sprintf(value_str, "%d", result); +    axiom_element_set_text(value_ele, env, value_str, value_node); + +    return op_node; + +} + +/** + * Auto generated function definition + + * @param param2 + +*/ +axiom_node_t * +axis2_skel_Calculator_div( +    const axutil_env_t * env, +    axiom_node_t * param2) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + + * @param param4 + +*/ +axiom_node_t * +axis2_skel_Calculator_sub( +    const axutil_env_t * env, +    axiom_node_t * param4) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + + * @param param6 + +*/ +axiom_node_t * +axis2_skel_Calculator_mul( +    const axutil_env_t * env, +    axiom_node_t * param6) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} diff --git a/samples/codegen/server/calc_xml_inout/readme b/samples/codegen/server/calc_xml_inout/readme new file mode 100644 index 0000000..e4cecdf --- /dev/null +++ b/samples/codegen/server/calc_xml_inout/readme @@ -0,0 +1,12 @@ +This sample demonstrates the use of code generation using Axis2/Java WSDL2Java
 +tool (Axis2/Java source revision 414253).
 +
 +wsdl                 $AXIS2C_SRC_HOME/test/resources/wsdl/Calculator.wsdl
 +
 +Command to execute the code generation: 
 +
 +WSDL2C.sh -uri Calculator.wsdl -u -d none -ss
 +WSDL2C.bat -uri Calculator.wsdl -u -d none -ss
 +
 +Please check the instruction of $AXIS2C_SRC_HOME/tools/codegen/javatool/README.txt
 +on how to use the script
 diff --git a/samples/codegen/server/calculator/Makefile.am b/samples/codegen/server/calculator/Makefile.am new file mode 100644 index 0000000..308673c --- /dev/null +++ b/samples/codegen/server/calculator/Makefile.am @@ -0,0 +1,15 @@ +prglibdir=$(prefix)/services/Calculator +samplesdir=$(prefix)/samples/server/Calculator +prglib_LTLIBRARIES = libCalculator.la +prglib_DATA= services.xml +EXTRA_DIST = services.xml +SUBDIRS = +libCalculator_la_SOURCES =  \ +axis2_add.c            axis2_Calculator.c               axis2_divResponse16.c  axis2_mulResponse14.c  axis2_subResponse12.c \ +axis2_addRequest.c     axis2_Calculator_svc_skeleton.c  axis2_divResponse.c    axis2_mulResponse.c    axis2_subResponse.c \ +axis2_addResponse20.c  axis2_div.c                      axis2_mul.c            axis2_sub.c \ +axis2_addResponse.c    axis2_divRequest.c               axis2_mulRequest.c     axis2_subRequest.c  +libCalculator_la_LIBADD  = +INCLUDES = -I$(AXIS2C_HOME)/include \ +			@UTILINC@ \ +			@AXIOMINC@ diff --git a/samples/codegen/server/calculator/axis2_skel_Calculator.c b/samples/codegen/server/calculator/axis2_skel_Calculator.c new file mode 100644 index 0000000..70d6da4 --- /dev/null +++ b/samples/codegen/server/calculator/axis2_skel_Calculator.c @@ -0,0 +1,158 @@ + + +    /** +     * axis2_skel_Calculator.c +     * +     * This file was auto-generated from WSDL for "Calculator|http://localhost/axis/Calculator" service +     * by the Apache Axis2/C version: #axisVersion# #today# +     * axis2_skel_Calculator Axis2/C skeleton for the axisService +     */ + +     #include "axis2_skel_Calculator.h" + +      + +		  +        /** +         * auto generated function definition signature +         * for "div|http://localhost/axis/Calculator" operation. +          +         * @param div +         */ +         +        adb_divResponse_t* axis2_skel_Calculator_div (const axutil_env_t *env, +                                                          adb_div_t *_div1) +        { +             +             +            adb_divResponse_t *_divresponse2; +            int int_2; +             +            int int_0; +            int int_1; +             +            /* Extract the request */ +             +            int_0 = adb_div_get_in0(_div1, env); +            printf("Returned int: %d\n", int_0); +            int_1 = adb_div_get_in1(_div1, env); +            printf("Returned int: %d\n", int_1); +         +            /* Build the response adb */ +             +            _divresponse2 = adb_divResponse_create(env); +            int_2 = int_0 / int_1; +            adb_divResponse_set_divReturn(_divresponse2, env, int_2); +             +            return _divresponse2; +        } +      + +		  +        /** +         * auto generated function definition signature +         * for "mul|http://localhost/axis/Calculator" operation. +          +         * @param mul +         */ +         +        adb_mulResponse_t* axis2_skel_Calculator_mul (const axutil_env_t *env, +                                                          adb_mul_t *_mul1) +        { +             +             +            adb_mulResponse_t *_mulresponse2; +            int int_5; +             +            int int_3; +            int int_4; +             +            /* Extract the request */ +             +            int_3 = adb_mul_get_in0(_mul1, env); +            printf("Returned int: %d\n", int_3); +            int_4 = adb_mul_get_in1(_mul1, env); +            printf("Returned int: %d\n", int_4); +         +            /* Build the response adb */ +             +            _mulresponse2 = adb_mulResponse_create(env); +            int_5 = int_3 * int_4; +            adb_mulResponse_set_mulReturn(_mulresponse2, env, int_5); +             +            return _mulresponse2; +        } +      + +		  +        /** +         * auto generated function definition signature +         * for "add|http://localhost/axis/Calculator" operation. +          +         * @param add +         */ +         +        adb_addResponse_t* axis2_skel_Calculator_add (const axutil_env_t *env, +                                                          adb_add_t *_add1) +        { +             +             +            adb_addResponse_t *_addresponse2; +            int int_8; +             +            int int_6; +            int int_7; +             +            /* Extract the request */ +             +            int_6 = adb_add_get_in0(_add1, env); +            printf("Returned int: %d\n", int_6); +            int_7 = adb_add_get_in1(_add1, env); +            printf("Returned int: %d\n", int_7); +         +            /* Build the response adb */ +             +            _addresponse2 = adb_addResponse_create(env); +            int_8 = int_6 + int_7; +            adb_addResponse_set_addReturn(_addresponse2, env, int_8); +             +            return _addresponse2; +        } +      + +		  +        /** +         * auto generated function definition signature +         * for "sub|http://localhost/axis/Calculator" operation. +          +         * @param sub +         */ +         +        adb_subResponse_t* axis2_skel_Calculator_sub (const axutil_env_t *env, +                                                          adb_sub_t *_sub1) +        { +             +             +            adb_subResponse_t *_subresponse2; +            int int_11; +             +            int int_9; +            int int_10; +             +            /* Extract the request */ +             +            int_9 = adb_sub_get_in0(_sub1, env); +            printf("Returned int: %d\n", int_9); +            int_10 = adb_sub_get_in1(_sub1, env); +            printf("Returned int: %d\n", int_10); +         +            /* Build the response adb */ +             +            _subresponse2 = adb_subResponse_create(env); +            int_11 = int_9 - int_10; +            adb_subResponse_set_subReturn(_subresponse2, env, int_11); +             +            return _subresponse2; +        } +      + diff --git a/samples/codegen/server/calculator/readme b/samples/codegen/server/calculator/readme new file mode 100644 index 0000000..49b34bc --- /dev/null +++ b/samples/codegen/server/calculator/readme @@ -0,0 +1,12 @@ +This sample demonstrates the use of code generation using Axis2/Java WSDL2Java
 +tool (Axis2/Java source revision 414253).
 +
 +wsdl                 $AXIS2C_SRC_HOME/test/resources/wsdl/Calculator.wsdl
 +
 +Command to execute the code generation: 
 +
 +WSDL2C.sh -uri Calculator.wsdl -u -d adb -ss
 +WSDL2C.bat -uri Calculator.wsdl -u -d adb -ss
 +
 +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/server/interop_doc1/Makefile.am b/samples/codegen/server/interop_doc1/Makefile.am new file mode 100644 index 0000000..1abe530 --- /dev/null +++ b/samples/codegen/server/interop_doc1/Makefile.am @@ -0,0 +1,23 @@ +prglibdir=$(prefix)/services/interop_doc1 +samplesdir=$(prefix)/samples/server/interop_doc1 +prglib_LTLIBRARIES = libInteropTestPortTypeDocService.la +prglib_DATA= services.xml +EXTRA_DIST = services.xml +SUBDIRS = +libInteropTestPortTypeDocService_la_SOURCES =  \ +axis2_echoBase64.c              axis2_echoFloatResponse.c         axis2_echoStructArray.c \ +axis2_echoBase64Response.c      axis2_echoHexBinary.c             axis2_echoStructArrayResponse.c \ +axis2_echoBoolean.c             axis2_echoHexBinaryResponse.c     axis2_echoStruct.c \ +axis2_echoBooleanResponse.c     axis2_echoIntegerArray.c          axis2_echoStructResponse.c \ +axis2_echoDate.c                axis2_echoIntegerArrayResponse.c  axis2_echoVoid.c \ +axis2_echoDateResponse.c        axis2_echoInteger.c               axis2_echoVoidResponse.c \ +axis2_echoDecimal.c             axis2_echoIntegerResponse.c       axis2_InteropTestPortTypeDocService.c \ +axis2_echoDecimalResponse.c     axis2_echoStringArray.c           axis2_InteropTestPortTypeDocService_svc_skeleton.c \ +axis2_echoFloatArray.c          axis2_echoStringArrayResponse.c   axis2_SOAPStruct.c \ +axis2_echoFloatArrayResponse.c  axis2_echoString.c \ +axis2_echoFloat.c               axis2_echoStringResponse.c + +libInteropTestPortTypeDocService_la_LIBADD  = +INCLUDES = -I$(AXIS2C_HOME)/include \ +			@UTILINC@ \ +			@AXIOMINC@ diff --git a/samples/codegen/server/interop_doc1/axis2_skel_InteropTestPortTypeDocService.c b/samples/codegen/server/interop_doc1/axis2_skel_InteropTestPortTypeDocService.c new file mode 100644 index 0000000..6b31079 --- /dev/null +++ b/samples/codegen/server/interop_doc1/axis2_skel_InteropTestPortTypeDocService.c @@ -0,0 +1,274 @@ + +/* + * 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. + */ + +/** + * axis2_skel_InteropTestPortTypeDocService.c + * + * This file was auto-generated from WSDL + * by the Apache Axis2/Java version: #axisVersion# #today# + * axis2_skel_InteropTestPortTypeDocService Axis2/C skeleton for the axisService + */ + +#include "axis2_skel_InteropTestPortTypeDocService.h" + +/** + * Auto generated function definition + +  * @param param0 + + */ +adb_echoFloatResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoFloat( +    const axutil_env_t * env, +    adb_echoFloat_t * param0) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param2 + + */ +adb_echoVoidResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoVoid( +    const axutil_env_t * env, +    adb_echoVoid_t * param2) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param4 + + */ +adb_echoDateResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoDate( +    const axutil_env_t * env, +    adb_echoDate_t * param4) +{ +    /* Todo fill this with the necessary business logic */ +    adb_echoDate_t *echo_in = param4; +    adb_echoDateResponse_t *echo_out = NULL; + +    axutil_date_time_t *echo_date = NULL; +    axis2_char_t *recieved_date_str = NULL; + +    echo_date = adb_echoDate_get_arg_0_10(echo_in, env); + +    recieved_date_str = axutil_date_time_serialize_date_time(echo_date, env); +    printf("echoing date %s\n", recieved_date_str); + +    echo_out = adb_echoDateResponse_create(env); +    adb_echoDateResponse_set_echodatereturn(echo_out, env, echo_date); + +    return echo_out; +} + +/** + * Auto generated function definition + +  * @param param6 + + */ +adb_echoDecimalResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoDecimal( +    const axutil_env_t * env, +    adb_echoDecimal_t * param6) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param8 + + */ +adb_echoStringResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoString( +    const axutil_env_t * env, +    adb_echoString_t * param8) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param10 + + */ +adb_echoBase64Response_t * +axis2_skel_InteropTestPortTypeDocService_echoBase64( +    const axutil_env_t * env, +    adb_echoBase64_t * param10) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param12 + + */ +adb_echoFloatArrayResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoFloatArray( +    const axutil_env_t * env, +    adb_echoFloatArray_t * param12) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param14 + + */ +adb_echoIntegerArrayResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoIntegerArray( +    const axutil_env_t * env, +    adb_echoIntegerArray_t * param14) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param16 + + */ +adb_echoHexBinaryResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoHexBinary( +    const axutil_env_t * env, +    adb_echoHexBinary_t * param16) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param18 + + */ +adb_echoIntegerResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoInteger( +    const axutil_env_t * env, +    adb_echoInteger_t * param18) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param20 + + */ +adb_echoBooleanResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoBoolean( +    const axutil_env_t * env, +    adb_echoBoolean_t * param20) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param22 + + */ +adb_echoStringArrayResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoStringArray( +    const axutil_env_t * env, +    adb_echoStringArray_t * param22) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param24 + + */ +adb_echoStructArrayResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoStructArray( +    const axutil_env_t * env, +    adb_echoStructArray_t * param24) +{ +    /* Todo fill this with the necessary business logic */ +    adb_echoStructArray_t *echo_in = param24; +    adb_echoStructArrayResponse_t *echo_out = NULL; + +    adb_SOAPStruct_t *echo_struct = NULL; +    int arr_size = 0; + +    int i = 0; + +    arr_size = adb_echoStructArray_sizeof_arg_0_7(echo_in, env); +    echo_out = adb_echoStructArrayResponse_create(env); +    for (i = 0; i < arr_size; i++) +    { +        echo_struct = +            adb_echoStructArray_get_arg_0_7_at(echo_in, env, i); +        printf("echoing 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)); + +        adb_echoStructArrayresponse_add_echoStructArrayreturn +                    (echo_out, env, echo_struct); +    } +    return echo_out; + +} + +/** + * Auto generated function definition + +  * @param param26 + + */ +adb_echoStructResponse_t * +axis2_skel_InteropTestPortTypeDocService_echoStruct( +    const axutil_env_t * env, +    adb_echoStruct_t * param26) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} diff --git a/samples/codegen/server/interop_doc1/readme b/samples/codegen/server/interop_doc1/readme new file mode 100644 index 0000000..f7c262e --- /dev/null +++ b/samples/codegen/server/interop_doc1/readme @@ -0,0 +1,10 @@ +This sample demonstrates the use of code generation using Axis2/Java WSDL2Java +tool (Axis2/Java source revision 414253). + +wsdl                 $AXIS2C_SRC_HOME/test/resources/wsdl/InteropTestRound1Doc.wsdl + +Command to execute the code generation:  +WSDL2C.sh -uri Calculator.wsdl -u -d adb -ss +WSDL2C.bat -uri Calculator.wsdl -u -d adb -ss + +Please check the instruction of $AXIS2C_SRC_HOME/c/tools/codegen/javatool/README.txt diff --git a/samples/codegen/server/interop_doc2/Makefile.am b/samples/codegen/server/interop_doc2/Makefile.am new file mode 100644 index 0000000..7b46d88 --- /dev/null +++ b/samples/codegen/server/interop_doc2/Makefile.am @@ -0,0 +1,16 @@ +prglibdir=$(prefix)/services/interop_doc2 +samplesdir=$(prefix)/samples/server/interop_doc2 +prglib_LTLIBRARIES = libWSDLInteropTestDocLitService.la +prglib_DATA= services.xml +EXTRA_DIST = services.xml +SUBDIRS = +libWSDLInteropTestDocLitService_la_SOURCES =  \ +axis2_ArrayOfstring_literal.c    axis2_echoStringResponse.c  axis2_echoVoidResponse.c \ +axis2_echoStringArray.c          axis2_echoStruct.c          axis2_SOAPStruct.c \ +axis2_echoStringArrayResponse.c  axis2_echoStructResponse.c  axis2_WSDLInteropTestDocLitService.c \ +axis2_echoString.c               axis2_echoVoid.c            axis2_WSDLInteropTestDocLitService_svc_skeleton.c + +libWSDLInteropTestDocLitService_la_LIBADD  = +INCLUDES = -I$(AXIS2C_HOME)/include \ +			@UTILINC@ \ +			@AXIOMINC@ diff --git a/samples/codegen/server/interop_doc2/axis2_skel_WSDLInteropTestDocLitService.c b/samples/codegen/server/interop_doc2/axis2_skel_WSDLInteropTestDocLitService.c new file mode 100644 index 0000000..f6b818a --- /dev/null +++ b/samples/codegen/server/interop_doc2/axis2_skel_WSDLInteropTestDocLitService.c @@ -0,0 +1,139 @@ + +/* + * 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. + */ + +/** + * axis2_WSDLInteropTestDocLitService.c + * + * This file was auto-generated from WSDL + * by the Apache Axis2/Java version: #axisVersion# #today# + * axis2_WSDLInteropTestDocLitService Axis2/C skeleton for the axisService + */ + +#include "axis2_WSDLInteropTestDocLitService.h" + +/** + * Auto generated function definition + +  * @param param0 + + */ +axis2_echoVoidResponse_t * +axis2_WSDLInteropTestDocLitService_echoVoid( +    const axutil_env_t * env, +    axis2_echoVoid_t * param0) +{ +    /* Todo fill this with the necessary business logic */ +    return NULL; +} + +/** + * Auto generated function definition + +  * @param param2 + + */ +axis2_echoStringArrayResponse_t * +axis2_WSDLInteropTestDocLitService_echoStringArray( +    const axutil_env_t * env, +    axis2_echoStringArray_t * param2) +{ +    /* Todo fill this with the necessary business logic */ +    axis2_echoStringArray_t *echo_in = param2; +    axis2_echoStringArrayResponse_t *echo_out = NULL; +    axis2_ArrayOfstring_literal_t *array_in = NULL; +    axis2_ArrayOfstring_literal_t *array_out = NULL; +    char **string_array = NULL; +    int string_array_length = 0; + +    array_in = AXIS2_ECHOSTRINGARRAY_GET_PARAM0(echo_in, env); +    string_array = AXIS2_ARRAYOFSTRING_LITERAL_GET_STRING(array_in, env, +                                                          &string_array_length); + +    array_out = axis2_ArrayOfstring_literal_create(env); +    AXIS2_ARRAYOFSTRING_LITERAL_SET_STRING(array_out, env, +                                           string_array, string_array_length); +    echo_out = axis2_echoStringArrayResponse_create(env); + +    AXIS2_ECHOSTRINGARRAYRESPONSE_SET_RETURN(echo_out, env, array_out); + +    return echo_out; + +} + +/** + * Auto generated function definition + +  * @param param4 + + */ +axis2_echoStructResponse_t * +axis2_WSDLInteropTestDocLitService_echoStruct( +    const axutil_env_t * env, +    axis2_echoStruct_t * param4) +{ +    /* Todo fill this with the necessary business logic */ +    axis2_echoStruct_t *echo_in = param4; +    axis2_echoStructResponse_t *echo_out = NULL; +    axis2_SOAPStruct_t *struct_in = NULL; +    axis2_SOAPStruct_t *struct_out = NULL; + +    float float_val = 0; +    int int_val = 0; +    char *string_val = NULL; + +    struct_in = AXIS2_ECHOSTRUCT_GET_PARAM0(echo_in, env); + +    float_val = AXIS2_SOAPSTRUCT_GET_VARFLOAT(struct_in, env); +    int_val = AXIS2_SOAPSTRUCT_GET_VARINT(struct_in, env); +    string_val = AXIS2_SOAPSTRUCT_GET_VARSTRING(struct_in, env); + +    struct_out = axis2_SOAPStruct_create(env); +    AXIS2_SOAPSTRUCT_SET_VARFLOAT(struct_out, env, float_val); +    AXIS2_SOAPSTRUCT_SET_VARINT(struct_out, env, int_val); +    AXIS2_SOAPSTRUCT_SET_VARSTRING(struct_out, env, string_val); + +    echo_out = axis2_echoStructResponse_create(env); +    AXIS2_ECHOSTRUCTRESPONSE_SET_RETURN(echo_out, env, struct_out); + +    return echo_out; +} + +/** + * Auto generated function definition + +  * @param param6 + + */ +axis2_echoStringResponse_t * +axis2_WSDLInteropTestDocLitService_echoString( +    const axutil_env_t * env, +    axis2_echoString_t * param6) +{ +    /* Todo fill this with the necessary business logic */ +    axis2_echoString_t *echo_in = param6; +    axis2_echoStringResponse_t *echo_out = NULL; + +    char *echo_string = NULL; + +    echo_string = AXIS2_ECHOSTRING_GET_PARAM0(echo_in, env); + +    echo_out = axis2_echoStringResponse_create(env); +    AXIS2_ECHOSTRUCTRESPONSE_SET_RETURN(echo_out, env, echo_string); + +    return echo_out; +} diff --git a/samples/codegen/server/interop_doc2/readme b/samples/codegen/server/interop_doc2/readme new file mode 100644 index 0000000..51f3c59 --- /dev/null +++ b/samples/codegen/server/interop_doc2/readme @@ -0,0 +1,10 @@ +This sample demonstrates the use of code generation using Axis2/Java WSDL2Java +tool (Axis2/Java source revision 414253). + +wsdl                 $AXIS2C_HOME/test/resources/wsdl/interoptestdoclitparameters.wsdl + +Command to execute the code generation:  +WSDL2C.sh -uri Calculator.wsdl -u -d adb -ss +WSDL2C.bat -uri Calculator.wsdl -u -d adb -ss + +Please check the instruction of $AXIS2C_SRC_HOME/c/tools/codegen/javatool/README.txt  | 
