diff options
-rw-r--r-- | java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite b/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite index 79d09a994e..58055195d2 100644 --- a/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite +++ b/java/sca/samples/helloworld-servlet/src/main/webapp/META-INF/sca-deployables/web.composite @@ -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>
|