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/calc_xml_inout/Makefile.am  |  24 ++++
 samples/codegen/client/calc_xml_inout/readme       |  12 ++
 .../client/calc_xml_inout/test_calculator.c        | 125 +++++++++++++++++++++
 3 files changed, 161 insertions(+)
 create mode 100644 samples/codegen/client/calc_xml_inout/Makefile.am
 create mode 100644 samples/codegen/client/calc_xml_inout/readme
 create mode 100644 samples/codegen/client/calc_xml_inout/test_calculator.c

(limited to 'samples/codegen/client/calc_xml_inout')

diff --git a/samples/codegen/client/calc_xml_inout/Makefile.am b/samples/codegen/client/calc_xml_inout/Makefile.am
new file mode 100644
index 0000000..aa3981c
--- /dev/null
+++ b/samples/codegen/client/calc_xml_inout/Makefile.am
@@ -0,0 +1,24 @@
+prgbindir=$(prefix)/bin/samples
+prgbin_PROGRAMS = Calculator
+samplesdir=$(prefix)/samples/client/Calculator
+
+Calculator_SOURCES = \
+      test_Calcultor.c \
+      axis2_Calculator_stub.c
+
+
+Calculator_LDADD   = $(LDFLAGS) \
+                    -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/calc_xml_inout/readme b/samples/codegen/client/calc_xml_inout/readme
new file mode 100644
index 0000000..905d49a
--- /dev/null
+++ b/samples/codegen/client/calc_xml_inout/readme
@@ -0,0 +1,12 @@
+This sample demostrates the use of code generation using Axis2/Java WSDL2Java
+tool (Axis2/Java source revision 414253).
+
+sample source        test_calcultor.c
+wsdl                 $AXIS2C_SRC_HOME/test/resources/wsdl/Calculator.wsdl
+
+Command to execute the code generation: 
+WSDL2C.sh -uri <wsdl> -l  c -d none
+WSDL2C.bat -uri <wsdl> -l  c -d none
+
+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/calc_xml_inout/test_calculator.c b/samples/codegen/client/calc_xml_inout/test_calculator.c
new file mode 100644
index 0000000..572e809
--- /dev/null
+++ b/samples/codegen/client/calc_xml_inout/test_calculator.c
@@ -0,0 +1,125 @@
+
+/*
+ * 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_Calculator.h"
+
+axiom_node_t *generate_request_xml(
+    const axutil_env_t * env);
+void handle_respone_xml(
+    const axutil_env_t * env,
+    axiom_node_t * res);
+
+int
+main(
+    int argc,
+    char **argv)
+{
+    axutil_env_t *env = NULL;
+    axis2_char_t *operation = NULL;
+    axis2_char_t *client_home = NULL;
+
+    axis2_char_t *endpoint_uri = NULL;
+
+    axis2_stub_t *stub = NULL;
+
+    axiom_node_t *req = NULL;
+    axiom_node_t *res = NULL;
+
+    endpoint_uri = "http://localhost:9090/axis2/services/Calculator";
+
+    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_Calculator(env, client_home, endpoint_uri);
+
+    req = generate_request_xml(env);
+
+    /* invoke the web service method */
+    res = axis2_stub_op_Calculator_add(stub, env, req);
+
+    handle_respone_xml(env, res);
+
+    return 0;
+}
+
+axiom_node_t *
+generate_request_xml(
+    const axutil_env_t * env)
+{
+    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;
+
+    int value1 = 13;
+    int value2 = 7;
+    char value_str[64];
+
+    ns1 =
+        axiom_namespace_create(env, "http://localhost/axis/Calculator", "ns1");
+    op_ele = axiom_element_create(env, NULL, "add", ns1, &op_node);
+
+    value_ele = axiom_element_create(env, op_node, "in1", NULL, &value_node);
+    sprintf(value_str, "%d", value1);
+    axiom_element_set_text(value_ele, env, value_str, value_node);
+
+    value_ele = axiom_element_create(env, op_node, "in2", NULL, &value_node);
+    sprintf(value_str, "%d", value1);
+    axiom_element_set_text(value_ele, env, value_str, value_node);
+
+    printf("requesting %d  + %d \n", value1, value2);
+    om_str = axiom_node_to_string(op_node, env);
+    if (om_str)
+        printf("\nSending OM : %s\n", om_str);
+
+    return op_node;
+
+}
+
+void
+handle_respone_xml(
+    const axutil_env_t * env,
+    axiom_node_t * res)
+{
+    axiom_node_t *node = NULL;
+    axiom_element_t *ele = NULL;
+    axis2_char_t *text = NULL;
+
+    if (!res)
+    {
+        printf("response null\n");
+        return;
+    }
+    node = axiom_node_get_first_child(res, env);
+    if (node)
+    {
+        ele = axiom_node_get_data_element(node, env);
+        text = axiom_element_get_text(ele, env, node);
+
+        printf("answer = %s\n", text);
+    }
+
+}
-- 
cgit v1.1-32-gdbae