You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2009/05/30 13:17:36 UTC

svn commit: r780241 - in /servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test: java/org/apache/servicemix/cxfbc/ java/org/apache/servicemix/cxfbc/provider/ resources/ resources/org/apache/servicemix/cxfbc/ r...

Author: ffang
Date: Sat May 30 11:17:35 2009
New Revision: 780241

URL: http://svn.apache.org/viewvc?rev=780241&view=rev
Log:
[SMXCOMP-554]refactor tests to not use port 9000 so that the tests can pass with sonar plugin

Modified:
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcRetrieveWsdlFromInternalEndpointTest.java
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/MyJMSServer.java
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/provider/MyServer.java
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/hello_world.wsdl
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/jettyThreadPool.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_async.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_sync.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_bus_logger_feature.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_jbi_wrapper.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_without_jbi_wrapper.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/secondSU/calculator.wsdl
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/hello_world.wsdl
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/http-conduit.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/xbean_provider_with_bus_http_conduit.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world.wsdl
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_base.wsdl
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_transaction.wsdl

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcRetrieveWsdlFromInternalEndpointTest.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcRetrieveWsdlFromInternalEndpointTest.java?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcRetrieveWsdlFromInternalEndpointTest.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcRetrieveWsdlFromInternalEndpointTest.java Sat May 30 11:17:35 2009
@@ -44,7 +44,7 @@
         CxfBcConsumer cxfBcConsumer = new CxfBcConsumer();
         cxfBcConsumer.setTargetEndpoint("CalculatorPort");
         cxfBcConsumer.setTargetService(new QName("http://apache.org/cxf/calculator", "CalculatorService"));
-        cxfBcConsumer.setLocationURI("http://localhost:9000/CalculatorService/SoapPort");
+        cxfBcConsumer.setLocationURI("http://localhost:19000/CalculatorService/SoapPort");
         component.addEndpoint(cxfBcConsumer);
         component.start();
     }
@@ -59,7 +59,7 @@
         factory.getOutInterceptors().add(new LoggingOutInterceptor());
         factory.setServiceClass(CalculatorPortType.class);
         factory.setBindingId(SOAPBinding.SOAP11HTTP_BINDING);
