fix SMX HelloWorld example.
Project: http://git-wip-us.apache.org/repos/asf/ode/repo Commit: http://git-wip-us.apache.org/repos/asf/ode/commit/9735d01a Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/9735d01a Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/9735d01a Branch: refs/heads/ode-1.3.6.x Commit: 9735d01a2e66538f4b1e25dd2c745fff38cd1d0d Parents: de386fd Author: Tammo van Lessen <[email protected]> Authored: Mon Aug 26 20:42:48 2013 +0200 Committer: Tammo van Lessen <[email protected]> Committed: Mon Aug 26 20:42:48 2013 +0200 ---------------------------------------------------------------------- .../src/main/resources/HelloWorld2.bpel | 12 ++++++------ .../helloworld2-osgi/src/main/resources/deploy.xml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode/blob/9735d01a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/HelloWorld2.bpel ---------------------------------------------------------------------- diff --git a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/HelloWorld2.bpel b/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/HelloWorld2.bpel index 71f07c2..e3b9a72 100644 --- a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/HelloWorld2.bpel +++ b/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/HelloWorld2.bpel @@ -17,10 +17,10 @@ ~ specific language governing permissions and limitations ~ under the License. --> -<process name="HelloWorld2" - targetNamespace="urn:/HeaderTest.bpel" +<process name="HelloWorld" + targetNamespace="urn:/jbiTest.bpel" xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable" - xmlns:tns="urn:/HeaderTest.bpel" + xmlns:tns="urn:/jbiTest.bpel" xmlns:hello="urn:/HelloWorld2.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> @@ -51,14 +51,14 @@ <assign name="assign1"> <copy> - <from>$request.body/hello:text</from> + <from>$request.body/text</from> <to variable="text"/> </copy> <copy> <from> <literal> <hello:HelloResponse> - <hello:text/> + <text xmlns=""/> </hello:HelloResponse> </literal> </from> @@ -66,7 +66,7 @@ </copy> <copy> <from>concat($text,' World')</from> - <to>$response.body/hello:text</to> + <to>$response.body/text</to> </copy> </assign> http://git-wip-us.apache.org/repos/asf/ode/blob/9735d01a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/deploy.xml ---------------------------------------------------------------------- diff --git a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/deploy.xml b/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/deploy.xml index 680271c..49470ac 100644 --- a/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/deploy.xml +++ b/distro/src/examples-jbi/maven2/helloworld2-osgi/src/main/resources/deploy.xml @@ -17,11 +17,11 @@ ~ under the License. --> <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" - xmlns:pns="urn:/HeaderTest.bpel" + xmlns:pns="urn:/jbiTest.bpel" xmlns:sns="urn:/HelloWorld2.wsdl" > - <process name="pns:HelloWorld2"> + <process name="pns:HelloWorld"> <active>true</active> <provide partnerLink="helloPartnerLink"> <service name="sns:HelloService" port="HelloPort"/>
