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 de...@apache.org on 2006/04/18 07:46:57 UTC

svn commit: r394849 - in /webservices/axis2/trunk/java/modules/core: src/org/apache/axis2/description/AxisServiceGroup.java test-resources/deployment/service2/META-INF/services.xml

Author: deepal
Date: Mon Apr 17 22:46:55 2006
New Revision: 394849

URL: http://svn.apache.org/viewcvs?rev=394849&view=rev
Log:
-throw exception than logging it in AxisServiceGroup

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java
    webservices/axis2/trunk/java/modules/core/test-resources/deployment/service2/META-INF/services.xml

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java?rev=394849&r1=394848&r2=394849&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java Mon Apr 17 22:46:55 2006
@@ -136,11 +136,7 @@
         while (srevice.hasNext()) {
             // engaging each service
             AxisService axisService = (AxisService) srevice.next();
-            try {
-                axisService.engageModule(module, (AxisConfiguration) getParent());
-            } catch (AxisFault axisFault) {
-                log.info(axisFault.getMessage());
-            }
+            axisService.engageModule(module, (AxisConfiguration) getParent());
         }
         addToengagedModules(moduleName);
     }

Modified: webservices/axis2/trunk/java/modules/core/test-resources/deployment/service2/META-INF/services.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test-resources/deployment/service2/META-INF/services.xml?rev=394849&r1=394848&r2=394849&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test-resources/deployment/service2/META-INF/services.xml (original)
+++ webservices/axis2/trunk/java/modules/core/test-resources/deployment/service2/META-INF/services.xml Mon Apr 17 22:46:55 2006
@@ -7,6 +7,5 @@
     </description>
 
     <operation name="opname">
-        <module ref="module1"></module>
     </operation>
 </service>