[jbossws-commits] JBossWS SVN: r13473 - in framework/trunk/testsuite/test: java/org/jboss/test/ws/jaxws/jbws1178 and 27 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Dec 13 08:22:20 EST 2010


Author: richard.opalka at jboss.com
Date: 2010-12-13 08:22:19 -0500 (Mon, 13 Dec 2010)
New Revision: 13473

Modified:
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointServlet.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/MemoryBufferRecorderTestCase.java
   framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/bare/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/wrapped/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/exception/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/handler/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/holder/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/doclit/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/doclit/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/message/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/mtom/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/oneway/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/rpcstyle/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxrpc/samples/secureejb/META-INF/wsdl/OrganizationService.wsdl
   framework/trunk/testsuite/test/resources/jaxrpc/samples/serviceref/META-INF/wsdl/TestEndpoint.wsdl
   framework/trunk/testsuite/test/resources/jaxrpc/samples/swa/META-INF/jboss-client.xml
   framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-client/wsdl/HelloService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-service/wsdl/HelloService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-client/wsdl/HelloService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-service/wsdl/HelloService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2591/wsdl/JBWS2591TestService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestDOCService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestRPCService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws2957/WEB-INF/wsdl/HelloService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/smoke/tools/wsrunclient/properties.txt
   framework/trunk/testsuite/test/resources/saaj/jbws3084/WEB-INF/wsdl/SaajService.wsdl
Log:
[JBWS-3139] fixing framework tests to use user provided jboss.bind.address in tests - this property is substituted by maven

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointServlet.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointServlet.java	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/endpoint/EndpointServlet.java	2010-12-13 13:22:19 UTC (rev 13473)
@@ -62,8 +62,10 @@
       super.init(config);
       
       endpoint1 = Endpoint.create(SOAPBinding.SOAP11HTTP_BINDING, new EndpointBean());
-      endpoint1.publish("http://localhost:8081/jaxws-endpoint");
-      endpoint2 = Endpoint.publish("http://localhost:8081/jaxws-endpoint2/endpoint/long/path", new EndpointBean());
+      String hostName = System.getProperty("jboss.bind.address", "localhost");
+      hostName = hostName.indexOf(":") != -1 ? "[" + hostName + "]" : hostName;
+      endpoint1.publish("http://" + hostName + ":8081/jaxws-endpoint");
+      endpoint2 = Endpoint.publish("http://" + hostName + ":8081/jaxws-endpoint2/endpoint/long/path", new EndpointBean());
    }
    
    @Override

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1178/JBWS1178TestCase.java	2010-12-13 13:22:19 UTC (rev 13473)
@@ -21,6 +21,7 @@
  */
 package org.jboss.test.ws.jaxws.jbws1178;
 
+import java.net.Inet6Address;
 import java.net.InetAddress;
 import java.net.URL;
 import java.util.Map;
@@ -77,7 +78,8 @@
    public void testHostAddress() throws Exception
    {
       InetAddress inetAddr = InetAddress.getByName(getServerHost());
-      URL wsdlURL = new URL("http://" + inetAddr.getHostAddress() + ":8080/jaxws-jbws1178/testpattern?wsdl");
+      String hostAddress = inetAddr instanceof Inet6Address ? "[" + inetAddr.getHostAddress() + "]" : inetAddr.getHostAddress();
+      URL wsdlURL = new URL("http://" + hostAddress + ":8080/jaxws-jbws1178/testpattern?wsdl");
 
       QName serviceName = new QName("http://org.jboss.ws/jbws1178", "EndpointService");
       Service service = Service.create(wsdlURL, serviceName);

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/MemoryBufferRecorderTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/MemoryBufferRecorderTestCase.java	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/management/recording/MemoryBufferRecorderTestCase.java	2010-12-13 13:22:19 UTC (rev 13473)
@@ -142,13 +142,14 @@
       
       //We have client and server on the same host here...
       String host = "localhost".equals(getServerHost()) ? "127.0.0.1" : getServerHost();
+      if ("[::1]".equals(host)) host = "0:0:0:0:0:0:0:1"; // IPv6 hack
       Map<String, List<Record>> localhostRecords = (Map<String, List<Record>>)server.invoke(oname, "getRecordsByClientHost", new Object[] { host },
             new String[] { "java.lang.String" });
       Map<String, List<Record>> amazonRecords = (Map<String, List<Record>>)server.invoke(oname, "getRecordsByClientHost", new Object[] { "72.21.203.1" },
             new String[] { "java.lang.String" });
       
-      assertTrue(localhostRecords.size() > 0);
-      assertTrue(amazonRecords.size() == 0);
+      assertTrue("No records for " + host, localhostRecords.size() > 0);
+      assertTrue("There are records for 72.21.203.1", amazonRecords.size() == 0);
    }
    
    @SuppressWarnings("unchecked")
