summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 13:06:20 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-07-29 13:06:20 +0000
commit55dcc41e06ba78c87d616427d4658b046d80c277 (patch)
treefa0faee8c5a8518d48a47890add40b35ddb54c77 /sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl
parent9c6e067bb7ffb8c4a1c4cb14bb357e9a034f8b97 (diff)
TUSCANY-3625 - extend the test to demonstrate what happens when a WSDL is provided where an operation name has an upper case first character.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@980434 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl b/sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl
index f3e9083cec..59fce9d849 100644
--- a/sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl
+++ b/sca-java-2.x/trunk/itest/ws/contribution-wsdl-first/src/main/resources/HelloWorldImplService.wsdl
@@ -50,6 +50,12 @@
<message name="getGreetingsComplexResponse">
<part name="parameters" element="tns:getGreetingsComplexResponse"/>
</message>
+ <message name="GetGreetingsCaps">
+ <part name="parameters" element="tns:GetGreetingsCaps"/>
+ </message>
+ <message name="GetGreetingsCapsResponse">
+ <part name="parameters" element="tns:GetGreetingsCapsResponse"/>
+ </message>
<portType name="HelloWorldImpl">
<operation name="getGreetings">
<input message="tns:getGreetings"/>
@@ -64,6 +70,10 @@
<input message="tns:getGreetingsComplex"/>
<output message="tns:getGreetingsComplexResponse"/>
</operation>
+ <operation name="GetGreetingsCaps">
+ <input message="tns:GetGreetingsCaps"/>
+ <output message="tns:GetGreetingsCapsResponse"/>
+ </operation>
</portType>
<binding name="HelloWorldImplPortBinding" type="tns:HelloWorldImpl">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
@@ -97,6 +107,15 @@
<soap:body use="literal"/>
</output>
</operation>
+ <operation name="GetGreetingsCaps">
+ <soap:operation soapAction=""/>
+ <input>
+ <soap:body use="literal"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ </operation>
</binding>
<service name="HelloWorldImplService">
<port name="HelloWorldImplPort" binding="tns:HelloWorldImplPortBinding">