Author: alessio.soldano(a)jboss.com
Date: 2007-11-12 05:22:51 -0500 (Mon, 12 Nov 2007)
New Revision: 5030
Modified:
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsaSoap12/AddressingTestCase.java
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsse/TestService.java
Log:
Minor changes
Modified:
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsaSoap12/AddressingTestCase.java
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsaSoap12/AddressingTestCase.java 2007-11-12
10:03:01 UTC (rev 5029)
+++
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsaSoap12/AddressingTestCase.java 2007-11-12
10:22:51 UTC (rev 5030)
@@ -62,10 +62,8 @@
private static Notify notifyPort;
final static String WSA_FROM = "http://example.org/node/A";
- //final static String WSA_TO = "http://example.org/node/B";
+ final static String WSA_TO = "http://example.org/node/B";
// final static String WSA_TO =
"http://131.107.72.15/WSAddressingCR_Service_WCF/WSAddressing10.svc/Soap12";
- final static String WSA_TO =
"http://10.10.34.79/WSAddressingCR_Service_WCF/WSAddressing10.svc/Soap12";
- final static String WSA_TO_DUPLEX =
"http://10.10.34.79/WSAddressingCR_Service_WCF/WSAddressing10.svc/Soap12/Duplex";
private static URL wsdlLocation;
@@ -511,7 +509,7 @@
//
public void test1250() throws Exception {
AddressingProperties requestProps =
-
AddressingClientUtil.createDefaultProps("http://example.org/action/e...;,
AddressingTestCase.WSA_TO_DUPLEX);
+
AddressingClientUtil.createDefaultProps("http://example.org/action/e...;,
AddressingTestCase.WSA_TO);
requestProps.setMessageID(AddressingClientUtil.createMessageID());
requestProps.setReplyTo(
AddressingTestCase.BUILDER.newEndpointReference(
Modified:
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsse/TestService.java
===================================================================
---
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsse/TestService.java 2007-11-12
10:03:01 UTC (rev 5029)
+++
stack/native/branches/asoldano/trunk/src/test/java/org/jboss/test/ws/interop/nov2007/wsse/TestService.java 2007-11-12
10:22:51 UTC (rev 5030)
@@ -118,7 +118,7 @@
{
responseBody.setOrigin(parameters.getPing().getOrigin());
responseBody.setScenario(parameters.getPing().getScenario());
- responseBody.setText(parameters.getPing().getText());
+ responseBody.setText(parameters.getPing().getOrigin() + " : " +
parameters.getPing().getText());
}
result.setPingResponse(responseBody);
return result;