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 gd...@apache.org on 2007/06/14 03:57:37 UTC

svn commit: r547080 - /webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/provider/StringProviderTests.java

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: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org