summaryrefslogtreecommitdiffstats
path: root/src/core/engine/soap_body_disp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/engine/soap_body_disp.c')
-rw-r--r--src/core/engine/soap_body_disp.c231
1 files changed, 231 insertions, 0 deletions
diff --git a/src/core/engine/soap_body_disp.c b/src/core/engine/soap_body_disp.c
new file mode 100644
index 0000000..702a988
--- /dev/null
+++ b/src/core/engine/soap_body_disp.c
@@ -0,0 +1,231 @@
+/*
+ * 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_disp.h>
+#include <axis2_handler_desc.h>
+#include <axutil_string.h>
+#include <axis2_svc.h>
+#include <axis2_const.h>
+#include <axis2_conf_ctx.h>
+#include <axutil_utils.h>
+#include <axiom_soap_envelope.h>
+#include <axiom_soap_body.h>
+
+const axis2_char_t *AXIS2_SOAP_MESSAGE_BODY_DISP_NAME = "soap_message_body_based_dispatcher";
+
+axis2_status_t AXIS2_CALL
+axis2_soap_body_disp_invoke(
+ axis2_handler_t * handler,
+ const axutil_env_t * env,
+ struct axis2_msg_ctx *msg_ctx);
+
+axis2_svc_t *AXIS2_CALL axis2_soap_body_disp_find_svc(
+ axis2_msg_ctx_t * msg_ctx,
+ const axutil_env_t * env);
+
+axis2_op_t *AXIS2_CALL axis2_soap_body_disp_find_op(
+ axis2_msg_ctx_t * msg_ctx,
+ const axutil_env_t * env,
+ axis2_svc_t * svc);
+
+axis2_disp_t *AXIS2_CALL
+axis2_soap_body_disp_create(
+ const axutil_env_t * env)
+{
+ axis2_disp_t *disp = NULL;
+ axis2_handler_t *handler = NULL;
+ axutil_string_t *name = NULL;
+
+ name = axutil_string_create_const(env, (axis2_char_t **)&AXIS2_SOAP_MESSAGE_BODY_DISP_NAME);
+
+ disp = axis2_disp_create(env, name);
+ if(!disp)
+ {
+ AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
+ return NULL;
+ }
+
+ handler = axis2_disp_get_base(disp, env);
+ if(!handler)
+ {
+ AXIS2_ERROR_SET(env->error, AXIS2_ERROR_INVALID_HANDLER_STATE, AXIS2_FAILURE);
+ return NULL;
+ }
+
+ axis2_handler_set_invoke(handler, env, axis2_soap_body_disp_invoke);
+
+ axutil_string_free(name, env);
+
+ return disp;
+}
+
+axis2_svc_t *AXIS2_CALL
+axis2_soap_body_disp_find_svc(
+ axis2_msg_ctx_t * msg_ctx,
+ const axutil_env_t * env)
+{
+ axiom_soap_envelope_t *soap_envelope = NULL;
+ axis2_svc_t *svc = NULL;
+
+ if(axis2_msg_ctx_get_doing_rest(msg_ctx, env))
+ return NULL;
+
+ soap_envelope = axis2_msg_ctx_get_soap_envelope(msg_ctx, env);
+ if(soap_envelope)
+ {
+ axiom_soap_body_t *soap_body = axiom_soap_envelope_get_body(soap_envelope, env);
+ if(soap_body)
+ {
+ axiom_node_t *body_node = axiom_soap_body_get_base_node(soap_body, env);
+ if(body_node)
+ {
+ axiom_node_t *body_first_child_node = axiom_node_get_first_element(body_node, env);
+
+ if(body_first_child_node)
+ {
+ if(axiom_node_get_node_type(body_first_child_node, env) == AXIOM_ELEMENT)
+ {
+ axiom_element_t *element = NULL;
+ element = (axiom_element_t *)axiom_node_get_data_element(
+ body_first_child_node, env);
+ if(element)
+ {
+ axiom_namespace_t *ns = axiom_element_get_namespace(element, env,
+ body_first_child_node);
+ if(ns)
+ {
+ axis2_char_t *uri = axiom_namespace_get_uri(ns, env);
+ if(uri)
+ {
+ axis2_char_t **url_tokens = NULL;
+ AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, "Checking for service "
+ "using SOAP message body's "
+ "first child's namespace "
+ "URI : %s", uri);
+
+ url_tokens = axutil_parse_request_url_for_svc_and_op(env, uri);
+
+ if(url_tokens)
+ {
+ if(url_tokens[0])
+ {
+ axis2_conf_ctx_t *conf_ctx = NULL;
+
+ conf_ctx = axis2_msg_ctx_get_conf_ctx(msg_ctx, env);
+ if(conf_ctx)
+ {
+ axis2_conf_t *conf = NULL;
+ conf = axis2_conf_ctx_get_conf(conf_ctx, env);
+ if(conf)
+ {
+ svc = axis2_conf_get_svc(conf, env,
+ url_tokens[0]);
+ if(svc)
+ AXIS2_LOG_DEBUG(env-> log, AXIS2_LOG_SI,
+ "Service found "
+ "using SOAP message"
+ "body's first "
+ "child's namespace URI");
+ }
+ }
+ AXIS2_FREE(env->allocator, url_tokens[0]);
+ }
+
+ AXIS2_FREE(env->allocator, url_tokens);
+ url_tokens = NULL;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ return svc;
+}
+
+axis2_op_t *AXIS2_CALL
+axis2_soap_body_disp_find_op(
+ axis2_msg_ctx_t * msg_ctx,
+ const axutil_env_t * env,
+ axis2_svc_t * svc)
+{
+ axiom_soap_envelope_t *soap_envelope = NULL;
+ axis2_op_t *op = NULL;
+
+ AXIS2_PARAM_CHECK(env->error, svc, NULL);
+
+ if(axis2_msg_ctx_get_doing_rest(msg_ctx, env))
+ return NULL;
+
+ soap_envelope = axis2_msg_ctx_get_soap_envelope(msg_ctx, env);
+ if(soap_envelope)
+ {
+ axiom_soap_body_t *soap_body = axiom_soap_envelope_get_body(soap_envelope, env);
+ if(soap_body)
+ {
+ axiom_node_t *body_node = axiom_soap_body_get_base_node(soap_body, env);
+ if(body_node)
+ {
+ axiom_node_t *body_first_child_node = axiom_node_get_first_element(body_node, env);
+
+ if(body_first_child_node)
+ {
+ if(axiom_node_get_node_type(body_first_child_node, env) == AXIOM_ELEMENT)
+ {
+ axiom_element_t *element = NULL;
+ element = (axiom_element_t *)axiom_node_get_data_element(
+ body_first_child_node, env);
+ if(element)
+ {
+ axis2_char_t *element_name = axiom_element_get_localname(element, env);
+ if(element_name)
+ {
+ AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI,
+ "Checking for operation using SOAP message"
+ "body's first child's local name : %s", element_name);
+
+ op = axis2_svc_get_op_with_name(svc, env, element_name);
+
+ if(op)
+ AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI,
+ "Operation found using SOAP message "
+ "body's first child's local name");
+
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ return op;
+}
+
+axis2_status_t AXIS2_CALL
+axis2_soap_body_disp_invoke(
+ axis2_handler_t * handler,
+ const axutil_env_t * env,
+ struct axis2_msg_ctx * msg_ctx)
+{
+ axis2_msg_ctx_set_find_svc(msg_ctx, env, axis2_soap_body_disp_find_svc);
+ axis2_msg_ctx_set_find_op(msg_ctx, env, axis2_soap_body_disp_find_op);
+ return axis2_disp_find_svc_and_op(handler, env, msg_ctx);
+}
+