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 2005/09/14 05:56:49 UTC

svn commit: r280756 [2/2] - in /webservices/axis2/trunk/java/modules: core/src/org/apache/axis2/ core/src/org/apache/axis2/clientapi/ core/src/org/apache/axis2/context/ core/src/org/apache/axis2/deployment/ core/src/org/apache/axis2/description/ core/s...

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java?rev=280756&r1=280755&r2=280756&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java Tue Sep 13 20:56:02 2005
@@ -101,7 +101,7 @@
             ArrayList inPhase = axisSytem.getInPhasesUptoAndIncludingPostDispatch();
 
             inPhase.add("global");
-            ((AxisConfigurationImpl) axisSytem).setInPhases(inPhase);
+//            ((AxisConfigurationImpl) axisSytem).setInPhases(inPhase);
             ((AxisConfigurationImpl) axisSytem).setInFaultPhases(inPhase);
             ((AxisConfigurationImpl) axisSytem).setOutFaultPhases(inPhase);
             ((AxisConfigurationImpl) axisSytem).setOutPhases(inPhase);

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/groovy/GroovyServiceTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/groovy/GroovyServiceTest.java?rev=280756&r1=280755&r2=280756&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/groovy/GroovyServiceTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/groovy/GroovyServiceTest.java Tue Sep 13 20:56:02 2005
@@ -78,7 +78,7 @@
 
     public void testServiceExists() throws Exception {
         ServiceDescription desc = UtilServer.getConfigurationContext().
-                getAxisConfiguration().getService(serviceName);
+                getAxisConfiguration().getService(serviceName.getLocalPart());
         assertNotNull(desc);
     }
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilServer.java?rev=280756&r1=280755&r2=280756&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilServer.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilServer.java Tue Sep 13 20:56:02 2005
@@ -44,7 +44,7 @@
 
     public static synchronized void unDeployService(QName service) throws AxisFault {
         receiver.getSystemContext().getAxisConfiguration().removeService(
-                service);
+                service.getLocalPart());
     }
 
     public static synchronized void start() throws Exception {

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java?rev=280756&r1=280755&r2=280756&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java Tue Sep 13 20:56:02 2005
@@ -44,7 +44,7 @@
 
     public static synchronized void unDeployService(QName service)
             throws AxisFault {
-        configurationContext.getAxisConfiguration().removeService(service);
+        configurationContext.getAxisConfiguration().removeService(service.getLocalPart());
     }
 
     public static synchronized void start() throws Exception {

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java?rev=280756&r1=280755&r2=280756&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java Tue Sep 13 20:56:02 2005
@@ -120,7 +120,7 @@
                     envelope = messgeCtx.getEnvelope();
                 }
             });
-            engineRegistry.removeService(serviceName);
+            engineRegistry.removeService(serviceName.getLocalPart());
             clientService.addOperation(clientOperation);
             engineRegistry.addService(clientService);
             Utils.resolvePhases(engineRegistry, clientService);