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 ke...@apache.org on 2008/04/15 07:57:46 UTC

svn commit: r648120 - /webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java

Author: keithc
Date: Mon Apr 14 22:57:44 2008
New Revision: 648120

URL: http://svn.apache.org/viewvc?rev=648120&view=rev
Log:
Fixing Axis2-3741


Modified:
    webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java

Modified: webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java?rev=648120&r1=648119&r2=648120&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java (original)
+++ webservices/axis2/branches/java/1_4/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java Mon Apr 14 22:57:44 2008
@@ -231,6 +231,12 @@
                 // https then we have two endpoints populated so we should serialize them instead
                 // of updating the endpoints.
                 AxisEndpoint axisEndpoint = (AxisEndpoint) iterator.next();
+                /*
+			    * Some transports might not be active at runtime.
+			    */
+                if (!axisEndpoint.isActive()) {
+                    continue;
+                }
                 AxisBinding axisBinding = axisEndpoint.getBinding();
                 String type = axisBinding.getType();
                 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org