@@ -169,6 +170,7 @@
       LinkedList<String> l = new LinkedList<String>();
       l.add("localhost");
       l.add("127.0.0.1");
+      l.add("[::1]");
       HostFilter hostFilter = new HostFilter(l,false); //destination
 
       RecordFilter[] filters = new RecordFilter[] {operationFilter, hostFilter};

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/bare/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/bare/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/bare/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TrivialService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-docstyle-bare?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-docstyle-bare?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/wrapped/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/wrapped/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/docstyle/wrapped/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TrivialService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-docstyle-wrapped?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-docstyle-wrapped?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/exception/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/exception/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/exception/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/ExceptionService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-exception/ExceptionBean?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-exception/ExceptionBean?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/handler/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/handler/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/handler/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-handler?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-handler?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/holder/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/holder/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/holder/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-holder?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-holder?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/doclit/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/doclit/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/doclit/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestServiceEJB</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-jsr109ejb-doc?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109ejb-doc?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestServiceEJB</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-jsr109ejb-rpc?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109ejb-rpc?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109ejb/rpclit/META-INF/jboss.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -8,7 +8,7 @@
     <context-root>/jaxrpc-samples-jsr109ejb-rpc</context-root>
     <webservice-description>
       <webservice-description-name>TestService</webservice-description-name>
-      <wsdl-publish-location>http://localhost:8080/jaxrpc-samples-jsr109ejb-rpc?wsdl</wsdl-publish-location>
+      <wsdl-publish-location>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109ejb-rpc?wsdl</wsdl-publish-location>
     </webservice-description>
   </webservices>
   

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/doclit/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/doclit/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/doclit/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestServiceJSE</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-jsr109pojo-doc?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109pojo-doc?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestServiceJSE</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-jsr109pojo-rpc?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109pojo-rpc?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/jsr109pojo/rpclit/WEB-INF/jboss-web.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -6,7 +6,7 @@
   
   <webservice-description>
     <webservice-description-name>TestService</webservice-description-name>
-    <wsdl-publish-location>http://localhost:8080/jaxrpc-samples-jsr109pojo-rpc?wsdl</wsdl-publish-location>
+    <wsdl-publish-location>http://@jboss.bind.address@:8080/jaxrpc-samples-jsr109pojo-rpc?wsdl</wsdl-publish-location>
   </webservice-description>
   
 </jboss-web>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/message/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/message/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/message/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/MessageService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-message?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-message?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/mtom/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/mtom/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/mtom/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -9,7 +9,7 @@
 
   <service-ref>
     <service-ref-name>service/XOPTestService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-mtom?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-mtom?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/oneway/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/oneway/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/oneway/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TestService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-oneway?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-oneway?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/rpcstyle/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/rpcstyle/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/rpcstyle/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/TrivialService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-rpcstyle?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-rpcstyle?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/secureejb/META-INF/wsdl/OrganizationService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/secureejb/META-INF/wsdl/OrganizationService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/secureejb/META-INF/wsdl/OrganizationService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -27,13 +27,13 @@
  </binding>
  <service name="OrganizationService">
   <port name="BasicSecuredPort" binding="tns:OrganizationServiceBinding">
