Author: ffang
Date: Sat May 30 14:19:19 2009
New Revision: 780275

URL: http://svn.apache.org/viewvc?rev=780275&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/CxfBCConsumerAsynTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCSESystemTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcJaxwsProviderTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcProviderConsumerTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSUClassloaderTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSeStFlowTest.java
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/cxf_provider_consumer_bridge.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean-ST-flow.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_asyn.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_different_service_endpoint_name.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_provider.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_timeout.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper.xml
    
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper_without_soapenv.xml

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCConsumerAsynTest.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/CxfBCConsumerAsynTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCConsumerAsynTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCConsumerAsynTest.java
 Sat May 30 14:19:19 2009
@@ -20,6 +20,7 @@
 import java.util.logging.Logger;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.calculator.CalculatorPortType;
 import org.apache.cxf.calculator.CalculatorService;
@@ -81,7 +82,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInInterceptors().add(
                 new LoggingInInterceptor());
         ClientProxy.getClient(port).getOutInterceptors().add(

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCSESystemTest.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/CxfBCSESystemTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCSESystemTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBCSESystemTest.java
 Sat May 30 14:19:19 2009
@@ -20,6 +20,7 @@
 import java.util.logging.Logger;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.Bus;
 import org.apache.cxf.BusFactory;
@@ -112,7 +113,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
                 
@@ -135,7 +139,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
         int ret = port.add(1, 2);
@@ -155,7 +162,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         MultiClientThread[] clients = new MultiClientThread[10];
         for (int i = 0; i < clients.length; i++) {
             clients[i] = new MultiClientThread(port);

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcJaxwsProviderTest.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/CxfBcJaxwsProviderTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcJaxwsProviderTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcJaxwsProviderTest.java
 Sat May 30 14:19:19 2009
@@ -19,6 +19,7 @@
 import java.net.URL;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.calculator.AddNumbersFault;
 import org.apache.cxf.calculator.CalculatorPortType;
@@ -45,7 +46,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
         

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcProviderConsumerTest.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/CxfBcProviderConsumerTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcProviderConsumerTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcProviderConsumerTest.java
 Sat May 30 14:19:19 2009
@@ -19,6 +19,7 @@
 import java.net.URL;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.calculator.AddNumbersFault;
 import org.apache.cxf.calculator.CalculatorImpl;
@@ -52,7 +53,10 @@
         assertNotNull(wsdl);
         CalculatorService service1 = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service1.getCalculatorPort();
+        QName endpointName = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service1.addPort(endpointName, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service1.getPort(endpointName, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getOutFaultInterceptors().add(new 
LoggingOutInterceptor());

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSUClassloaderTest.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/CxfBcSUClassloaderTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSUClassloaderTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSUClassloaderTest.java
 Sat May 30 14:19:19 2009
@@ -21,6 +21,7 @@
 import java.util.logging.Logger;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.calculator.CalculatorPortType;
 import org.apache.cxf.calculator.CalculatorService;
@@ -61,7 +62,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
         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/CxfBcSeStFlowTest.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/CxfBcSeStFlowTest.java?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSeStFlowTest.java
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcSeStFlowTest.java
 Sat May 30 14:19:19 2009
@@ -20,6 +20,7 @@
 import java.util.logging.Logger;
 
 import javax.xml.namespace.QName;
+import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.calculator.AddNumbersFault;
 import org.apache.cxf.calculator.CalculatorPortType;
@@ -37,8 +38,7 @@
 public class CxfBcSeStFlowTest extends SpringTestSupport {
     
     private static final Logger LOG = 
LogUtils.getL7dLogger(CxfBcSeStFlowTest.class);
-    
-   
+       
     
     public void setUp() throws Exception {
         //override super setup
@@ -85,7 +85,10 @@
         assertNotNull(wsdl);
         CalculatorService service = new CalculatorService(wsdl, new QName(
                 "http://apache.org/cxf/calculator";, "CalculatorService"));
-        CalculatorPortType port = service.getCalculatorPort();
+        QName endpoint = new QName("http://apache.org/cxf/calculator";, 
"CalculatorPort");
+        service.addPort(endpoint, 
+                SOAPBinding.SOAP12HTTP_BINDING, 
"http://localhost:19000/CalculatorService/SoapPort";);
+        CalculatorPortType port = service.getPort(endpoint, 
CalculatorPortType.class);
         ClientProxy.getClient(port).getInFaultInterceptors().add(new 
LoggingInInterceptor());
         ClientProxy.getClient(port).getInInterceptors().add(new 
LoggingInInterceptor());
         int ret = port.add(1, 2);

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/cxf_provider_consumer_bridge.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/cxf_provider_consumer_bridge.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/cxf_provider_consumer_bridge.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/cxf_provider_consumer_bridge.xml
 Sat May 30 14:19:19 2009
@@ -25,6 +25,7 @@
     
     <sm:endpoints>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       service="calculator:CalculatorService"
                       endpoint="CalculatorPort"
                       targetEndpoint="CalculatorPortProxy"

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean-ST-flow.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/xbean-ST-flow.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean-ST-flow.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean-ST-flow.xml
 Sat May 30 14:19:19 2009
@@ -51,6 +51,7 @@
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"
                       synchronous="false"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       >
         <cxfbc:inInterceptors>
           <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/>

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean.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/xbean.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean.xml
 Sat May 30 14:19:19 2009
@@ -47,6 +47,7 @@
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       >
         <cxfbc:inInterceptors>
           <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/>

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_asyn.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/xbean_asyn.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_asyn.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_asyn.xml
 Sat May 30 14:19:19 2009
@@ -44,6 +44,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_different_service_endpoint_name.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/xbean_different_service_endpoint_name.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_different_service_endpoint_name.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_different_service_endpoint_name.xml
 Sat May 30 14:19:19 2009
@@ -46,6 +46,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="AnotherCalculatorPort"
                       targetService="calculator:AnotherCalculatorService"
                       >

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/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/xbean_provider.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_provider.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_provider.xml
 Sat May 30 14:19:19 2009
@@ -45,6 +45,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="provider:CalculatorSoapMessageProvider"

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_timeout.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/xbean_timeout.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_timeout.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_timeout.xml
 Sat May 30 14:19:19 2009
@@ -44,6 +44,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_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/xbean_without_jbi_wrapper.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper.xml
 Sat May 30 14:19:19 2009
@@ -44,6 +44,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"

Modified: 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper_without_soapenv.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/xbean_without_jbi_wrapper_without_soapenv.xml?rev=780275&r1=780274&r2=780275&view=diff
==============================================================================
--- 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper_without_soapenv.xml
 (original)
+++ 
servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/xbean_without_jbi_wrapper_without_soapenv.xml
 Sat May 30 14:19:19 2009
@@ -45,6 +45,7 @@
         </cxfse:outFaultInterceptors>
       </cxfse:endpoint>
       <cxfbc:consumer wsdl="/wsdl/calculator.wsdl"
+                      
locationURI="http://localhost:19000/CalculatorService/SoapPort";
                       targetEndpoint="CalculatorPort"
                       targetService="calculator:CalculatorService"
                       targetInterface="calculator:CalculatorPortType"


Reply via email to