summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/server
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
commit874620b24eaf0862fb28194099e951e57363ca29 (patch)
tree76413f39d2ef9e79456af15e99648754a17fff4e /sca-cpp/trunk/modules/server
parent49f4223605b4946a2bf6831262dd442375a4a929 (diff)
Refactor some of the extensions and remove unnecessary namespace prefixes.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1126298 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/server')
-rw-r--r--sca-cpp/trunk/modules/server/domain-test.composite17
1 files changed, 8 insertions, 9 deletions
diff --git a/sca-cpp/trunk/modules/server/domain-test.composite b/sca-cpp/trunk/modules/server/domain-test.composite
index 56bfb700f0..b003dd15cd 100644
--- a/sca-cpp/trunk/modules/server/domain-test.composite
+++ b/sca-cpp/trunk/modules/server/domain-test.composite
@@ -18,21 +18,20 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
targetNamespace="http://domain/test"
name="domain-test">
<component name="scheme-test">
- <t:implementation.scheme script="server-test.scm"/>
+ <implementation.scheme script="server-test.scm"/>
<service name="test">
- <t:binding.http uri="test"/>
+ <binding.http uri="test"/>
</service>
</component>
<component name="property-test">
- <t:implementation.scheme script="property-test.scm"/>
+ <implementation.scheme script="property-test.scm"/>
<service name="properties">
- <t:binding.http uri="properties"/>
+ <binding.http uri="properties"/>
</service>
<property name="host"></property>
<property name="path"></property>
@@ -42,17 +41,17 @@
<component name="cpp-test">
<implementation.cpp path="." library="libimpl-test"/>
<service name="cpp">
- <t:binding.http uri="cpp"/>
+ <binding.http uri="cpp"/>
</service>
</component>
<component name="client-test">
- <t:implementation.scheme script="client-test.scm"/>
+ <implementation.scheme script="client-test.scm"/>
<service name="client">
- <t:binding.http uri="client"/>
+ <binding.http uri="client"/>
</service>
<reference name="ref" target="scheme-test">
- <t:binding.http/>
+ <binding.http/>
</reference>
</component>