Author: objectiser
Date: 2009-11-03 10:00:34 -0500 (Tue, 03 Nov 2009)
New Revision: 223
Removed:
trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.cbp
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELHelloWorldTestCase.java
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELLoanApprovalTestCase.java
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleCorrelationTestCase.java
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleInvokeTestCase.java
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_hello_world/bpel/HelloWorld.wsdl
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_loan_approval/bpel/loanServicePT.wsdl
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_correlation/bpel/HelloGoodbye.wsdl
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_invoke/bpel/SimpleInvoke.wsdl
trunk/samples/quickstart/hello_world/bpel/HelloWorld.wsdl
trunk/samples/quickstart/hello_world/build.xml
trunk/samples/quickstart/loan_approval/bpel/loanServicePT.wsdl
trunk/samples/quickstart/loan_approval/build.xml
trunk/samples/quickstart/simple_correlation/bpel/HelloGoodbye.wsdl
trunk/samples/quickstart/simple_correlation/build.xml
trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.wsdl
trunk/samples/quickstart/simple_invoke/build.xml
Log:
RIFTSAW-65 - updated URLs so that the web context for multiple deployed examples do not
clash.
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELHelloWorldTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELHelloWorldTestCase.java 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELHelloWorldTestCase.java 2009-11-03
15:00:34 UTC (rev 223)
@@ -44,7 +44,7 @@
public void testSendHello() throws Exception {
String result=sendSOAPMessage("hello_request1.xml",
- "http://localhost:8080/bpel/processes/helloWorld");
+ "http://localhost:8080/Quickstart_bpel_hello_worldWS");
assertMessageFromFile(result, "hello_response1.xml");
}
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELLoanApprovalTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELLoanApprovalTestCase.java 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELLoanApprovalTestCase.java 2009-11-03
15:00:34 UTC (rev 223)
@@ -44,14 +44,14 @@
public void testSendLoanRequest1() throws Exception {
String result=sendSOAPMessage("loanreq1.xml",
- "http://localhost:8080/bpel/processes/loanService");
+ "http://localhost:8080/Quickstart_bpel_loan_approvalWS");
assertMessageFromFile(result, "loanresp1.xml");
}
public void testSendLoanRequest2() throws Exception {
String result=sendSOAPMessage("loanreq2.xml",
- "http://localhost:8080/bpel/processes/loanService");
+ "http://localhost:8080/Quickstart_bpel_loan_approvalWS");
assertMessageFromFile(result, "loanresp2.xml");
}
@@ -59,14 +59,14 @@
/*
public void testSendLoanRequest3() throws Exception {
String result=sendSOAPMessage("loanreq3.xml",
- "http://localhost:8080/bpel/processes/loanService");
+ "http://localhost:8080/Quickstart_bpel_loan_approvalWS");
assertMessageFromFile(result, "loanresp3.xml");
}
public void testSendLoanRequest4() throws Exception {
String result=sendSOAPMessage("loanreq4.xml",
- "http://localhost:8080/bpel/processes/loanService");
+ "http://localhost:8080/Quickstart_bpel_loan_approvalWS");
assertMessageFromFile(result, "loanresp4.xml");
}
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleCorrelationTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleCorrelationTestCase.java 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleCorrelationTestCase.java 2009-11-03
15:00:34 UTC (rev 223)
@@ -42,14 +42,14 @@
TEST_NAME, "Quickstart_bpel_simple_correlation-1.jar"));
}
- public void testSendHello() throws Exception {
+ public void testSendHelloGoodbye() throws Exception {
String result1=sendSOAPMessage("hello_request1.xml",
- "http://localhost:8080/bpel/processes/helloGoodbyeWorld");
+ "http://localhost:8080/Quickstart_bpel_simple_correlationWS");
assertMessageFromFile(result1, "hello_response1.xml");
String result2=sendSOAPMessage("goodbye_request1.xml",
- "http://localhost:8080/bpel/processes/helloGoodbyeWorld");
+ "http://localhost:8080/Quickstart_bpel_simple_correlationWS");
assertMessageFromFile(result2, "goodbye_response1.xml");
}
Modified:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleInvokeTestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleInvokeTestCase.java 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/samples/QuickstartBPELSimpleInvokeTestCase.java 2009-11-03
15:00:34 UTC (rev 223)
@@ -44,7 +44,7 @@
public void testSendHello() throws Exception {
String result=sendSOAPMessage("hello_request1.xml",
- "http://localhost:8080/bpel/processes/simpleInvoke");
+ "http://localhost:8080/Quickstart_bpel_simple_invokeWS");
assertMessageFromFile(result, "hello_response1.xml");
}
Modified:
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_hello_world/bpel/HelloWorld.wsdl
===================================================================
---
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_hello_world/bpel/HelloWorld.wsdl 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_hello_world/bpel/HelloWorld.wsdl 2009-11-03
15:00:34 UTC (rev 223)
@@ -55,7 +55,7 @@
</wsdl:binding>
<wsdl:service name="HelloService">
<wsdl:port name="HelloPort"
binding="tns:HelloSoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/helloWorld"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_hello_worldWS"/>
</wsdl:port>
</wsdl:service>
Modified:
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_loan_approval/bpel/loanServicePT.wsdl
===================================================================
---
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_loan_approval/bpel/loanServicePT.wsdl 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_loan_approval/bpel/loanServicePT.wsdl 2009-11-03
15:00:34 UTC (rev 223)
@@ -118,7 +118,7 @@
</wsdl:binding>
<wsdl:service name="loanService">
<wsdl:port name="loanService_Port"
binding="tns:loanService_Binding">
- <soap:address
location="http://localhost:8080/bpel/processes/loanService" />
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_loan_approvalWS" />
</wsdl:port></wsdl:service>
<wsdl:service name="loanApprover">
<wsdl:port name="loanApprover_Port"
binding="tns:loanApprover_Binding">
Modified:
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_correlation/bpel/HelloGoodbye.wsdl
===================================================================
---
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_correlation/bpel/HelloGoodbye.wsdl 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_correlation/bpel/HelloGoodbye.wsdl 2009-11-03
15:00:34 UTC (rev 223)
@@ -90,7 +90,7 @@
</wsdl:binding>
<wsdl:service name="HelloGoodbyeService">
<wsdl:port name="HelloGoodbyePort"
binding="tns:HelloGoodbyeSoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/helloGoodbyeWorld"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_simple_correlationWS"/>
</wsdl:port>
</wsdl:service>
Modified:
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_invoke/bpel/SimpleInvoke.wsdl
===================================================================
---
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_invoke/bpel/SimpleInvoke.wsdl 2009-11-03
14:10:18 UTC (rev 222)
+++
trunk/integration-tests/src/test/resources/samples/Quickstart_bpel_simple_invoke/bpel/SimpleInvoke.wsdl 2009-11-03
15:00:34 UTC (rev 223)
@@ -54,7 +54,7 @@
</wsdl:binding>
<wsdl:service name="SimpleInvoke_Service">
<wsdl:port name="SimpleInvoke_Port"
binding="tns:SimpleInvoke_SoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/simpleInvoke"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_simple_invokeWS"/>
</wsdl:port>
</wsdl:service>
Modified: trunk/samples/quickstart/hello_world/bpel/HelloWorld.wsdl
===================================================================
--- trunk/samples/quickstart/hello_world/bpel/HelloWorld.wsdl 2009-11-03 14:10:18 UTC (rev
222)
+++ trunk/samples/quickstart/hello_world/bpel/HelloWorld.wsdl 2009-11-03 15:00:34 UTC (rev
223)
@@ -55,7 +55,7 @@
</wsdl:binding>
<wsdl:service name="HelloService">
<wsdl:port name="HelloPort"
binding="tns:HelloSoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/helloWorld"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_hello_worldWS"/>
</wsdl:port>
</wsdl:service>
Modified: trunk/samples/quickstart/hello_world/build.xml
===================================================================
--- trunk/samples/quickstart/hello_world/build.xml 2009-11-03 14:10:18 UTC (rev 222)
+++ trunk/samples/quickstart/hello_world/build.xml 2009-11-03 15:00:34 UTC (rev 223)
@@ -30,7 +30,7 @@
<target name="sendhello">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/helloWorld"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_hello_worldWS"/>
<arg value="messages/hello_request1.xml"/>
<classpath>
<fileset dir="../../common/lib">
Modified: trunk/samples/quickstart/loan_approval/bpel/loanServicePT.wsdl
===================================================================
--- trunk/samples/quickstart/loan_approval/bpel/loanServicePT.wsdl 2009-11-03 14:10:18 UTC
(rev 222)
+++ trunk/samples/quickstart/loan_approval/bpel/loanServicePT.wsdl 2009-11-03 15:00:34 UTC
(rev 223)
@@ -118,7 +118,7 @@
</wsdl:binding>
<wsdl:service name="loanService">
<wsdl:port name="loanService_Port"
binding="tns:loanService_Binding">
- <soap:address
location="http://localhost:8080/bpel/processes/loanService" />
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_loan_approvalWS" />
</wsdl:port></wsdl:service>
<wsdl:service name="loanApprover">
<wsdl:port name="loanApprover_Port"
binding="tns:loanApprover_Binding">
Modified: trunk/samples/quickstart/loan_approval/build.xml
===================================================================
--- trunk/samples/quickstart/loan_approval/build.xml 2009-11-03 14:10:18 UTC (rev 222)
+++ trunk/samples/quickstart/loan_approval/build.xml 2009-11-03 15:00:34 UTC (rev 223)
@@ -75,7 +75,7 @@
<target name="sendloanreq1">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/loanService"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_loan_approvalWS"/>
<arg value="messages/loanreq1.xml"/>
<classpath>
<fileset dir="../../common/lib">
@@ -89,7 +89,7 @@
<target name="sendloanreq2">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/loanService"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_loan_approvalWS"/>
<arg value="messages/loanreq2.xml"/>
<classpath>
<fileset dir="../../common/lib">
@@ -103,7 +103,7 @@
<target name="sendloanreq3">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/loanService"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_loan_approvalWS"/>
<arg value="messages/loanreq3.xml"/>
<classpath>
<fileset dir="../../common/lib">
@@ -117,7 +117,7 @@
<target name="sendloanreq4">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/loanService"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_loan_approvalWS"/>
<arg value="messages/loanreq4.xml"/>
<classpath>
<fileset dir="../../common/lib">
Modified: trunk/samples/quickstart/simple_correlation/bpel/HelloGoodbye.wsdl
===================================================================
--- trunk/samples/quickstart/simple_correlation/bpel/HelloGoodbye.wsdl 2009-11-03 14:10:18
UTC (rev 222)
+++ trunk/samples/quickstart/simple_correlation/bpel/HelloGoodbye.wsdl 2009-11-03 15:00:34
UTC (rev 223)
@@ -90,7 +90,7 @@
</wsdl:binding>
<wsdl:service name="HelloGoodbyeService">
<wsdl:port name="HelloGoodbyePort"
binding="tns:HelloGoodbyeSoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/helloGoodbyeWorld"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_simple_correlationWS"/>
</wsdl:port>
</wsdl:service>
Modified: trunk/samples/quickstart/simple_correlation/build.xml
===================================================================
--- trunk/samples/quickstart/simple_correlation/build.xml 2009-11-03 14:10:18 UTC (rev
222)
+++ trunk/samples/quickstart/simple_correlation/build.xml 2009-11-03 15:00:34 UTC (rev
223)
@@ -30,7 +30,7 @@
<target name="sendhello">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/helloGoodbyeWorld"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_simple_correlationWS"/>
<arg value="messages/hello_request1.xml"/>
<classpath>
<fileset dir="../../common/lib">
@@ -44,7 +44,7 @@
<target name="sendgoodbye">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/helloGoodbyeWorld"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_simple_correlationWS"/>
<arg value="messages/goodbye_request1.xml"/>
<classpath>
<fileset dir="../../common/lib">
Deleted: trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.cbp
===================================================================
(Binary files differ)
Modified: trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.wsdl
===================================================================
--- trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.wsdl 2009-11-03 14:10:18 UTC
(rev 222)
+++ trunk/samples/quickstart/simple_invoke/bpel/SimpleInvoke.wsdl 2009-11-03 15:00:34 UTC
(rev 223)
@@ -54,7 +54,7 @@
</wsdl:binding>
<wsdl:service name="SimpleInvoke_Service">
<wsdl:port name="SimpleInvoke_Port"
binding="tns:SimpleInvoke_SoapBinding">
- <soap:address
location="http://localhost:8080/bpel/processes/simpleInvoke"/>
+ <soap:address
location="http://localhost:8080/Quickstart_bpel_simple_invokeWS"/>
</wsdl:port>
</wsdl:service>
Modified: trunk/samples/quickstart/simple_invoke/build.xml
===================================================================
--- trunk/samples/quickstart/simple_invoke/build.xml 2009-11-03 14:10:18 UTC (rev 222)
+++ trunk/samples/quickstart/simple_invoke/build.xml 2009-11-03 15:00:34 UTC (rev 223)
@@ -72,7 +72,7 @@
<target name="sendhello">
<echo>Send test message to: ${ant.project.name}</echo>
<java
classname="org.apache.ode.tools.sendsoap.cline.HttpSoapSender">
- <arg
value="http://localhost:8080/bpel/processes/simpleInvoke"/>
+ <arg
value="http://localhost:8080/Quickstart_bpel_simple_invokeWS"/>
<arg value="messages/hello_request1.xml"/>
<classpath>
<fileset dir="../../common/lib">