Author: boisvert
Date: Tue Aug 22 15:41:43 2006
New Revision: 433785
URL: http://svn.apache.org/viewvc?rev=433785&view=rev
Log:
Update PingPong example to use deploy.xml instead of .dd
Added:
incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/deploy.xml
incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/deploy.xml
Removed:
incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/Ping.dd
incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/Pong.dd
Modified:
incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/Ping.wsdl
Modified:
incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/Ping.wsdl
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/Ping.wsdl?rev=433785&r1=433784&r2=433785&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/Ping.wsdl
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/Ping.wsdl
Tue Aug 22 15:41:43 2006
@@ -44,7 +44,7 @@
<binding name="PingSoapBinding" type="tns:PingPortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="Ping">
- <!--soap:operation soapAction="urn:Ping"/-->
+ <soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
@@ -60,10 +60,7 @@
<!-- Connect this external HTTP endpoint to the process internal
JBI endpoint defined in ping/Ping.dd -->
- <smix:endpoint xmlns:ping="urn:/Ping.wsdl"
- role="consumer"
- defaultMep="in-out"
- targetEndpoint="ping:PingService"/>
+ <smix:endpoint role="consumer" defaultMep="in-out"/>
</port>
</service>
Added: incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/deploy.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/deploy.xml?rev=433785&view=auto
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/deploy.xml
(added)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/deploy.xml Tue
Aug 22 15:41:43 2006
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy xmlns="http://ode.fivesight.com/schemas/2006/06/27/dd"
+ xmlns:process="urn:/Ping.bpel"
+ xmlns:ping="urn:/Ping.wsdl"
+ xmlns:pong="urn:/Pong.wsdl">
+
+ <process name="process:Ping">
+ <active>true</active>
+ <provide partnerLink="PingPartnerLink">
+ <service name="ping:PingService" port="PingPort"/>
+ </provide>
+ <invoke partnerLink="PongPartnerLink">
+ <service name="pong:PongService" port="PongPort"/>
+ </invoke>
+ </process>
+
+</deploy>
Added: incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/deploy.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/deploy.xml?rev=433785&view=auto
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/deploy.xml
(added)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/deploy.xml Tue
Aug 22 15:41:43 2006
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy xmlns="http://ode.fivesight.com/schemas/2006/06/27/dd"
+ xmlns:process="urn:/Pong.bpel"
+ xmlns:pong="urn:/Pong.wsdl">
+
+ <process name="process:Pong">
+ <active>true</active>
+ <provide partnerLink="PongPartnerLink">
+ <service name="pong:PongService" port="PongPort"/>
+ </provide>
+ </process>
+
+</deploy>