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 --- xdocs/docs/hello/client/hello.c | 154 ++++++++++++++++++++ xdocs/docs/hello/client/hello.c.html | 147 +++++++++++++++++++ xdocs/docs/hello/service/hello/services.xml | 7 + xdocs/docs/hello/service/hello_svc.c | 211 ++++++++++++++++++++++++++++ xdocs/docs/hello/service/hello_svc.c.html | 198 ++++++++++++++++++++++++++ 5 files changed, 717 insertions(+) create mode 100644 xdocs/docs/hello/client/hello.c create mode 100644 xdocs/docs/hello/client/hello.c.html create mode 100644 xdocs/docs/hello/service/hello/services.xml create mode 100644 xdocs/docs/hello/service/hello_svc.c create mode 100644 xdocs/docs/hello/service/hello_svc.c.html (limited to 'xdocs/docs/hello') diff --git a/xdocs/docs/hello/client/hello.c b/xdocs/docs/hello/client/hello.c new file mode 100644 index 0000000..1cd6760 --- /dev/null +++ b/xdocs/docs/hello/client/hello.c @@ -0,0 +1,154 @@ + +/* + * Copyright 2004,2005 The Apache Software Foundation. + * + * Licensed 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 +#include +#include +#include +#include + +axiom_node_t *build_om_request( + const axutil_env_t * env); + +const axis2_char_t *process_om_response( + const axutil_env_t * env, + axiom_node_t * node); + +int +main( + int argc, + char **argv) +{ + const 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; + + env = axutil_env_create_all("hello_client.log", AXIS2_LOG_LEVEL_TRACE); + + options = axis2_options_create(env); + + address = "http://localhost:9090/axis2/services/hello"; + if (argc > 1) + address = argv[1]; + if (axutil_strcmp(address, "-h") == 0) + { + printf("Usage : %s [endpoint_url]\n", argv[0]); + printf("use -h for help\n"); + return 0; + } + printf("Using endpoint : %s\n", address); + endpoint_ref = axis2_endpoint_ref_create(env, address); + axis2_options_set_to(options, env, endpoint_ref); + + client_home = AXIS2_GETENV("AXIS2C_HOME"); + if (!client_home || !strcmp(client_home, "")) + client_home = "../.."; + + 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, + AXIS2_ERROR_GET_MESSAGE(env->error)); + return -1; + } + + axis2_svc_client_set_options(svc_client, env, options); + + payload = build_om_request(env); + + ret_node = axis2_svc_client_send_receive(svc_client, env, payload); + + if (ret_node) + { + const axis2_char_t *greeting = process_om_response(env, ret_node); + if (greeting) + printf("\nReceived greeting: \"%s\" from service\n", greeting); + + axiom_node_free_tree(ret_node, env); + ret_node = NULL; + } + 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("hello client invoke FAILED!\n"); + } + + if (svc_client) + { + axis2_svc_client_free(svc_client, env); + svc_client = NULL; + } + + if (env) + { + axutil_env_free((axutil_env_t *) env); + env = NULL; + } + + return 0; +} + +axiom_node_t * +build_om_request( + const axutil_env_t * env) +{ + axiom_node_t *greet_om_node = NULL; + axiom_element_t *greet_om_ele = NULL; + + greet_om_ele = + axiom_element_create(env, NULL, "greet", NULL, &greet_om_node); + axiom_element_set_text(greet_om_ele, env, "Hello Server!", greet_om_node); + + return greet_om_node; +} + +const axis2_char_t * +process_om_response( + const axutil_env_t * env, + axiom_node_t * node) +{ + axiom_node_t *service_greeting_node = NULL; + axiom_node_t *return_node = NULL; + + if (node) + { + service_greeting_node = axiom_node_get_first_child(node, env); + if (service_greeting_node && + axiom_node_get_node_type(service_greeting_node, env) == AXIOM_TEXT) + { + axiom_text_t *greeting = + (axiom_text_t *) + axiom_node_get_data_element(service_greeting_node, env); + if (greeting && axiom_text_get_value(greeting, env)) + { + return axiom_text_get_value(greeting, env); + } + } + } + return NULL; +} diff --git a/xdocs/docs/hello/client/hello.c.html b/xdocs/docs/hello/client/hello.c.html new file mode 100644 index 0000000..505adc4 --- /dev/null +++ b/xdocs/docs/hello/client/hello.c.html @@ -0,0 +1,147 @@ + +Apache Axis2/C - hello.c
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed 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>
+
+axiom_node_t *
+build_om_request(const axutil_env_t *env);
+
+const axis2_char_t *
+process_om_response(const axutil_env_t *env,
+        axiom_node_t *node);
+
+int main(int argcchar** argv)
+{
+    const axutil_env_t *env = NULL;
+    const axis2_char_t *address = NULL;
+    axis2_endpoint_ref_tendpoint_ref = NULL;
+    axis2_options_t *options = NULL;
+    const axis2_char_t *client_home = NULL;
+    axis2_svc_client_tsvc_client = NULL;
+    axiom_node_t *payload = NULL;
+    axiom_node_t *ret_node = NULL;
+
+    env = axutil_env_create_all("hello_client.log"AXIS2_LOG_LEVEL_TRACE);
+
+    options = axis2_options_create(env);
+
+    address = "http://localhost:9090/axis2/services/hello";
+    if (argc > 1)
+        address = argv[1];
+    if (axutil_strcmp(address"-h") == 0)
+    {
+        printf("Usage : %s [endpoint_url]\n"argv[0]);
+        printf("use -h for help\n");
+        return 0;
+    }
+    printf("Using endpoint : %s\n"address);
+    endpoint_ref = axis2_endpoint_ref_create(envaddress);
+    axis2_options_set_to(optionsenvendpoint_ref);
+
+    client_home = AXIS2_GETENV("AXIS2C_HOME");
+    if (!client_home || !strcmp(client_home""))
+        client_home = "../..";
+
+    svc_client = axis2_svc_client_create(envclient_home);
+    if (!svc_client)
+    {
+        printf("Error creating service client\n");
+        AXIS2_LOG_ERROR(env->logAXIS2_LOG_SI"Stub invoke FAILED: Error code:"
+                " %d :: %s"env->error->error_number,
+                AXIS2_ERROR_GET_MESSAGE(env->error));
+        return -1;
+    }
+
+    axis2_svc_client_set_options(svc_clientenvoptions);
+
+    payload = build_om_request(env);
+
+    ret_node = axis2_svc_client_send_receive(svc_clientenvpayload);
+
+    if (ret_node)
+    {
+        const axis2_char_t *greeting = process_om_response(envret_node);
+        if (greeting)
+            printf("\nReceived greeting: \"%s\" from service\n"greeting);
+
+        axiom_node_free_tree(ret_nodeenv);
+        ret_node = NULL;
+    }
+    else
+    {
+        AXIS2_LOG_ERROR(env->logAXIS2_LOG_SI"Stub invoke FAILED: Error code:"
+                " %d :: %s"env->error->error_number,
+                AXIS2_ERROR_GET_MESSAGE(env->error));
+        printf("hello client invoke FAILED!\n");
+    }
+
+    if (svc_client)
+    {
+        axis2_svc_client_free(svc_clientenv);
+        svc_client = NULL;
+    }
+
+    if (env)
+    {
+        axutil_env_free((axutil_env_t *) env);
+        env = NULL;
+    }
+
+    return 0;
+}
+
+axiom_node_t *
+build_om_request(const axutil_env_t *env)
+{
+    axiom_node_tgreet_om_node = NULL;
+    axiom_element_t * greet_om_ele = NULL;
+
+    greet_om_ele = axiom_element_create(envNULL"greet"NULL, &greet_om_node);
+    axiom_element_set_text(greet_om_eleenv"Hello Server!"greet_om_node);
+
+    return greet_om_node;
+}
+
+const axis2_char_t *
+process_om_response(const axutil_env_t *env,
+        axiom_node_t *node)
+{
+    axiom_node_t *service_greeting_node = NULL;
+    axiom_node_t *return_node = NULL;
+
+    if (node)
+    {
+        service_greeting_node = axiom_node_get_first_child(nodeenv);
+        if (service_greeting_node &&
+                axiom_node_get_node_type(service_greeting_nodeenv) == AXIOM_TEXT)
+        {
+            axiom_text_t *greeting = (axiom_text_t *)axiom_node_get_data_element(service_greeting_nodeenv);
+            if (greeting && axiom_text_get_value(greeting , env))
+            {
+                return axiom_text_get_value(greetingenv);
+            }
+        }
+    }
+    return NULL;
+}
+
+

\ No newline at end of file diff --git a/xdocs/docs/hello/service/hello/services.xml b/xdocs/docs/hello/service/hello/services.xml new file mode 100644 index 0000000..22f97c5 --- /dev/null +++ b/xdocs/docs/hello/service/hello/services.xml @@ -0,0 +1,7 @@ + + hello + + Quick start guide hello service sample. + + + diff --git a/xdocs/docs/hello/service/hello_svc.c b/xdocs/docs/hello/service/hello_svc.c new file mode 100644 index 0000000..8d7de77 --- /dev/null +++ b/xdocs/docs/hello/service/hello_svc.c @@ -0,0 +1,211 @@ + +/* + * Copyright 2004,2005 The Apache Software Foundation. + * + * Licensed 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 +#include +#include +#include +#include +#include +#include +#include + +axiom_node_t *axis2_hello_greet( + const axutil_env_t * env, + axiom_node_t * node); + +int AXIS2_CALL hello_free( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env); + +axiom_node_t *AXIS2_CALL hello_invoke( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t * msg_ctx); + +int AXIS2_CALL hello_init( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env); + +axiom_node_t *AXIS2_CALL hello_on_fault( + axis2_svc_skeleton_t * svc_skeli, + const axutil_env_t * env, + axiom_node_t * node); + +axiom_node_t *build_greeting_response( + const axutil_env_t * env, + axis2_char_t * greeting); + +axiom_node_t * +axis2_hello_greet( + const axutil_env_t * env, + axiom_node_t * node) +{ + axiom_node_t *client_greeting_node = NULL; + axiom_node_t *return_node = NULL; + + AXIS2_ENV_CHECK(env, NULL); + + if (node) + { + client_greeting_node = axiom_node_get_first_child(node, env); + if (client_greeting_node && + axiom_node_get_node_type(client_greeting_node, env) == AXIOM_TEXT) + { + axiom_text_t *greeting = + (axiom_text_t *) + axiom_node_get_data_element(client_greeting_node, env); + if (greeting && axiom_text_get_value(greeting, env)) + { + const axis2_char_t *greeting_str = + axiom_text_get_value(greeting, env); + printf("Client greeted saying \"%s\" \n", greeting_str); + return_node = build_greeting_response(env, "Hello Client!"); + } + } + } + else + { + AXIS2_ERROR_SET(env->error, + AXIS2_ERROR_SVC_SKEL_INVALID_XML_FORMAT_IN_REQUEST, + AXIS2_FAILURE); + printf("ERROR: invalid XML in request\n"); + return_node = build_greeting_response(env, "Client! Who are you?"); + } + + return return_node; +} + +axiom_node_t * +build_greeting_response( + const axutil_env_t * env, + axis2_char_t * greeting) +{ + axiom_node_t *greeting_om_node = NULL; + axiom_element_t *greeting_om_ele = NULL; + + greeting_om_ele = + axiom_element_create(env, NULL, "greetResponse", NULL, + &greeting_om_node); + + axiom_element_set_text(greeting_om_ele, env, greeting, greeting_om_node); + + return greeting_om_node; +} + +static const axis2_svc_skeleton_ops_t hello_svc_skeleton_ops_var = { + hello_init, + hello_invoke, + hello_on_fault, + hello_free +}; + +axis2_svc_skeleton_t * +axis2_hello_create( + const axutil_env_t * env) +{ + axis2_svc_skeleton_t *svc_skeleton = NULL; + svc_skeleton = AXIS2_MALLOC(env->allocator, sizeof(axis2_svc_skeleton_t)); + + svc_skeleton->ops = &hello_svc_skeleton_ops_var; + + svc_skeleton->func_array = NULL; + + return svc_skeleton; +} + +int AXIS2_CALL +hello_init( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env) +{ + svc_skeleton->func_array = axutil_array_list_create(env, 0); + axutil_array_list_add(svc_skeleton->func_array, env, "helloString"); + return AXIS2_SUCCESS; +} + +axiom_node_t *AXIS2_CALL +hello_invoke( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env, + axiom_node_t * node, + axis2_msg_ctx_t * msg_ctx) +{ + return axis2_hello_greet(env, node); +} + +axiom_node_t *AXIS2_CALL +hello_on_fault( + axis2_svc_skeleton_t * svc_skeli, + const axutil_env_t * env, + axiom_node_t * node) +{ + axiom_node_t *error_node = NULL; + axiom_node_t *text_node = NULL; + axiom_element_t *error_ele = NULL; + error_ele = axiom_element_create(env, node, "HelloServiceError", NULL, + &error_node); + axiom_element_set_text(error_ele, env, "Hello service failed ", text_node); + return error_node; +} + +int AXIS2_CALL +hello_free( + axis2_svc_skeleton_t * svc_skeleton, + const axutil_env_t * env) +{ + if (svc_skeleton->func_array) + { + axutil_array_list_free(svc_skeleton->func_array, env); + svc_skeleton->func_array = NULL; + } + + if (svc_skeleton) + { + AXIS2_FREE(env->allocator, svc_skeleton); + svc_skeleton = NULL; + } + + return AXIS2_SUCCESS; +} + +AXIS2_EXPORT int +axis2_get_instance( + axis2_svc_skeleton_t ** inst, + const axutil_env_t * env) +{ + *inst = axis2_hello_create(env); + if (!(*inst)) + { + return AXIS2_FAILURE; + } + + return AXIS2_SUCCESS; +} + +AXIS2_EXPORT int +axis2_remove_instance( + axis2_svc_skeleton_t * inst, + const axutil_env_t * env) +{ + axis2_status_t status = AXIS2_FAILURE; + if (inst) + { + status = AXIS2_SVC_SKELETON_FREE(inst, env); + } + return status; +} diff --git a/xdocs/docs/hello/service/hello_svc.c.html b/xdocs/docs/hello/service/hello_svc.c.html new file mode 100644 index 0000000..9d4ae7a --- /dev/null +++ b/xdocs/docs/hello/service/hello_svc.c.html @@ -0,0 +1,198 @@ +Apache Axis2/C - hello_svc.c
+/*

+ * Copyright 2004,2005 The Apache Software Foundation.

+ *

+ * Licensed 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_svc_skeleton.h>

+#include <axutil_log_default.h>

+#include <axutil_error_default.h>

+#include <axutil_array_list.h>

+#include <axiom_text.h>

+#include <axiom_node.h>

+#include <axiom_element.h>

+#include <stdio.h>

+

+axiom_node_t *axis2_hello_greet(const axutil_env_t *env,

+        axiom_node_t *node);

+

+int AXIS2_CALL

+hello_free(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env);

+

+axiom_node_tAXIS2_CALL

+hello_invoke(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env,

+        axiom_node_t *node,

+        axis2_msg_ctx_t *msg_ctx);

+

+

+int AXIS2_CALL

+hello_init(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env);

+

+axiom_node_tAXIS2_CALL

+hello_on_fault(axis2_svc_skeleton_t *svc_skeli,

+        const axutil_env_t *envaxiom_node_t *node);

+

+

+axiom_node_t *

+build_greeting_response(const axutil_env_t *env

+        axis2_char_t *greeting);

+

+axiom_node_t *

+axis2_hello_greet(const axutil_env_t *envaxiom_node_t *node)

+{

+    axiom_node_t *client_greeting_node = NULL;

+    axiom_node_t *return_node = NULL;

+

+    AXIS2_ENV_CHECK(envNULL);

+

+    if (node)

+    {

+        client_greeting_node = axiom_node_get_first_child(nodeenv);

+        if (client_greeting_node &&

+                axiom_node_get_node_type(client_greeting_nodeenv) == AXIOM_TEXT)

+        {

+            axiom_text_t *greeting = (axiom_text_t *)axiom_node_get_data_element(client_greeting_nodeenv);

+            if (greeting && axiom_text_get_value(greeting , env))

+            {

+                const axis2_char_t *greeting_str = axiom_text_get_value(greetingenv);

+                printf("Client greeted saying \"%s\" \n"greeting_str);

+                return_node = build_greeting_response(env"Hello Client!");

+            }

+        }

+    }

+    else

+    {

+        AXIS2_ERROR_SET(env->errorAXIS2_ERROR_SVC_SKEL_INVALID_XML_FORMAT_IN_REQUESTAXIS2_FAILURE);

+        printf("ERROR: invalid XML in request\n");

+        return_node = build_greeting_response(env"Client! Who are you?");

+    }

+

+    return return_node;

+}

+

+axiom_node_t *

+build_greeting_response(const axutil_env_t *envaxis2_char_t *greeting)

+{

+    axiom_node_tgreeting_om_node = NULL;

+    axiom_element_t * greeting_om_ele = NULL;

+

+    greeting_om_ele = axiom_element_create(envNULL"greetResponse"NULL, &greeting_om_node);

+

+    axiom_element_set_text(greeting_om_eleenvgreetinggreeting_om_node);

+

+    return greeting_om_node;

+}

+

+static const axis2_svc_skeleton_ops_t hello_svc_skeleton_ops_var = {

+    hello_init,

+    hello_invoke,

+    hello_on_fault,

+    hello_free

+};

+

+axis2_svc_skeleton_t *

+axis2_hello_create(const axutil_env_t *env)

+{

+    axis2_svc_skeleton_t *svc_skeleton = NULL;

+    svc_skeleton = AXIS2_MALLOC(env->allocator,

+            sizeof(axis2_svc_skeleton_t));

+

+    svc_skeleton->ops = &hello_svc_skeleton_ops_var;

+

+    svc_skeleton->func_array = NULL;



+    return svc_skeleton;

+}

+

+int AXIS2_CALL

+hello_init(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env)

+{

+    svc_skeleton->func_array = axutil_array_list_create(env0);

+    axutil_array_list_add(svc_skeleton->func_arrayenv"helloString");

+    return AXIS2_SUCCESS;

+}

+

+axiom_node_tAXIS2_CALL

+hello_invoke(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env,

+        axiom_node_t *node,

+        axis2_msg_ctx_t *msg_ctx)

+{

+    return axis2_hello_greet(envnode);

+}

+

+axiom_node_tAXIS2_CALL

+hello_on_fault(axis2_svc_skeleton_t *svc_skeli,

+        const axutil_env_t *envaxiom_node_t *node)

+{

+    axiom_node_t *error_node = NULL;

+    axiom_node_ttext_node = NULL;

+    axiom_element_t *error_ele = NULL;

+    error_ele = axiom_element_create(envnode"HelloServiceError"NULL,

+            &error_node);

+    axiom_element_set_text(error_eleenv"Echo Service Failed",

+            text_node);

+    return error_node;

+}

+

+int AXIS2_CALL

+hello_free(axis2_svc_skeleton_t *svc_skeleton,

+        const axutil_env_t *env)

+{

+    if (svc_skeleton->func_array)

+    {

+        axutil_array_list_free(svc_skeleton->func_arrayenv);

+        svc_skeleton->func_array = NULL;

+    }

+

+    if (svc_skeleton)

+    {

+        AXIS2_FREE(env->allocatorsvc_skeleton);

+        svc_skeleton = NULL;

+    }

+

+    return AXIS2_SUCCESS;

+}

+

+

+AXIS2_EXPORT int

+axis2_get_instance(axis2_svc_skeleton_t **inst,

+        const axutil_env_t *env)

+{

+    *inst = axis2_hello_create(env);

+    if (!(*inst))

+    {

+        return AXIS2_FAILURE;

+    }

+

+    return AXIS2_SUCCESS;

+}

+

+AXIS2_EXPORT int

+axis2_remove_instance(axis2_svc_skeleton_t *inst,

+        const axutil_env_t *env)

+{

+    axis2_status_t status = AXIS2_FAILURE;

+    if (inst)

+    {

+        status = AXIS2_SVC_SKELETON_FREE(instenv);

+    }

+    return status;

+}

+

+

+

-- cgit v1.1-32-gdbae