You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/05/09 12:22:49 UTC

svn commit: r405372 - in /incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources: sca.module wsdl/helloworld.wsdl

Author: jsdelfino
Date: Tue May  9 03:22:44 2006
New Revision: 405372

URL: http://svn.apache.org/viewcvs?rev=405372&view=rev
Log:
Fixed namespaces in sample

Modified:
    incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/sca.module
    incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/wsdl/helloworld.wsdl

Modified: incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/sca.module
URL: http://svn.apache.org/viewcvs/incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/sca.module?rev=405372&r1=405371&r2=405372&view=diff
==============================================================================
--- incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/sca.module (original)
+++ incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/sca.module Tue May  9 03:22:44 2006
@@ -18,12 +18,11 @@
         name="sampleHelloworld">
 
     <import.sdo wsdlLocation="wsdl/helloworld.wsdl"/>
-    <import.wsdl location="wsdl/helloworld.wsdl" namespace="http://helloworldaxis.samples.tuscany.apache.org"/>
+    <import.wsdl location="wsdl/helloworld.wsdl" namespace="http://helloworld"/>
 
     <externalService name="HelloWorldService">
         <interface.java interface="helloworld.HelloWorldService"/>
-        <!-- <interface.wsdl interface="http://helloworldaxis.samples.tuscany.apache.org#HelloWorldServiceImpl"/> -->
-        <binding.ws port="http://helloworldaxis.samples.tuscany.apache.org#helloworld"/>
+        <binding.ws port="http://helloworld#HelloWorldSoapPort"/>
     </externalService>
     
 </module>

Modified: incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/wsdl/helloworld.wsdl
URL: http://svn.apache.org/viewcvs/incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/wsdl/helloworld.wsdl?rev=405372&r1=405371&r2=405372&view=diff
==============================================================================
--- incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/wsdl/helloworld.wsdl (original)
+++ incubator/tuscany/java/sca/samples/helloworldwsclient/src/main/resources/wsdl/helloworld.wsdl Tue May  9 03:22:44 2006
@@ -67,7 +67,7 @@
     </wsdl:binding>
 
     <wsdl:service name="HelloWorldService">
-        <wsdl:port binding="tns:HelloWorldSoapPort" name="HelloWorldSoapBinding">
+        <wsdl:port binding="tns:HelloWorldSoapBinding" name="HelloWorldSoapPort">
             <wsdlsoap:address location="http://localhost:8080/helloworldws-SNAPSHOT/services/HelloWorldService"/>
         </wsdl:port>
     </wsdl:service>