Author: gdaniels
Date: Wed Jun 13 18:57:35 2007
New Revision: 547080

URL: http://svn.apache.org/viewvc?view=rev&rev=547080
Log:
Hmm - IDEA was a little overzealous with the renaming!

Modified:
    
webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java

Modified: 
webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java?view=diff&rev=547080&r1=547079&r2=547080
==============================================================================
--- 
webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java
 Wed Jun 13 18:57:35 2007
@@ -28,7 +28,7 @@
 public class StringProviderTests extends ProviderTestCase {
 
     String endpointUrl = 
"http://localhost:8080/axis2/services/StringProviderService";;
-    String xmlString = "<invoke>test input</invokeBusinessLogic>";
+    String xmlString = "<invoke>test input</invoke>";
     private QName serviceName = new QName("http://ws.apache.org/axis2";, 
"StringProviderService");
 
     protected void setUp() throws Exception {
@@ -63,7 +63,7 @@
         
         Dispatch<String> dispatch = getDispatch();
         
-        String request = "<invoke>hello world</invokeBusinessLogic>";
+        String request = "<invoke>hello world</invoke>";
         String response = dispatch.invoke(request);
         assertTrue(request.equals(response));
     }
@@ -158,7 +158,7 @@
         
         Dispatch<String> dispatch = getDispatch();
         
-        String request = 
"<invoke>throwWebServiceException</invokeBusinessLogic>";
+        String request = "<invoke>throwWebServiceException</invoke>";
         try {
             String response = dispatch.invoke(request);
             fail("Expected Exception");



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to