Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- ===================document/literal wrapped =================== -->
- <wsdl:types>
- <xs:schema elementFormDefault="unqualified" targetNamespace="http://ep.ws.jboss/"
- version="1.0" xmlns:tns="http://ep.ws.jboss/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="sayHello" type="tns:sayHello" />
- <xs:element name="sayHelloResponse" type="tns:sayHelloResponse" />
- <xs:complexType name="sayHello">
- <xs:sequence>
- <xs:element minOccurs="0" name="arg0" type="tns:person" />
- <xs:element minOccurs="0" name="arg1"
- type="tns:soapMessageAttachments" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="person">
- <xs:sequence>
- <xs:element minOccurs="0" name="firstName" type="xs:string" />
- <xs:element minOccurs="0" name="lastName" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="soapMessageAttachments">
- <xs:sequence>
- <xs:element minOccurs="0" name="handler" type="xs:base64Binary" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="sayHelloResponse">
- <xs:sequence>
- <xs:element minOccurs="0" name="return" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
- </wsdl:types>
- <!-- ===================document/literal bare=================== -->
- <wsdl:types>
- <xs:schema attributeFormDefault="unqualified"
- elementFormDefault="unqualified" targetNamespace="http://ep.ws.jboss/"
- xmlns="http://ep.ws.jboss/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:complexType name="person">
- <xs:sequence>
- <xs:element minOccurs="0" name="firstName" type="xs:string" />
- <xs:element minOccurs="0" name="lastName" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:element name="sayHello" nillable="true" type="person" />
- <xs:element name="sayHelloResponse" nillable="true" type="xs:string" />
- </xs:schema>
- </wsdl:types>
- <!-- ===================rpc/literal wrapped=================== -->
- <wsdl:types>
- <xs:schema targetNamespace="http://ep.ws.jboss/" version="1.0"
- xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:complexType name="person">
- <xs:sequence>
- <xs:element minOccurs="0" name="firstName" type="xs:string" />
- <xs:element minOccurs="0" name="lastName" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
- </wsdl:types>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement