Author: jim.ma
Date: 2012-12-17 22:08:49 -0500 (Mon, 17 Dec 2012)
New Revision: 17115
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/basedoc/BaseTypesDocTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/baserpc/BaseTypesRPCTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexdoc/ComplexTypesDocTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexrpc/ComplexTypesRPCTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/Test1189TestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/anon/Test1189AnonTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/nonanon/Test1189NonAnonTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1190/Test119XTestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1197/Test1197TestCase.java
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/complexrpc/WEB-INF/web.xml
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/wsa/test1197/WEB-INF/web.xml
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/wsa/test1198/WEB-INF/web.xml
Log:
Change the port to 9090
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/basedoc/BaseTypesDocTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/basedoc/BaseTypesDocTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/basedoc/BaseTypesDocTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -54,7 +54,7 @@
Service service = Service.create(wsdlURL, serviceName);
IBaseDataTypesDocLitW port = (IBaseDataTypesDocLitW)
service.getPort(IBaseDataTypesDocLitW.class);
// invoke method
-
((BindingProvider)port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost/jaxws-bp12basedoc/BPBaseDoc");
+
((BindingProvider)port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost:9090/jaxws-bp12basedoc/BPBaseDoc");
System.out.println("Invoking retInt...");
int _retInt_inInt = 10;
int _retInt__return = port.retInt(_retInt_inInt);
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/baserpc/BaseTypesRPCTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/baserpc/BaseTypesRPCTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/baserpc/BaseTypesRPCTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -54,7 +54,7 @@
Service service = Service.create(wsdlURL, serviceName);
IBaseDataTypesRpcLit port = (IBaseDataTypesRpcLit)
service.getPort(IBaseDataTypesRpcLit.class);
// invoke method
-
((BindingProvider)port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost:8080/jaxws-bp12baserpc/BPBaseRPC");
+
((BindingProvider)port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost:9090/jaxws-bp12baserpc/BPBaseRPC");
System.out.println("Invoking retInt...");
int _retInt_inInt = 10;
int _retInt__return = port.retInt(_retInt_inInt);
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexdoc/ComplexTypesDocTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexdoc/ComplexTypesDocTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexdoc/ComplexTypesDocTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -50,7 +50,7 @@
IComplexDataTypesDocLitW port = (IComplexDataTypesDocLitW)
service.getPort(IComplexDataTypesDocLitW.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://localhost:8080/jaxws-bp12complexdoc/ComplexDoc");
+ "http://localhost:9090/jaxws-bp12complexdoc/ComplexDoc");
System.out.println("Invoking retArrayString1D...");
StringArray inArrayString1D = new StringArray();
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexrpc/ComplexTypesRPCTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexrpc/ComplexTypesRPCTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/complexrpc/ComplexTypesRPCTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -34,7 +34,7 @@
public class ComplexTypesRPCTestCase extends JBossWSTest
{
- private final String serviceURL = "http://" + getServerHost() +
":8080/jaxws-bp12complexrpc/ComplexRPC";
+ private final String serviceURL = "http://" + getServerHost() +
":9090/jaxws-bp12complexrpc/ComplexRPC";
public static Test suite()
{
@@ -50,7 +50,7 @@
IComplexDataTypesRpcLit port = (IComplexDataTypesRpcLit)
service.getPort(IComplexDataTypesRpcLit.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://localhost:8080/jaxws-bp12complexrpc/ComplexRPC");
+ "http://localhost:9090/jaxws-bp12complexrpc/ComplexRPC");
System.out.println("Invoking retArrayString1D...");
StringArray inArrayString1D = new StringArray();
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/Test1189TestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/Test1189TestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/Test1189TestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -49,7 +49,7 @@
WsaTestPortType port = (WsaTestPortType) service.getPort(WsaTestPortType.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://" + getServerHost() +
"/jaxws-bp12test1189/Test1189");
+ "http://" + getServerHost() +
":9090/jaxws-bp12test1189/Test1189");
System.out.println("Invoking echo...");
String response = port.echo("input string");
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/anon/Test1189AnonTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/anon/Test1189AnonTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/anon/Test1189AnonTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -56,13 +56,13 @@
WsaTestPortType port = (WsaTestPortType) service.getPort(WsaTestPortType.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://" + getServerHost() +
"/jaxws-bp12test1189-anon/Test1189Anon");
+ "http://" + getServerHost() +
":9090/jaxws-bp12test1189-anon/Test1189Anon");
EndpointReferenceType wsaTo = new EndpointReferenceType();
AddressingProperties addrProperties = new AddressingPropertiesImpl();
AttributedURIType epr = new AttributedURIType();
- epr.setValue( "http://" + getServerHost() +
":9090/jaxws-bp12test1189-anon/Test1189Anon");
+ epr.setValue( "http://" + getServerHost() +
":8080/jaxws-bp12test1189-anon/Test1189Anon");
wsaTo.setAddress(epr);
addrProperties.setReplyTo(wsaTo);
((BindingProvider)
port).getRequestContext().put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES,
addrProperties);
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/nonanon/Test1189NonAnonTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/nonanon/Test1189NonAnonTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1189/nonanon/Test1189NonAnonTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -51,7 +51,7 @@
WsaTestPortType port = (WsaTestPortType) service.getPort(WsaTestPortType.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://" + getServerHost() +
"/jaxws-bp12test1189-nonanon/Test1189NonAnon");
+ "http://" + getServerHost() +
":9090/jaxws-bp12test1189-nonanon/Test1189NonAnon");
try
{
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1190/Test119XTestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1190/Test119XTestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1190/Test119XTestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -62,7 +62,7 @@
WsaTestPortType port = (WsaTestPortType) service.getPort(WsaTestPortType.class);
// invoke method
((BindingProvider)
port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
- "http://" + getServerHost() +
":9090/jaxws-bp12test1190/Test1190");
+ "http://localhost:9090/jaxws-bp12test1190/Test1190");
System.out.println("Invoking echo1...");
String response = port.echo1("input string");
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1197/Test1197TestCase.java
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1197/Test1197TestCase.java 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/java/org/jboss/test/ws/jaxws/bp12/wsa/test1197/Test1197TestCase.java 2012-12-18
03:08:49 UTC (rev 17115)
@@ -75,7 +75,7 @@
System.out.println("Invoking sign6...");
SignatureInMultipartMessage inMessage = new SignatureInMultipartMessage();
inMessage.setSignatureInFirstPart(new
ObjectFactory().createSignatureInMultipartMessageSignatureInFirstPart("Hello"));
- inMessage.setSignatureInSecondPart(new
ObjectFactory().createSignatureInMultipartMessageSignatureInFirstPart("World"));
+ inMessage.setSignatureInSecondPart(new
ObjectFactory().createSignatureInMultipartMessageSignatureInSecondPart("World"));
response = port.sign6(inMessage);
System.out.println(response);
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/complexrpc/WEB-INF/web.xml
===================================================================
---
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/complexrpc/WEB-INF/web.xml 2012-12-17
17:22:22 UTC (rev 17114)
+++
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/complexrpc/WEB-INF/web.xml 2012-12-18
03:08:49 UTC (rev 17115)
@@ -6,7 +6,7 @@
<servlet>
<servlet-name>ComplexRPC</servlet-name>
-
<servlet-class>org.jboss.test.ws.jaxws.bp12.complexrpc.WsaTestPortTypeImpl</servlet-class>
+
<servlet-class>org.jboss.test.ws.jaxws.bp12.complexrpc.IComplexDataTypesRpcLitImpl</servlet-class>
</servlet>
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/wsa/test1197/WEB-INF/web.xml
===================================================================
(Binary files differ)
Modified:
stack/cxf/branches/jbossws-cxf-bp-test/modules/testsuite/bp12-tests/src/test/resources/jaxws/bp12/wsa/test1198/WEB-INF/web.xml
===================================================================
(Binary files differ)
Show replies by date