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 na...@apache.org on 2006/10/26 07:36:40 UTC

svn commit: r467871 - in /webservices/axis2/trunk/java/modules: integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java kernel/src/org/apache/axis2/i18n/resource.properties

Author: nagy
Date: Wed Oct 25 22:36:39 2006
New Revision: 467871

URL: http://svn.apache.org/viewvc?view=rev&rev=467871
Log:
Fixed message and issue with having changed the message.

Modified:
    webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/i18n/resource.properties

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java?view=diff&rev=467871&r1=467870&r2=467871
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CallUnregisteredServiceTest.java Wed Oct 25 22:36:39 2006
@@ -80,7 +80,11 @@
             fail("The test must fail due to wrong service Name");
 
         } catch (AxisFault e) {
-            assertTrue(e.getMessage().indexOf("Service not found") >= 0);
+          System.out.println(e);
+          System.out.println(e.getMessage());
+          System.out.println(e.getLocalizedMessage());
+          System.out.println(e.getReason());
+            assertTrue(e.getMessage().indexOf("service could not be found") >= 0);
             tearDown();
             return;
         }

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/i18n/resource.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/i18n/resource.properties?view=diff&rev=467871&r1=467870&r2=467871
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/i18n/resource.properties (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/i18n/resource.properties Wed Oct 25 22:36:39 2006
@@ -228,7 +228,7 @@
 receivederrormessage=The system received an error message with the {0} ID. 
 servicenotfoundforepr=The endpoint reference (EPR) for the Service not found is {0}
 operationnotfoundforepr=The endpoint reference (EPR) for the Operation not found is {0} and the WSA Action = {1}
-unabletofindservice=The service not found operation stopped.
+unabletofindservice=The requested service could not be found -- the operation has been stopped.
 invalidservicegrouoid=The {0} Service Group ID is not valid.
 servicenotfoundinthesystem=The {0} service is not found in the system.
 transportnotfound=The transport is not found: {0}



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