You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2007/08/22 19:51:25 UTC

svn commit: r568713 - /ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap

Author: mriou
Date: Wed Aug 22 10:51:25 2007
New Revision: 568713

URL: http://svn.apache.org/viewvc?rev=568713&view=rev
Log:
Proper namespacing satisfying the parser gods.

Modified:
    ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap

Modified: ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap
URL: http://svn.apache.org/viewvc/ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap?rev=568713&r1=568712&r2=568713&view=diff
==============================================================================
--- ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap (original)
+++ ode/trunk/distro/src/examples-jbi/HelloWorld2-RPC/message.soap Wed Aug 22 10:51:25 2007
@@ -20,8 +20,8 @@
 
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Body>
-	<Hello>
-        <text xmlns="urn:/HelloWorld2-RPC.wsdl">hello</text>
-    </Hello>
+    <xns:Hello xmlns:xns="urn:/HelloWorld2-RPC.wsdl">
+      <text>hello</text>
+    </xns:Hello>
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>