You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2004/10/28 02:59:53 UTC

svn commit: rev 55756 - incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis

Author: mmerz
Date: Wed Oct 27 17:59:53 2004
New Revision: 55756

Modified:
   incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/DropInDeploymentHandler.java
Log:

Added to check for case when the webservice is already processed.

Contributor: Daryoush Mehrtash


Modified: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/DropInDeploymentHandler.java
==============================================================================
--- incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/DropInDeploymentHandler.java	(original)
+++ incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/DropInDeploymentHandler.java	Wed Oct 27 17:59:53 2004
@@ -106,6 +106,7 @@
         throws AxisFault
     {
         try {
+            if( null != mc.getService()) return;  // previous handler(s) took care of the url.
             SOAPService ss =
                 createSOAPServiceFromAnnotatedClass(compileDroppedInSource(mc));
             if (null != ss)