You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by mm...@apache.org on 2006/10/09 15:57:55 UTC

svn commit: r454382 - in /incubator/cxf/trunk: systests/src/test/java/org/apache/cxf/systest/soap12/Server.java testutils/src/main/resources/wsdl/hello_world_soap12.wsdl

Author: mmao
Date: Mon Oct  9 06:57:54 2006
New Revision: 454382

URL: http://svn.apache.org/viewvc?view=rev&rev=454382
Log:
To fix the build.
* Change the port to 9012

Modified:
    incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/soap12/Server.java
    incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello_world_soap12.wsdl

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/soap12/Server.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/soap12/Server.java?view=diff&rev=454382&r1=454381&r2=454382
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/soap12/Server.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/soap12/Server.java Mon Oct  9 06:57:54 2006
@@ -28,7 +28,7 @@
 
     protected void run()  {    
         Object implementor = new GreeterImpl();
-        String address = "http://localhost:9000/SoapContext/SoapPort";
+        String address = "http://localhost:9012/SoapContext/SoapPort";
         Endpoint.publish(address, implementor);
     }
 
@@ -44,4 +44,4 @@
             System.out.println("done!");
         }
     }
-}
\ No newline at end of file
+}

Modified: incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello_world_soap12.wsdl
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello_world_soap12.wsdl?view=diff&rev=454382&r1=454381&r2=454382
==============================================================================
--- incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello_world_soap12.wsdl (original)
+++ incubator/cxf/trunk/testutils/src/main/resources/wsdl/hello_world_soap12.wsdl Mon Oct  9 06:57:54 2006
@@ -73,7 +73,7 @@
 
     <wsdl:service name="SOAPService">
         <wsdl:port name="SoapPort" binding="tns:Greeter_SOAPBinding">
-            <soap12:address location="http://localhost:9000/SoapContext/SoapPort"/>
+            <soap12:address location="http://localhost:9012/SoapContext/SoapPort"/>
         </wsdl:port>
     </wsdl:service>
 </definitions>