diff options
Diffstat (limited to 'sca-cpp/trunk/modules/wsgi/domain-test.composite')
-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> |