You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/03/08 11:25:21 UTC

svn commit: r384174 - in /webservices/axis2/trunk/c/modules: core/context/conf_ctx.c mod_addr/addr_out_handler.c

Author: samisa
Date: Wed Mar  8 02:25:19 2006
New Revision: 384174

URL: http://svn.apache.org/viewcvs?rev=384174&view=rev
Log:
Fixed some bugs to get addressing 1.0 working

Modified:
    webservices/axis2/trunk/c/modules/core/context/conf_ctx.c
    webservices/axis2/trunk/c/modules/mod_addr/addr_out_handler.c

Modified: webservices/axis2/trunk/c/modules/core/context/conf_ctx.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/conf_ctx.c?rev=384174&r1=384173&r2=384174&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/conf_ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/conf_ctx.c Wed Mar  8 02:25:19 2006
@@ -252,6 +252,7 @@
     axis2_conf_ctx_impl_t *conf_ctx_impl = NULL;
     
     AXIS2_ENV_CHECK(env, NULL);
+    AXIS2_PARAM_CHECK((*env)->error, message_id, NULL);
     
     conf_ctx_impl = AXIS2_INTF_TO_IMPL(conf_ctx);
     axis2_thread_mutex_lock(conf_ctx_impl->mutex);

Modified: webservices/axis2/trunk/c/modules/mod_addr/addr_out_handler.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/mod_addr/addr_out_handler.c?rev=384174&r1=384173&r2=384174&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/mod_addr/addr_out_handler.c (original)
+++ webservices/axis2/trunk/c/modules/mod_addr/addr_out_handler.c Wed Mar  8 02:25:19 2006
@@ -296,6 +296,10 @@
             {
                 anonymous_uri = AXIS2_WSA_ANONYMOUS_URL_SUBMISSION;
             }
+            else
+            {
+                anonymous_uri = AXIS2_WSA_ANONYMOUS_URL;
+            }
 
             epr = axis2_endpoint_ref_create (env, anonymous_uri);