You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/02/22 00:57:09 UTC

svn commit: r510319 - /incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java

Author: rfeng
Date: Wed Feb 21 15:57:08 2007
New Revision: 510319

URL: http://svn.apache.org/viewvc?view=rev&rev=510319
Log:
[sca-integration-branch] Fix the namespace to be consistent with the WSDL

Modified:
    incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java

Modified: incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java?view=diff&rev=510319&r1=510318&r2=510319
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java (original)
+++ incubator/tuscany/branches/sca-java-integration/sca/extensions/axis2/samples/helloworldwsOM/src/main/java/helloworldOM/HelloWorldImpl.java Wed Feb 21 15:57:08 2007
@@ -33,8 +33,8 @@
         String name = requestOM.getFirstElement().getText();
 
         OMFactory omFactory = OMAbstractFactory.getOMFactory();
-        OMElement responseOM = omFactory.createOMElement("getGreetingsResponse", "http://helloworld", "helloworld");
-        OMElement param = omFactory.createOMElement("getGreetingsReturn", "http://helloworld", "helloworld");
+        OMElement responseOM = omFactory.createOMElement("getGreetingsResponse", "http://helloworldOM", "helloworld");
+        OMElement param = omFactory.createOMElement("getGreetingsReturn", "http://helloworldOM", "helloworld");
         responseOM.addChild(param);
         param.addChild(omFactory.createOMText("Hello " + name));
         



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org