summaryrefslogtreecommitdiffstats
path: root/test/itest
diff options
context:
space:
mode:
authorGravatar gmcdonald2010-02-13 01:32:03 +0000
committerGravatar gmcdonald2010-02-13 01:32:03 +0000
commit0425aadc78680e53000fd0108b540d6eca048516 (patch)
tree8ec7ab8e015d454c5ec586dfc91e05a2dce1cfc0 /test/itest
downloadaxis2c-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 'test/itest')
-rw-r--r--test/itest/Makefile.am1
-rw-r--r--test/itest/whitemesa/Makefile.am2
-rw-r--r--test/itest/whitemesa/round1/Makefile.am16
-rw-r--r--test/itest/whitemesa/round1/README.txt2
-rw-r--r--test/itest/whitemesa/round1/input6
-rw-r--r--test/itest/whitemesa/round1/round1_client.c258
-rw-r--r--test/itest/whitemesa/round1/run.sh1
-rw-r--r--test/itest/whitemesa/round1/todo19
-rw-r--r--test/itest/whitemesa/round2/Makefile.am15
-rw-r--r--test/itest/whitemesa/round2/README.txt8
-rw-r--r--test/itest/whitemesa/round2/input6
-rw-r--r--test/itest/whitemesa/round2/readme1
-rw-r--r--test/itest/whitemesa/round2/round2_client.c251
-rw-r--r--test/itest/whitemesa/round2/run.sh1
-rw-r--r--test/itest/whitemesa/round2/todo8
15 files changed, 595 insertions, 0 deletions
diff --git a/test/itest/Makefile.am b/test/itest/Makefile.am
new file mode 100644
index 0000000..150a20f
--- /dev/null
+++ b/test/itest/Makefile.am
@@ -0,0 +1 @@
+SUBDIRS =
diff --git a/test/itest/whitemesa/Makefile.am b/test/itest/whitemesa/Makefile.am
new file mode 100644
index 0000000..69a9094
--- /dev/null
+++ b/test/itest/whitemesa/Makefile.am
@@ -0,0 +1,2 @@
+TESTS =
+SUBDIRS = round1 round2
diff --git a/test/itest/whitemesa/round1/Makefile.am b/test/itest/whitemesa/round1/Makefile.am
new file mode 100644
index 0000000..2aef2ac
--- /dev/null
+++ b/test/itest/whitemesa/round1/Makefile.am
@@ -0,0 +1,16 @@
+noinst_PROGRAMS = round1
+round1_SOURCES = round1_client.c
+
+round1_LDADD = $(LDFLAGS) \
+ ../../../../util/src/libaxutil.la \
+ ../../../../axiom/src/om/libaxis2_axiom.la \
+ ../../../../axiom/src/parser/$(WRAPPER_DIR)/libaxis2_parser.la \
+ $(top_builddir)/src/core/engine/libaxis2_engine.la \
+ $(top_builddir)//src/core/transport/http/sender/libaxis2_http_sender.la \
+ $(top_builddir)/src/core/transport/http/receiver/libaxis2_http_receiver.la \
+ $(top_builddir)/src/core/transport/http/common/libaxis2_http_common.la
+
+INCLUDES = -I$(top_builddir)/include \
+ -I ../../../../util/include \
+ -I ../../../../axiom/include
+
diff --git a/test/itest/whitemesa/round1/README.txt b/test/itest/whitemesa/round1/README.txt
new file mode 100644
index 0000000..821ebcb
--- /dev/null
+++ b/test/itest/whitemesa/round1/README.txt
@@ -0,0 +1,2 @@
+Execute run.sh
+service endpoint = http://www.mssoapinterop.org/asmx/simple.asmx
diff --git a/test/itest/whitemesa/round1/input b/test/itest/whitemesa/round1/input
new file mode 100644
index 0000000..13fdde9
--- /dev/null
+++ b/test/itest/whitemesa/round1/input
@@ -0,0 +1,6 @@
+String Hello string
+Float 2.4 float
+HexBinary 6A hexBinary
+Decimal 2.4 decimal
+Integer 5 int
+Date 2005-06-30T12:00:00.0000000-07:00 dateTime
diff --git a/test/itest/whitemesa/round1/round1_client.c b/test/itest/whitemesa/round1/round1_client.c
new file mode 100644
index 0000000..f298327
--- /dev/null
+++ b/test/itest/whitemesa/round1/round1_client.c
@@ -0,0 +1,258 @@
+
+/*
+ * 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 <stdio.h>
+#include <axiom.h>
+#include <axis2_util.h>
+#include <axiom_soap.h>
+#include <axis2_client.h>
+#include <string.h>
+
+axiom_node_t *build_soap_body_content(
+ const axutil_env_t * env,
+ const axis2_char_t * echo_operation,
+ const axis2_char_t * echo_type,
+ const axis2_char_t * word_to_echo);
+
+int
+main(
+ int argc,
+ char **argv)
+{
+ 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;
+ axiom_element_t *ret_ele = NULL;
+ axis2_char_t *om_str = NULL;
+ axis2_char_t *result = NULL;
+
+ const axis2_char_t *echo_operation = NULL;
+ const axis2_char_t *word_to_echo = NULL;
+ const axis2_char_t *echo_type = NULL;
+ axis2_char_t operation[32];
+ axis2_char_t echo_response_buff[32];
+
+ echo_operation = "String";
+ word_to_echo = "helloworld";
+ echo_type = "string";
+
+ if ((argc > 1) && (axutil_strcmp("-h", argv[1]) == 0))
+ {
+ printf("\nUsage : %s [echo_operation] [echo_value] [XSD_type]\n",
+ argv[0]);
+ printf("use -h for help\n");
+ return 0;
+ }
+
+ if (argc > 1)
+ echo_operation = argv[1];
+ if (argc > 2)
+ word_to_echo = argv[2];
+ if (argc > 3)
+ echo_type = argv[3];
+
+ /* address = "http://localhost:7070/cgi-bin/interopserver"; */
+ address = "http://easysoap.sourceforge.net/cgi-bin/interopserver";
+
+ sprintf(operation, "echo%s", echo_operation);
+
+ printf("Using endpoint : %s\n", address);
+ printf("Invoking %s with param %s\n", operation, word_to_echo);
+
+ /* Set up the environment */
+ env = axutil_env_create_all("echo.log", AXIS2_LOG_LEVEL_TRACE);
+
+ /* Create EPR with given address */
+
+ endpoint_ref = axis2_endpoint_ref_create(env, address);
+ options = axis2_options_create(env);
+ axis2_options_set_to(options, env, endpoint_ref);
+
+ /* this itest requried soap 1.1 message */
+ axis2_options_set_soap_version(options, env, AXIOM_SOAP11);
+ client_home = AXIS2_GETENV("AXIS2C_HOME");
+ if (!client_home)
+ client_home = "../../deploy";
+
+ /* Create service client */
+ 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,
+ axutil_error_get_message(env->error));
+ }
+
+ /* Set service client options */
+ axis2_svc_client_set_options(svc_client, env, options);
+
+ payload = build_soap_body_content(env, echo_operation,
+ echo_type, word_to_echo);
+ /* Send request */
+ ret_node = axis2_svc_client_send_receive(svc_client, env, payload);
+
+ if (ret_node)
+ {
+ om_str = AXIOM_NODE_TO_STRING(ret_node, env);
+ if (om_str)
+ printf("\nRecieving OM : %s\n", om_str);
+ if (AXIOM_NODE_GET_NODE_TYPE(ret_node, env) == AXIOM_ELEMENT)
+ {
+
+ sprintf(echo_response_buff, "echo%sResponse", echo_operation);
+ ret_ele =
+ (axiom_element_t *) AXIOM_NODE_GET_DATA_ELEMENT(ret_node, env);
+ if (axutil_strcmp
+ (axiom_element_get_localname(ret_ele, env),
+ echo_response_buff) != 0)
+ {
+ printf("%s != %s\n", axiom_element_get_localname(ret_ele, env),
+ echo_response_buff);
+ printf("\nFAIL\n\n");
+ return AXIS2_FAILURE;
+ }
+
+ ret_node = AXIOM_NODE_GET_FIRST_CHILD(ret_node, env);
+ ret_ele =
+ (axiom_element_t *) AXIOM_NODE_GET_DATA_ELEMENT(ret_node, env);
+ result = axiom_element_get_text(ret_ele, env, ret_node);
+ if (!strcmp(word_to_echo, result))
+ {
+ printf("\nSUCCESS\n\n");
+ }
+ else
+ {
+ printf("\nFAIL\n\n");
+ }
+
+ }
+ else
+ {
+ printf("\nFAIL\n\n");
+ return AXIS2_FAILURE;
+ }
+ }
+ else
+ {
+ AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
+ "Stub invoke FAILED: Error code:" " %d :: %s",
+ env->error->error_number,
+ axutil_error_get_message(env->error));
+ printf("round1 stub invoke FAILED!\n");
+ return AXIS2_FAILURE;
+ }
+
+ return AXIS2_SUCCESS;
+}
+
+axiom_node_t *
+build_soap_body_content(
+ const axutil_env_t * env,
+ const axis2_char_t * echo_operation,
+ const axis2_char_t * echo_type,
+ const axis2_char_t * word_to_echo)
+{
+
+ axiom_node_t *operation_om_node = NULL;
+ axiom_element_t *operation_om_ele = NULL;
+
+ axiom_node_t *text_om_node = NULL;
+ axiom_element_t *text_om_ele = NULL;
+
+ axiom_attribute_t *attri1 = NULL;
+ axiom_namespace_t *ns0 = NULL,
+ *ns1 = NULL,
+ *ns2 = NULL,
+ *ns3 = NULL,
+ *ns4 = NULL,
+ *ns5 = NULL;
+ axis2_char_t *om_str = NULL;
+
+ axis2_char_t echo_operation_buff[32];
+ axis2_char_t input_type_buff[32];
+ axis2_char_t xsd_type_buff[32];
+
+ /*generating the requried parameters */
+ sprintf(echo_operation_buff, "echo%s", echo_operation);
+ sprintf(input_type_buff, "input%s", echo_operation);
+ sprintf(xsd_type_buff, "xsd:%s", echo_type);
+
+ ns0 =
+ axiom_namespace_create(env,
+ "http://schemas.xmlsoap.org/soap/envelope/",
+ "soapenv");
+ ns1 =
+ axiom_namespace_create(env,
+ "http://www.w3.org/2001/XMLSchema-instance",
+ "xsi");
+ ns2 =
+ axiom_namespace_create(env, "http://www.w3.org/2001/XMLSchema", "xsd");
+ ns3 =
+ axiom_namespace_create(env,
+ "http://schemas.xmlsoap.org/soap/encoding/",
+ "soapenc");
+ ns4 = axiom_namespace_create(env, "http://soapinterop.org/", "tns");
+ ns5 =
+ axiom_namespace_create(env, "http://soapinterop.org/encodedTypes",
+ "types");
+
+ operation_om_ele = axiom_element_create(env, NULL, echo_operation_buff,
+ ns4, &operation_om_node);
+
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns0);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns1);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns2);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns3);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns4);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns5);
+
+ attri1 =
+ axiom_attribute_create(env, "encodingStyle",
+ "http://schemas.xmlsoap.org/soap/encoding/",
+ ns0);
+
+ operation_om_ele = AXIOM_NODE_GET_DATA_ELEMENT(operation_om_node, env);
+ axiom_element_add_attribute(operation_om_ele, env, attri1,
+ operation_om_node);
+
+ text_om_ele =
+ axiom_element_create(env, operation_om_node, input_type_buff, NULL,
+ &text_om_node);
+ attri1 = axiom_attribute_create(env, "type", xsd_type_buff, ns1);
+ axiom_element_add_attribute(text_om_ele, env, attri1, text_om_node);
+ axiom_element_set_text(text_om_ele, env, word_to_echo, text_om_node);
+
+ om_str = AXIOM_NODE_TO_STRING(operation_om_node, env);
+ if (om_str)
+ printf("\nSending OM : %s\n", om_str);
+
+ return operation_om_node;
+}
diff --git a/test/itest/whitemesa/round1/run.sh b/test/itest/whitemesa/round1/run.sh
new file mode 100644
index 0000000..433815a
--- /dev/null
+++ b/test/itest/whitemesa/round1/run.sh
@@ -0,0 +1 @@
+while read x; do ./round1 $x; done < input
diff --git a/test/itest/whitemesa/round1/todo b/test/itest/whitemesa/round1/todo
new file mode 100644
index 0000000..b5c9f6b
--- /dev/null
+++ b/test/itest/whitemesa/round1/todo
@@ -0,0 +1,19 @@
+# echoBase64
+
+# echoBoolean
+
+# echoDecimal
+
+# echoFloatArray
+
+# echoHexBinary
+
+# echoIntegerArray
+
+# echoStringArray
+
+# echoStruct
+
+# echoStructArray
+
+# echoVoid
diff --git a/test/itest/whitemesa/round2/Makefile.am b/test/itest/whitemesa/round2/Makefile.am
new file mode 100644
index 0000000..a1ec399
--- /dev/null
+++ b/test/itest/whitemesa/round2/Makefile.am
@@ -0,0 +1,15 @@
+noinst_PROGRAMS = round2
+round2_SOURCES = round2_client.c
+
+round2_LDADD = $(LDFLAGS) \
+ ../../../../util/src/libaxutil.la \
+ ../../../../axiom/src/om/libaxis2_axiom.la \
+ ../../../../axiom/src/parser/$(WRAPPER_DIR)/libaxis2_parser.la \
+ $(top_builddir)/modules/core/engine/libaxis2_engine.la \
+ $(top_builddir)/modules/core/transport/http/sender/libaxis2_http_sender.la \
+ $(top_builddir)/modules/core/transport/http/receiver/libaxis2_http_receiver.la
+
+INCLUDES = -I$(top_builddir)/include \
+ -I ../../../../util/include \
+ -I ../../../../axiom/include
+
diff --git a/test/itest/whitemesa/round2/README.txt b/test/itest/whitemesa/round2/README.txt
new file mode 100644
index 0000000..f11b48a
--- /dev/null
+++ b/test/itest/whitemesa/round2/README.txt
@@ -0,0 +1,8 @@
+In order to run this sample, you need to get a Google license key.
+Please visit http://www.google.com/apis/ for details on how to get a license key.
+
+Use the '-h' option with the sample to get help on command line options.
+e.g.
+./google -h
+
+Samisa...
diff --git a/test/itest/whitemesa/round2/input b/test/itest/whitemesa/round2/input
new file mode 100644
index 0000000..ce75f3b
--- /dev/null
+++ b/test/itest/whitemesa/round2/input
@@ -0,0 +1,6 @@
+String Hello
+Integer 3
+Float 2.4
+Decimal 2.4
+Boolean true
+Date 2005-06-30T12:00:00.0000000-07:00
diff --git a/test/itest/whitemesa/round2/readme b/test/itest/whitemesa/round2/readme
new file mode 100644
index 0000000..09ee054
--- /dev/null
+++ b/test/itest/whitemesa/round2/readme
@@ -0,0 +1 @@
+www.whitemesa.net/interop
diff --git a/test/itest/whitemesa/round2/round2_client.c b/test/itest/whitemesa/round2/round2_client.c
new file mode 100644
index 0000000..a384ea8
--- /dev/null
+++ b/test/itest/whitemesa/round2/round2_client.c
@@ -0,0 +1,251 @@
+
+/*
+ * 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 <stdio.h>
+#include <axiom.h>
+#include <axis2_util.h>
+#include <axiom_soap.h>
+#include <axis2_client.h>
+#include <string.h>
+
+axiom_node_t *build_soap_body_content(
+ const axutil_env_t * env,
+ const axis2_char_t * echo_operation,
+ const axis2_char_t * echo_type,
+ const axis2_char_t * word_to_echo);
+
+int
+main(
+ int argc,
+ char **argv)
+{
+ 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;
+ axiom_element_t *ret_ele = NULL;
+ axis2_char_t *om_str = NULL;
+ axis2_char_t *result = NULL;
+
+ const axis2_char_t *echo_operation = NULL;
+ const axis2_char_t *word_to_echo = NULL;
+ const axis2_char_t *echo_type = NULL;
+ axis2_char_t operation[32];
+ axis2_char_t echo_response_buff[32];
+
+ echo_operation = "String";
+ word_to_echo = "helloworld";
+ echo_type = "string";
+
+ if ((argc > 1) && (axutil_strcmp("-h", argv[1]) == 0))
+ {
+ printf("\nUsage : %s [echo_operation] [echo_value] [XSD_type]\n",
+ argv[0]);
+ printf("use -h for help\n");
+ return 0;
+ }
+
+ if (argc > 1)
+ echo_operation = argv[1];
+ if (argc > 2)
+ word_to_echo = argv[2];
+ if (argc > 3)
+ echo_type = argv[3];
+
+ /* address = "http://localhost:7070/asmx/simple.asmx"; */
+ address = "http://www.mssoapinterop.org/asmx/simple.asmx";
+
+ sprintf(operation, "echo%s", echo_operation);
+
+ printf("Using endpoint : %s\n", address);
+ printf("Invoking %s with param %s\n", operation, word_to_echo);
+
+ /* Set up the environment */
+ env = axutil_env_create_all("echo.log", AXIS2_LOG_LEVEL_TRACE);
+
+ /* Create EPR with given address */
+
+ endpoint_ref = axis2_endpoint_ref_create(env, address);
+ options = axis2_options_create(env);
+ axis2_options_set_to(options, env, endpoint_ref);
+
+ /* this itest requried soap 1.1 message */
+ axis2_options_set_soap_version(options, env, AXIOM_SOAP11);
+ client_home = AXIS2_GETENV("AXIS2C_HOME");
+ if (!client_home)
+ client_home = "../../deploy";
+
+ /* Create service client */
+ 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,
+ axutil_error_get_message(env->error));
+ }
+
+ /* Set service client options */
+ axis2_svc_client_set_options(svc_client, env, options);
+
+ payload = build_soap_body_content(env, echo_operation,
+ echo_type, word_to_echo);
+ /* Send request */
+ ret_node = axis2_svc_client_send_receive(svc_client, env, payload);
+
+ if (ret_node)
+ {
+ om_str = AXIOM_NODE_TO_STRING(ret_node, env);
+ if (om_str)
+ printf("\nRecieving OM : %s\n", om_str);
+ if (AXIOM_NODE_GET_NODE_TYPE(ret_node, env) == AXIOM_ELEMENT)
+ {
+
+ sprintf(echo_response_buff, "echo%sResponse", echo_operation);
+ ret_ele =
+ (axiom_element_t *) AXIOM_NODE_GET_DATA_ELEMENT(ret_node, env);
+ if (axutil_strcmp
+ (axiom_element_get_localname(ret_ele, env),
+ echo_response_buff) != 0)
+ {
+ printf("%s != %s\n", axiom_element_get_localname(ret_ele, env),
+ echo_response_buff);
+ printf("\nFAIL\n\n");
+ return AXIS2_FAILURE;
+ }
+
+ ret_node = AXIOM_NODE_GET_FIRST_CHILD(ret_node, env);
+ ret_ele =
+ (axiom_element_t *) AXIOM_NODE_GET_DATA_ELEMENT(ret_node, env);
+ result = axiom_element_get_text(ret_ele, env, ret_node);
+ if (!strcmp(word_to_echo, result))
+ {
+ printf("\nSUCCESS\n\n");
+ }
+ else
+ {
+ printf("\nFAIL\n\n");
+ }
+
+ }
+ else
+ {
+ printf("\nFAIL\n\n");
+ return AXIS2_FAILURE;
+ }
+ }
+ else
+ {
+ AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
+ "Stub invoke FAILED: Error code:" " %d :: %s",
+ env->error->error_number,
+ axutil_error_get_message(env->error));
+ printf("round1 stub invoke FAILED!\n");
+ return AXIS2_FAILURE;
+ }
+
+ return AXIS2_SUCCESS;
+}
+
+axiom_node_t *
+build_soap_body_content(
+ const axutil_env_t * env,
+ const axis2_char_t * echo_operation,
+ const axis2_char_t * echo_type,
+ const axis2_char_t * word_to_echo)
+{
+
+ axiom_node_t *operation_om_node = NULL;
+ axiom_element_t *operation_om_ele = NULL;
+
+ axiom_node_t *text_om_node = NULL;
+ axiom_element_t *text_om_ele = NULL;
+
+ axiom_attribute_t *attri1 = NULL;
+ axiom_namespace_t *ns0 = NULL,
+ *ns1 = NULL,
+ *ns2 = NULL,
+ *ns3 = NULL,
+ *ns4 = NULL,
+ *ns5 = NULL;
+ axis2_char_t *om_str = NULL;
+
+ axis2_char_t echo_operation_buff[32];
+ axis2_char_t input_type_buff[32];
+
+ /*generating the requried parameters */
+ sprintf(echo_operation_buff, "echo%s", echo_operation);
+ sprintf(input_type_buff, "input%s", echo_operation);
+
+ ns0 = axiom_namespace_create(env,
+ "http://schemas.xmlsoap.org/soap/envelope/",
+ "soapenv");
+ ns1 =
+ axiom_namespace_create(env, "http://www.w3.org/2001/XMLSchema-instance",
+ "xsi");
+ ns2 =
+ axiom_namespace_create(env, "http://www.w3.org/2001/XMLSchema", "xsd");
+ ns3 =
+ axiom_namespace_create(env, "http://schemas.xmlsoap.org/soap/encoding/",
+ "soapenc");
+ ns4 = axiom_namespace_create(env, "http://soapinterop.org/", "tns");
+ ns5 = axiom_namespace_create(env,
+ "http://soapinterop.org/encodedTypes",
+ "types");
+
+ operation_om_ele = axiom_element_create(env, NULL, echo_operation_buff,
+ ns4, &operation_om_node);
+
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns0);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns1);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns2);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns3);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns4);
+ axiom_element_declare_namespace(operation_om_ele, env,
+ operation_om_node, ns5);
+
+ attri1 =
+ axiom_attribute_create(env, "encodingStyle",
+ "http://schemas.xmlsoap.org/soap/encoding/",
+ ns0);
+
+ operation_om_ele = AXIOM_NODE_GET_DATA_ELEMENT(operation_om_node, env);
+ AXIOM_ELEMENT_ADD_ATTRIBUTE(operation_om_ele, env, attri1,
+ operation_om_node);
+
+ text_om_ele =
+ axiom_element_create(env, operation_om_node, input_type_buff, NULL,
+ &text_om_node);
+ axiom_element_set_text(text_om_ele, env, word_to_echo, text_om_node);
+
+ om_str = AXIOM_NODE_TO_STRING(operation_om_node, env);
+ if (om_str)
+ printf("\nSending OM : %s\n", om_str);
+
+ return operation_om_node;
+}
diff --git a/test/itest/whitemesa/round2/run.sh b/test/itest/whitemesa/round2/run.sh
new file mode 100644
index 0000000..43cef29
--- /dev/null
+++ b/test/itest/whitemesa/round2/run.sh
@@ -0,0 +1 @@
+while read x; do ./round2 $x; done < input
diff --git a/test/itest/whitemesa/round2/todo b/test/itest/whitemesa/round2/todo
new file mode 100644
index 0000000..84a0aed
--- /dev/null
+++ b/test/itest/whitemesa/round2/todo
@@ -0,0 +1,8 @@
+* echoStringArray
+* echoIntegerArray
+* echoFloatArray
+* echoStruct
+* echoStructArray
+* echoVoid
+* echoBase64
+* echoHexBinary