You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by em...@apache.org on 2008/01/08 07:03:30 UTC

svn commit: r609881 - /incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java

Author: ema
Date: Mon Jan  7 22:03:29 2008
New Revision: 609881

URL: http://svn.apache.org/viewvc?rev=609881&view=rev
Log:
Correct the port number to fix the build

Modified:
    incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java?rev=609881&r1=609880&r2=609881&view=diff
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/stringarray/Server.java Mon Jan  7 22:03:29 2008
@@ -25,8 +25,7 @@
 public class Server extends AbstractBusTestServerBase {
     protected void run() {
         Object implementor = new StringArrayTestImpl();
-        String address = "http://localhost:9999/SOAPServiceRPCLit/SoapPort";
-        // http://localhost:9992/SOAPServiceRPCLit/SoapPort
+        String address = "http://localhost:9992/SOAPServiceRPCLit/SoapPort";
         try {            
             Endpoint.publish(address, implementor);
         } catch (Exception e) {