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 di...@apache.org on 2007/04/13 16:01:33 UTC

svn commit: r528489 - /webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java

Author: dims
Date: Fri Apr 13 07:01:32 2007
New Revision: 528489

URL: http://svn.apache.org/viewvc?view=rev&rev=528489
Log:
avoid NPE - merge from trunk

Modified:
    webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java

Modified: webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java?view=diff&rev=528489&r1=528488&r2=528489
==============================================================================
--- webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java (original)
+++ webservices/axis2/branches/java/1_2/modules/jaxws/src/org/apache/axis2/jaxws/context/utils/ContextUtils.java Fri Apr 13 07:01:32 2007
@@ -62,9 +62,11 @@
         Map props = axisMsgContext.getOptions().getProperties();
         soapMessageContext.putAll(props);
 
+        EndpointDescription description = jaxwsMessageContext.getEndpointDescription();
+        if (description !=null) {
         // Set the WSDL properties
         ServiceDescription sd =
-                jaxwsMessageContext.getEndpointDescription().getServiceDescription();
+                    description.getServiceDescription();
         if (sd != null) {
             URL wsdlLocation = ((ServiceDescriptionWSDL)sd).getWSDLLocation();
             if (wsdlLocation != null && !"".equals(wsdlLocation)) {
@@ -89,6 +91,7 @@
                     .setScope(javax.xml.ws.handler.MessageContext.WSDL_SERVICE, Scope.APPLICATION);
             if (log.isDebugEnabled()) {
                 log.debug("WSDL_SERVICE :" + sd.getServiceQName());
+                }
             }
         }
 



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