-   <soap:address location="http://localhost:8080/jaxrpc-samples-ejb/BasicSecured"/>
+   <soap:address location="http://@jboss.bind.address@:8080/jaxrpc-samples-ejb/BasicSecured"/>
   </port>
   <port name="RoleSecuredPort" binding="tns:OrganizationServiceBinding">
-   <soap:address location="http://localhost:8080/jaxrpc-samples-ejb/RoleSecured"/>
+   <soap:address location="http://@jboss.bind.address@:8080/jaxrpc-samples-ejb/RoleSecured"/>
   </port>
   <port name="ConfidentialPort" binding="tns:OrganizationServiceBinding">
-   <soap:address location="https://localhost:8443/jaxrpc-samples-ejb/ConfidentialSecured"/>
+   <soap:address location="https://@jboss.bind.address@:8443/jaxrpc-samples-ejb/ConfidentialSecured"/>
   </port>
  </service>
 </definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/serviceref/META-INF/wsdl/TestEndpoint.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/serviceref/META-INF/wsdl/TestEndpoint.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/serviceref/META-INF/wsdl/TestEndpoint.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -27,7 +27,7 @@
  </binding>
  <service name='TestEndpointService'>
   <port binding='tns:TestEndpointBinding' name='TestEndpointPort'>
-   <soap:address location='http://localhost:8080/jaxrpc-samples-serviceref'/>
+   <soap:address location='http://@jboss.bind.address@:8080/jaxrpc-samples-serviceref'/>
   </port>
  </service>
 </definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxrpc/samples/swa/META-INF/jboss-client.xml
===================================================================
--- framework/trunk/testsuite/test/resources/jaxrpc/samples/swa/META-INF/jboss-client.xml	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxrpc/samples/swa/META-INF/jboss-client.xml	2010-12-13 13:22:19 UTC (rev 13473)
@@ -7,7 +7,7 @@
 
   <service-ref>
     <service-ref-name>service/AttachmentService</service-ref-name>
-    <wsdl-override>http://localhost:8080/jaxrpc-samples-swa?wsdl</wsdl-override>
+    <wsdl-override>http://@jboss.bind.address@:8080/jaxrpc-samples-swa?wsdl</wsdl-override>
   </service-ref>
 
 </jboss-client>

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-client/wsdl/HelloService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-client/wsdl/HelloService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-client/wsdl/HelloService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -71,4 +71,4 @@
   </binding>
   <service name="HelloService">
     <port name="HelloPort" binding="tns:HelloBinding">
-      <soap:address location="http://localhost:8080/jaxws-jbws2307-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file
+      <soap:address location="http://@jboss.bind.address@:8080/jaxws-jbws2307-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-service/wsdl/HelloService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-service/wsdl/HelloService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2307/WEB-INF-service/wsdl/HelloService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -71,4 +71,4 @@
   </binding>
   <service name="HelloService">
     <port name="HelloPort" binding="tns:HelloBinding">
-      <soap:address location="http://localhost:8080/jaxws-jbws2307-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file
+      <soap:address location="http://@jboss.bind.address@:8080/jaxws-jbws2307-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-client/wsdl/HelloService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-client/wsdl/HelloService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-client/wsdl/HelloService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -71,4 +71,4 @@
   </binding>
   <service name="HelloService">
     <port name="HelloPort" binding="tns:HelloBinding">
-      <soap:address location="http://localhost:8080/jaxws-jbws2527-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file
+      <soap:address location="http://@jboss.bind.address@:8080/jaxws-jbws2527-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-service/wsdl/HelloService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-service/wsdl/HelloService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2527/WEB-INF-service/wsdl/HelloService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -71,4 +71,4 @@
   </binding>
   <service name="HelloService">
     <port name="HelloPort" binding="tns:HelloBinding">
