diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-23 02:29:02 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-23 02:29:02 +0000 |
commit | 874620b24eaf0862fb28194099e951e57363ca29 (patch) | |
tree | 76413f39d2ef9e79456af15e99648754a17fff4e /sca-cpp/trunk/modules/wsgi | |
parent | 49f4223605b4946a2bf6831262dd442375a4a929 (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/wsgi')
-rw-r--r-- | sca-cpp/trunk/modules/wsgi/domain-test.composite | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sca-cpp/trunk/modules/wsgi/domain-test.composite b/sca-cpp/trunk/modules/wsgi/domain-test.composite index 9c44ebf5d8..6786286c63 100644 --- a/sca-cpp/trunk/modules/wsgi/domain-test.composite +++ b/sca-cpp/trunk/modules/wsgi/domain-test.composite @@ -18,24 +18,23 @@ * 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="wsgi-test"> - <t:implementation.python script="server-test.py"/> + <implementation.python script="server-test.py"/> <service name="test"> - <t:binding.http uri="wsgi"/> + <binding.http uri="wsgi"/> </service> </component> <component name="client-test"> - <t:implementation.python script="client-test.py"/> + <implementation.python script="client-test.py"/> <service name="client"> - <t:binding.http uri="client"/> + <binding.http uri="client"/> </service> <reference name="ref" target="wsgi-test"> - <t:binding.http/> + <binding.http/> </reference> </component> |