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
This commit is contained in:
jsdelfino 2011-05-23 02:29:02 +00:00
commit 874620b24e
39 changed files with 240 additions and 275 deletions

View file

@ -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>