-      <soap:address location="http://localhost:8080/jaxws-jbws2527-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file
+      <soap:address location="http://@jboss.bind.address@:8080/jaxws-jbws2527-service/jaxws/Hello"/></port></service></definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2591/wsdl/JBWS2591TestService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2591/wsdl/JBWS2591TestService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2591/wsdl/JBWS2591TestService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -31,7 +31,7 @@
   </binding>
   <service name="MarshallTestService">
     <port name="MarshallTestPort2" binding="tns:NewSchemaTestSoapBinding">
-      <soap:address location="http://localhost:8080/W2JDLMarshallTest/jaxws/NewSchemaTest" />
+      <soap:address location="http://@jboss.bind.address@:8080/W2JDLMarshallTest/jaxws/NewSchemaTest" />
     </port>
   </service>
 </definitions>

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestDOCService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestDOCService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestDOCService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -31,7 +31,7 @@
   </binding>
   <service name="ParameterModeTestService">
     <port name="ParameterModeTestPort" binding="tns:ParameterModeTestBinding">
-      <soap:address location="http://localhost:8000/W2JRLParameterModeTest/jaxws/ParameterModeTest" />
+      <soap:address location="http://@jboss.bind.address@:8000/W2JRLParameterModeTest/jaxws/ParameterModeTest" />
     </port>
   </service>
 </definitions>

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestRPCService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestRPCService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2593/wsdl/JBWS2593TestRPCService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -28,7 +28,7 @@
   </binding>
   <service name="ParameterModeTestService">
     <port name="ParameterModeTestPort" binding="tns:ParameterModeTestBinding">
-      <soap:address location="http://localhost:8000/W2JRLParameterModeTest/jaxws/ParameterModeTest" />
+      <soap:address location="http://@jboss.bind.address@:8000/W2JRLParameterModeTest/jaxws/ParameterModeTest" />
     </port>
   </service>
 </definitions>

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws2957/WEB-INF/wsdl/HelloService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws2957/WEB-INF/wsdl/HelloService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws2957/WEB-INF/wsdl/HelloService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -25,7 +25,7 @@
  </binding>
  <service name="Service">
   <port binding="tns:HelloIfaceBinding" name="HelloImplPort">
-   <soap:address location="http://localhost:8080/foo/bar"/>
+   <soap:address location="http://@jboss.bind.address@:8080/foo/bar"/>
   </port>
  </service>
 </definitions>
\ No newline at end of file

Modified: framework/trunk/testsuite/test/resources/jaxws/smoke/tools/wsrunclient/properties.txt
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/smoke/tools/wsrunclient/properties.txt	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/jaxws/smoke/tools/wsrunclient/properties.txt	2010-12-13 13:22:19 UTC (rev 13473)
@@ -5,3 +5,4 @@
 test.classes.directory
 test.resources.directory
 test.archive.directory
+jboss.bind.address

Modified: framework/trunk/testsuite/test/resources/saaj/jbws3084/WEB-INF/wsdl/SaajService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/saaj/jbws3084/WEB-INF/wsdl/SaajService.wsdl	2010-12-13 13:10:57 UTC (rev 13472)
+++ framework/trunk/testsuite/test/resources/saaj/jbws3084/WEB-INF/wsdl/SaajService.wsdl	2010-12-13 13:22:19 UTC (rev 13473)
@@ -48,7 +48,7 @@
 
   <wsdl:service name="SaajService">
     <wsdl:port name="SaajServicePort" binding="tns:SaajServiceSoapBinding">
-      <soap:address location="http://localhost:8080/SaajService"/>
+      <soap:address location="http://@jboss.bind.address@:8080/SaajService"/>
     </wsdl:port>
   </wsdl:service>
 



More information about the jbossws-commits mailing list