summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/interface-java-jaxws/src/test/resources
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2008-12-04 06:05:21 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2008-12-04 06:05:21 +0000
commit8d4370a11f701a919715e7b9df1f69ca71574c3a (patch)
treef9e2e2f653d61b0fc38f2cb3b4e43f0ea37c228f /java/sca/modules/interface-java-jaxws/src/test/resources
parentcc1d347487ed1badb0eb3da1201acfad71714f81 (diff)
Refactor the tuscany-core module to move private classes out of the SPI packages
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723218 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/interface-java-jaxws/src/test/resources')
-rw-r--r--java/sca/modules/interface-java-jaxws/src/test/resources/wsdl/StockExceptionTest.wsdl24
1 files changed, 23 insertions, 1 deletions
diff --git a/java/sca/modules/interface-java-jaxws/src/test/resources/wsdl/StockExceptionTest.wsdl b/java/sca/modules/interface-java-jaxws/src/test/resources/wsdl/StockExceptionTest.wsdl
index 4fee9e9756..e92409bfdb 100644
--- a/java/sca/modules/interface-java-jaxws/src/test/resources/wsdl/StockExceptionTest.wsdl
+++ b/java/sca/modules/interface-java-jaxws/src/test/resources/wsdl/StockExceptionTest.wsdl
@@ -23,7 +23,8 @@
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="StockExceptionTest">
<wsdl:types>
<schema targetNamespace="http://www.example.com/stock" xmlns="http://www.w3.org/2001/XMLSchema"
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0">
<complexType name="StockOffer">
<sequence>
<element name="symbol" minOccurs="1" type="xsd:string" />
@@ -61,6 +62,27 @@
<element name="MarketClosedFault" type="xsd:int" />
<element name="TestNotDeclaredAtSourceFault" type="xsd:string" />
+
+ <element name="anyElement">
+ <complexType>
+ <sequence>
+ <element name="first" type="anyType">
+ <annotation>
+ <appinfo>
+ <jaxb:dom />
+ </appinfo>
+ </annotation>
+ </element>
+ <any maxOccurs="unbounded" processContents="skip">
+ <annotation>
+ <appinfo>
+ <jaxb:dom />
+ </appinfo>
+ </annotation>
+ </any>
+ </sequence>
+ </complexType>
+ </element>
</schema>
</wsdl:types>