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/a39f8db9
Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/a39f8db9
Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/a39f8db9

Branch: refs/heads/master
Commit: a39f8db9b95b8b722b73b13d965a7334b09c0869
Parents: 498d645
Author: Tammo van Lessen <[email protected]>
Authored: Mon Aug 26 20:42:48 2013 +0200
Committer: Tammo van Lessen <[email protected]>
Committed: Tue Aug 27 01:04:52 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/a39f8db9/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/a39f8db9/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"/>

Reply via email to