diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-07 14:01:11 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-07 14:01:11 +0000 |
commit | 0c9f54c1d14a280a6d6eb5876e7cd75ba4b5ba5d (patch) | |
tree | 7a093a74fd72a309a995090d8531d97e2640ed46 /java | |
parent | 4b64a12ea227476997adb050ef3f1dc6e661dedd (diff) |
Fix the jmsobject itest wsdl and add the itest to the build as it works now
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@822743 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
3 files changed, 15 insertions, 3 deletions
diff --git a/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.composite b/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.composite index 320deb8c26..e037aa74d9 100644 --- a/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.composite +++ b/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.composite @@ -21,7 +21,7 @@ targetNamespace="http://itest"
xmlns:hw="http://helloworld"
xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
- name="jmsobject">
+ name="helloworld">
<component name="HelloWorldReferenceComponent">
<implementation.java class="org.apache.tuscany.sca.binding.jms.format.jmsobject.helloworld.HelloWorldReferenceImpl" />
diff --git a/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.wsdl b/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.wsdl index 66b011b771..4625f46578 100644 --- a/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.wsdl +++ b/java/sca/itest/jms/format-jmsobject/src/main/resources/jmsobject/helloworld.wsdl @@ -175,6 +175,9 @@ </xs:sequence>
</xs:complexType>
</xs:element>
+
+ <xs:element name="CheckedException" type="xs:string" />
+
</xs:schema>
</wsdl:types>
<wsdl:message name="getObjectGreetingResponse">
@@ -236,6 +239,9 @@ <wsdl:part name="getArrayGreetingResponse" element="tns:getArrayGreetingResponse">
</wsdl:part>
</wsdl:message>
+ <wsdl:message name="CheckedException">
+ <wsdl:part element="tns:CheckedException" name="fault" />
+ </wsdl:message>
<wsdl:portType name="HelloWorldService">
<wsdl:operation name="getPersonGreetings">
<wsdl:input message="tns:getPersonGreetings">
@@ -279,6 +285,13 @@ <wsdl:output message="tns:getObjectArrayGreetingResponse">
</wsdl:output>
</wsdl:operation>
+ <wsdl:operation name="throwChecked">
+ <wsdl:input message="tns:getPersonGreetingsRequest" name="getPersonGreetingsRequest"/>
+ <wsdl:fault message="tns:CheckedException" name="CheckedException"/>
+ </wsdl:operation>
+ <wsdl:operation name="throwUnChecked">
+ <wsdl:input message="tns:getPersonGreetingsRequest" name="getPersonGreetingsRequest"/>
+ </wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HelloWorldServiceBinding" type="tns:HelloWorldService">
<SOAP:binding style="document"
diff --git a/java/sca/itest/jms/pom.xml b/java/sca/itest/jms/pom.xml index fc05e017d1..ad92cd5eec 100644 --- a/java/sca/itest/jms/pom.xml +++ b/java/sca/itest/jms/pom.xml @@ -40,6 +40,7 @@ <module>format-jmsbytesxml</module>
<module>format-jmsdefault</module>
<module>format-jmsmessage</module>
+ <module>format-jmsobject</module>
<module>format-jmstext</module>
<module>format-jmstextxml</module>
<module>format-jmstextxmlinjmsobjectout</module>
@@ -60,8 +61,6 @@ <!-- still to bring up in 2.x
<module>callbacks</module>
<module>definitions</module>
-
- <module>format-jmsobject</module>
-->
</modules>
|