summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-22 15:35:58 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-22 15:35:58 +0000
commit48209b6ab2d93ec394128ff1a9f1312a8f06e602 (patch)
tree7fd827d3505cd3a8b46b3cb30cd9754d407550cb /sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
parent8b024d5fdb70835617c1545019417fceec35f5c1 (diff)
Update the bpel sample bpel script and wsdl to match the bpel itest, and comment out the message processing and hard code the response while its not working
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@926137 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl')
-rw-r--r--sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl24
1 files changed, 18 insertions, 6 deletions
diff --git a/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl b/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
index 46cf381577..cf966264ef 100644
--- a/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
+++ b/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.wsdl
@@ -18,10 +18,10 @@
~ under the License.
-->
-<wsdl:definitions
- targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+<wsdl:definitions name="helloworld"
+ targetNamespace="http://testing/"
xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:tns="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ xmlns:tns="http://testing/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -31,7 +31,7 @@
<wsdl:types>
<schema elementFormDefault="qualified"
- targetNamespace="http://tuscany.apache.org/implementation/bpel/example/helloworld.wsdl"
+ targetNamespace="http://testing/"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="hello">
@@ -40,7 +40,15 @@
<element name="message" type="xsd:string"/>
</sequence>
</complexType>
- </element>
+ </element>
+
+ <element name="helloResponse">
+ <complexType>
+ <sequence>
+ <element name="messageResponse" type="xsd:string"/>
+ </sequence>
+ </complexType>
+ </element>
</schema>
</wsdl:types>
@@ -48,10 +56,14 @@
<wsdl:part element="tns:hello" name="TestPart"/>
</wsdl:message>
+ <wsdl:message name="HelloMessageResponse">
+ <wsdl:part element="tns:helloResponse" name="TestResponse"/>
+ </wsdl:message>
+
<wsdl:portType name="HelloPortType">
<wsdl:operation name="hello">
<wsdl:input message="tns:HelloMessage" name="TestIn"/>
- <wsdl:output message="tns:HelloMessage" name="TestOut"/>
+ <wsdl:output message="tns:HelloMessageResponse" name="TestOut"/>
</wsdl:operation>
</wsdl:portType>