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 aj...@apache.org on 2006/01/03 16:09:08 UTC

svn commit: r365657 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java

Author: ajith
Date: Tue Jan  3 07:09:03 2006
New Revision: 365657

URL: http://svn.apache.org/viewcvs?rev=365657&view=rev
Log:
Fixing a minor issue with the order of statements

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java?rev=365657&r1=365656&r2=365657&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/ServiceClient.java Tue Jan  3 07:09:03 2006
@@ -79,6 +79,8 @@
                 : new ConfigurationContextFactory()
                 .buildConfigurationContext(null);
 
+        this.axisConfig = this.configContext.getAxisConfiguration();
+        
         // save the service and axisConfig
         if (axisService == null) {
             this.axisService = createAnonymousService();
@@ -86,7 +88,7 @@
             this.axisService = axisService;
         }
 
-        this.axisConfig = this.configContext.getAxisConfiguration();
+
 
         // add the service to the config context if it isn't in there already
         if (axisConfig.getService(this.axisService.getName()) == null) {