summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/samples/relay-python/relay.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/samples/relay-python/relay.composite31
1 files changed, 15 insertions, 16 deletions
diff --git a/sca-cpp/trunk/samples/relay-python/relay.composite b/sca-cpp/trunk/samples/relay-python/relay.composite
index 7f7302955e..470ac88da1 100644
--- a/sca-cpp/trunk/samples/relay-python/relay.composite
+++ b/sca-cpp/trunk/samples/relay-python/relay.composite
@@ -18,57 +18,56 @@
* 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://relay"
name="relay">
<component name="JSONTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="jsontwit"/>
+ <binding.http uri="jsontwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jsdelfino"/>
</reference>
</component>
<component name="XMLTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="xmltwit"/>
+ <binding.http uri="xmltwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=jsdelfino"/>
</reference>
</component>
<component name="RSSTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="rsstwit"/>
+ <binding.http uri="rsstwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=jsdelfino"/>
</reference>
</component>
<component name="HTML">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="html"/>
+ <binding.http uri="html"/>
</service>
<reference name="target">
- <t:binding.http uri="http://people.apache.org/~jsdelfino/"/>
+ <binding.http uri="http://people.apache.org/~jsdelfino/"/>
</reference>
</component>
<component name="JSONFB">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="jsonfb"/>
+ <binding.http uri="jsonfb"/>
</service>
<reference name="target">
- <t:binding.http uri="https://graph.facebook.com/100001053301307"/>
+ <binding.http uri="https://graph.facebook.com/100001053301307"/>
</reference>
</component>