You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2008/07/31 18:02:16 UTC

svn commit: r681404 - /tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite

Author: antelder
Date: Thu Jul 31 09:02:15 2008
New Revision: 681404

URL: http://svn.apache.org/viewvc?rev=681404&view=rev
Log:
Correct typo in class name

Modified:
    tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite

Modified: tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite?rev=681404&r1=681403&r2=681404&view=diff
==============================================================================
--- tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite (original)
+++ tuscany/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite Thu Jul 31 09:02:15 2008
@@ -18,16 +18,16 @@
  * under the License.
 -->
 <composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
-           targetNamespace="http://samples">
-           name="Helloworld"
+           targetNamespace="http://samples"
+           name="Helloworld">
 
-    <component name="WebClient>
+    <component name="WebClient">
         <implementation.web web-uri=""/>
         <reference name="helloworldService" target="HelloworldService"/>
     </component>
 
     <component name="HelloworldService">
-        <implementation.java class="samples.HelloworldServiceImpl"/>
+        <implementation.java class="sample.HelloworldServiceImpl"/>
     </component>
 
 </composite>