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 ba...@apache.org on 2007/02/13 21:24:51 UTC

svn commit: r507195 - /webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java

Author: barrettj
Date: Tue Feb 13 12:24:50 2007
New Revision: 507195

URL: http://svn.apache.org/viewvc?view=rev&rev=507195
Log:
Remove ConfigurationContext from toString() so a ConfigContext isn't created just to output debug information.

Modified:
    webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java

Modified: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java?view=diff&rev=507195&r1=507194&r2=507195
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java (original)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/ServiceDescriptionImpl.java Tue Feb 13 12:24:50 2007
@@ -1208,8 +1208,10 @@
             string.append(port + sameline);
         }
         // Axis Config information
-        string.append(newline);
-        string.append("ConfigurationContext: " + getAxisConfigContext());
+        // We don't print out the config context because it will force one to be created
+        // if it doesn't already exist.
+//        string.append(newline);
+//        string.append("ConfigurationContext: " + getAxisConfigContext());
         // EndpointDescriptions
         string.append(newline);
         EndpointDescription[] endpointDescs = getEndpointDescriptions();



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