summaryrefslogtreecommitdiffstats
path: root/java/sca/itest
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-06-12 06:41:48 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-06-12 06:41:48 +0000
commit7a573b887013b8ffc9e537ae074fb84a1d4dce3a (patch)
tree0bd7419d6329afccc303ab2888365e6224520175 /java/sca/itest
parent18c5e95cd76e5a845c25c5f1431fe6a43fdada41 (diff)
Changing helloworld.wsdl to avoid holder pattern when using wsimport
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@783999 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest')
-rw-r--r--java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.wsdl16
1 files changed, 14 insertions, 2 deletions
diff --git a/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.wsdl b/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.wsdl
index 610bda3cc4..52c8b5b45f 100644
--- a/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.wsdl
+++ b/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.wsdl
@@ -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="HelloResponse">
+ <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:HelloResponse" name="TestOut"/>
</wsdl:operation>
</wsdl:portType>