You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ma...@apache.org on 2009/06/04 09:19:15 UTC

svn commit: r781667 - /webservices/axis2/trunk/c/src/core/deployment/conf_builder.c

Author: manjula
Date: Thu Jun  4 07:19:15 2009
New Revision: 781667

URL: http://svn.apache.org/viewvc?rev=781667&view=rev
Log:
Fixing the conf_builder to process transport_sender elements without any parameters as child elements.

Modified:
    webservices/axis2/trunk/c/src/core/deployment/conf_builder.c

Modified: webservices/axis2/trunk/c/src/core/deployment/conf_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/deployment/conf_builder.c?rev=781667&r1=781666&r2=781667&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/deployment/conf_builder.c (original)
+++ webservices/axis2/trunk/c/src/core/deployment/conf_builder.c Thu Jun  4 07:19:15 2009
@@ -923,13 +923,17 @@
                                                         env, qparamst,
                                                         transport_node);
             axutil_qname_free(qparamst, env);
-            status =
-                axis2_desc_builder_process_params(conf_builder->desc_builder,
+
+            if(itr)
+            {
+                status =
+                 axis2_desc_builder_process_params(conf_builder->desc_builder,
                                                   env, itr,
                                                   axis2_transport_out_desc_param_container
                                                   (transport_out, env),
                                                   axis2_conf_get_param_container
                                                   (conf_builder->conf, env));
+            }
             if (!status)
             {
                 axis2_transport_out_desc_free(transport_out, env);