-        factory.setAddress("http://localhost:9000/CalculatorService/SoapPort");
+        factory.setAddress("http://localhost:19000/CalculatorService/SoapPort");
         CalculatorPortType port = (CalculatorPortType) factory.create();
         
         int ret = port.add(1, 2);

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/MyJMSServer.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/MyJMSServer.java?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/MyJMSServer.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/MyJMSServer.java Sat May 30 11:17:35 2009
@@ -28,7 +28,7 @@
     protected void run() {
         System.out.println("Starting Server");
         Object implementor = new GreeterImplTwoWayJMS();
-        String address = "http://localhost:9000/SoapContext/SoapPort";
+        String address = "http://localhost:19000/SoapContext/SoapPort";
         EndpointImpl endpoint = (EndpointImpl) Endpoint.publish(address, implementor);
         endpoint.getInFaultInterceptors().add(new LoggingInInterceptor());
         endpoint.getOutInterceptors().add(new LoggingOutInterceptor());

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/provider/MyServer.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/provider/MyServer.java?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/provider/MyServer.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/provider/MyServer.java Sat May 30 11:17:35 2009
@@ -24,7 +24,7 @@
     protected void run() {
         System.out.println("Starting Server");
         Object implementor = new GreeterImpl();
-        String address1 = "http://localhost:9000/SoapContext/SoapPort";
+        String address1 = "http://localhost:19000/SoapContext/SoapPort";
         String address2 = "http://localhost:9002/dynamicuritest";
         Endpoint.publish(address1, implementor);
         Endpoint.publish(address2, implementor);

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/hello_world.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/hello_world.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/hello_world.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/hello_world.wsdl Sat May 30 11:17:35 2009
@@ -174,7 +174,7 @@
     </wsdl:binding>
     <wsdl:service name="SOAPService">
         <wsdl:port binding="tns:Greeter_SOAPBinding" name="SoapPort">
-            <soap:address location="http://localhost:9000/SoapContext/SoapPort"/>
+            <soap:address location="http://localhost:19000/SoapContext/SoapPort"/>
         </wsdl:port>
     </wsdl:service>
 </wsdl:definitions>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/jettyThreadPool.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/jettyThreadPool.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/jettyThreadPool.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/jettyThreadPool.xml Sat May 30 11:17:35 2009
@@ -41,11 +41,11 @@
   </http:destination>
 
   <httpj:engine-factory bus="cxf">
-   <httpj:engine port="9000">
+   <httpj:engine port="19000">
        <httpj:threadingParameters minThreads="1" maxThreads="3" />
        <httpj:connector>
            <bean class="org.mortbay.jetty.nio.SelectChannelConnector">
-               <property name = "port" value="9000" />
+               <property name = "port" value="19000" />
                <property name="threadPool">
                    <bean class="org.mortbay.thread.BoundedThreadPool"/>
                </property>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider.xml Sat May 30 11:17:35 2009
@@ -28,7 +28,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_async.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_async.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_async.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_async.xml Sat May 30 11:17:35 2009
@@ -45,7 +45,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_sync.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_sync.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_sync.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_sync.xml Sat May 30 11:17:35 2009
@@ -46,7 +46,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_bus_logger_feature.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_bus_logger_feature.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_bus_logger_feature.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_bus_logger_feature.xml Sat May 30 11:17:35 2009
@@ -28,7 +28,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_jbi_wrapper.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_jbi_wrapper.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_jbi_wrapper.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_with_jbi_wrapper.xml Sat May 30 11:17:35 2009
@@ -28,7 +28,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_without_jbi_wrapper.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_without_jbi_wrapper.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_without_jbi_wrapper.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/provider/xbean_provider_without_jbi_wrapper.xml Sat May 30 11:17:35 2009
@@ -29,7 +29,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/secondSU/calculator.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/secondSU/calculator.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/secondSU/calculator.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/secondSU/calculator.wsdl Sat May 30 11:17:35 2009
@@ -88,7 +88,7 @@
     </binding>
     <service name="CalculatorSecondService">
 	<port name="CalculatorPort" binding="tns:CalculatorBinding">
-	    <soap12:address location="http://localhost:9000/CalculatorSecondService/SoapPort" />
+	    <soap12:address location="http://localhost:19000/CalculatorSecondService/SoapPort" />
 	</port>
     </service>
 </definitions>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/hello_world.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/hello_world.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/hello_world.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/hello_world.wsdl Sat May 30 11:17:35 2009
@@ -340,7 +340,7 @@
 
     <wsdl:service name="SOAPService">
 	<wsdl:port name="SoapPort" binding="tns:Greeter_SOAPBinding">
-            <soap:address location="http://localhost:9000/SoapContext/SoapPort"/>
+            <soap:address location="http://localhost:19000/SoapContext/SoapPort"/>
         </wsdl:port>
 
 	<wsdl:port name="SoapPort1" binding="tns:Greeter_SOAPBinding">

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/http-conduit.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/http-conduit.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/http-conduit.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/http-conduit.xml Sat May 30 11:17:35 2009
@@ -31,7 +31,7 @@
     <bean id="loggingIn" class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
     <bean id="loggingOut" class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
     <bean id="toVerifier" class="org.apache.servicemix.cxfbc.ws.addressing.AddressingToVerifier">
-      <property name="expectedTo" value="http://localhost:9000/SoapContext/SoapPort"/>
+      <property name="expectedTo" value="http://localhost:19000/SoapContext/SoapPort"/>
     </bean>
 
     <!-- We are adding the interceptors to the bus as we will have only one endpoint/service/bus. -->

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/xbean_provider_with_bus_http_conduit.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/xbean_provider_with_bus_http_conduit.xml?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/xbean_provider_with_bus_http_conduit.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/addressing/xbean_provider_with_bus_http_conduit.xml Sat May 30 11:17:35 2009
@@ -28,7 +28,7 @@
     <sm:endpoints>      
       
             <cxfbc:provider wsdl="./hello_world.wsdl"
-                      locationURI="http://localhost:9000/SoapContext/SoapPort"
+                      locationURI="http://localhost:19000/SoapContext/SoapPort"
                       endpoint="SoapPort"
                       service="greeter:SOAPService"
                       interfaceName="greeter:Greeter"                      

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world.wsdl Sat May 30 11:17:35 2009
@@ -36,7 +36,7 @@
         <wsdl:port 
             name="TimestampSignEncrypt" 
             binding="tns:Greeter_SOAPBinding">
-            <soap:address location="http://localhost:9000/SOAPServiceWSSecurity/TimestampSignEncrypt"/>
+            <soap:address location="http://localhost:19000/SOAPServiceWSSecurity/TimestampSignEncrypt"/>
         </wsdl:port>
     </wsdl:service>
     <service name="HelloWorldService">

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_base.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_base.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_base.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_base.wsdl Sat May 30 11:17:35 2009
@@ -205,7 +205,7 @@
 
     <wsdl:service name="SOAPService">
 	<wsdl:port name="SoapPort" binding="tns:Greeter_SOAPBinding">
-            <soap:address location="http://localhost:9000/SoapContext/SoapPort"/>
+            <soap:address location="http://localhost:19000/SoapContext/SoapPort"/>
         </wsdl:port>
 
 	<wsdl:port name="SoapPort1" binding="tns:Greeter_SOAPBinding">

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_transaction.wsdl
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_transaction.wsdl?rev=780241&r1=780240&r2=780241&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_transaction.wsdl (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/ws/security/hello_world_transaction.wsdl Sat May 30 11:17:35 2009
@@ -36,7 +36,7 @@
         <wsdl:port 
             name="TimestampSignEncrypt" 
             binding="tns:Greeter_SOAPBinding">
-            <soap:address location="http://localhost:9000/SOAPServiceWSSecurity/TimestampSignEncrypt"/>
+            <soap:address location="http://localhost:19000/SOAPServiceWSSecurity/TimestampSignEncrypt"/>
         </wsdl:port>
     </wsdl:service>
     <service name="HelloWorldService">