Author: boisvert
Date: Tue Aug 22 14:28:39 2006
New Revision: 433760
URL: http://svn.apache.org/viewvc?rev=433760&view=rev
Log:
Update example to work with latest ServiceMix trunk
Modified:
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/HelloWorld2.wsdl
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/HelloWorld2.bpel
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/deploy.xml
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml
Modified:
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/HelloWorld2.wsdl
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/HelloWorld2.wsdl?rev=433760&r1=433759&r2=433760&view=diff
==============================================================================
---
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/HelloWorld2.wsdl
(original)
+++
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/HelloWorld2.wsdl
Tue Aug 22 14:28:39 2006
@@ -44,7 +44,7 @@
<binding name="HelloSoapBinding" type="tns:HelloPortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="Hello">
- <!--soap:operation soapAction="urn:Hello"/-->
+ <soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
@@ -56,14 +56,11 @@
<service name="HelloService">
<port name="HelloPort" binding="tns:HelloSoapBinding">
- <soap:address location="http://localhost:8080/hello"/>
+ <soap:address location="http://localhost:8080/hello-doc"/>
<!-- Connect this external HTTP endpoint to the process internal
JBI endpoint defined in HelloWorld2-process/HelloWorld2.dd -->
- <smix:endpoint xmlns:hello="urn:/HelloWorld2.wsdl"
- role="consumer"
- defaultMep="in-out"
- targetEndpoint="hello:HelloService"/>
+ <smix:endpoint role="consumer" defaultMep="in-out"/>
</port>
</service>
Modified:
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/HelloWorld2.bpel
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/HelloWorld2.bpel?rev=433760&r1=433759&r2=433760&view=diff
==============================================================================
---
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/HelloWorld2.bpel
(original)
+++
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/HelloWorld2.bpel
Tue Aug 22 14:28:39 2006
@@ -48,7 +48,7 @@
<to>$response.body</to>
</copy>
<copy>
- <from>concat($text,' World')"</from>
+ <from>concat($text,' World')</from>
<to>$response.body/hello:text</to>
</copy>
</assign>
Modified:
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/deploy.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/deploy.xml?rev=433760&r1=433759&r2=433760&view=diff
==============================================================================
---
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/deploy.xml
(original)
+++
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/deploy.xml
Tue Aug 22 14:28:39 2006
@@ -6,7 +6,7 @@
<process name="pns:HelloWorld2">
<active>true</active>
<provide partnerLink="helloPartnerLink">
- <service name="sns:HelloService" port="jbi"/>
+ <service name="sns:HelloService" port="HelloPort"/>
</provide>
</process>
</deploy>
Modified: incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml?rev=433760&r1=433759&r2=433760&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml Tue Aug
22 14:28:39 2006
@@ -5,7 +5,7 @@
<target name="test" depends="init">
<antcall target="_sendsoap">
- <param name="ode.sendsoap.url"
value="http://localhost:${ode.http.port}/hello/"/>
+ <param name="ode.sendsoap.url"
value="http://localhost:${ode.http.port}/hello-doc/"/>
<param name="ode.sendsoap.filename" location="message.soap"/>
</antcall>
</target>