You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by as...@apache.org on 2007/10/09 14:01:38 UTC

svn commit: r583123 - /webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java

Author: asankha
Date: Tue Oct  9 05:01:35 2007
New Revision: 583123

URL: http://svn.apache.org/viewvc?rev=583123&view=rev
Log:
fix https://issues.apache.org/jira/browse/SYNAPSE-132

Modified:
    webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java

Modified: webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java
URL: http://svn.apache.org/viewvc/webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java?rev=583123&r1=583122&r2=583123&view=diff
==============================================================================
--- webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java (original)
+++ webservices/synapse/trunk/java/modules/samples/src/main/java/samples/userguide/StockQuoteClient.java Tue Oct  9 05:01:35 2007
@@ -202,7 +202,12 @@
         }
 
         try {
-            configContext.terminate();
+            //configContext.terminate();
+            // the above statement was used on reccomendation by Chamikara as I remember, but
+            // since using Axis2 1.3 - this causes some unexpected classloading issue on the
+            // Axis2 server side - which cannot be described. This using the below as suggested
+            // by Deepal
+            serviceClient.cleanup();
         } catch (Exception ignore) {
         }
     }



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