-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0"?> | ||
<definitions name="InteropTest" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
targetNamespace="http://soapinterop.org/"> | ||
<types> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/xsd"> | ||
<xsd:import schemaLocation="xsd/store1.xsd" namespace="http://soapinterop.org/store1" /> | ||
<xsd:import schemaLocation="xsd/store1-extras.xsd" namespace="http://soapinterop.org/store1" /> | ||
</schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0"?> | ||
<definitions | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:tns="http://soapinterop.org/" | ||
targetNamespace="http://soapinterop.org/" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<types> | ||
<xsd:schema targetNamespace="http://soapinterop.org/store1"> | ||
<xsd:redefine schemaLocation="xsd/store1.xsd"> | ||
<xsd:complexType name="Store"> | ||
<xsd:complexContent> | ||
<xsd:extension base="Store"> | ||
<xsd:sequence> | ||
<xsd:element name="extra" minOccurs="0"/> | ||
</xsd:sequence> | ||
</xsd:extension> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
</xsd:redefine> | ||
</xsd:schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0"?> | ||
<definitions name="InteropTest" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
targetNamespace="http://soapinterop.org/"> | ||
<types> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/xsd"> | ||
<xsd:import namespace="http://soapinterop.org/store1" /> | ||
<xsd:import namespace="http://soapinterop.org/store1" /> | ||
</schema> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/store1"> | ||
<xsd:complexType name="Store"> | ||
<xsd:sequence> | ||
<element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
<xsd:complexType name="StoreInfo"> | ||
<xsd:sequence> | ||
<element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0"?> | ||
<definitions | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:tns="http://soapinterop.org/" | ||
targetNamespace="http://soapinterop.org/" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<types> | ||
<xsd:schema targetNamespace="http://soapinterop.org/store1"> | ||
<xsd:complexType name="Store"> | ||
<xsd:sequence> | ||
<xsd:element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
<xsd:complexType name="Store"> | ||
<xsd:complexContent> | ||
<xsd:extension base="Store"> | ||
<xsd:sequence> | ||
<xsd:element name="extra" minOccurs="0"/> | ||
</xsd:sequence> | ||
</xsd:extension> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<definitions | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:tns="http://soapinterop.org/" | ||
targetNamespace="http://soapinterop.org/" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<types> | ||
<xsd:schema targetNamespace="http://soapinterop.org/store1"> | ||
|
||
</xsd:schema> | ||
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<xsd:complexType name="Store"> | ||
<xsd:sequence> | ||
<element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</xsd:schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0"?> | ||
<definitions | ||
xmlns="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:tns="http://soapinterop.org/" | ||
targetNamespace="http://soapinterop.org/" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<types> | ||
<xsd:schema targetNamespace="http://soapinterop.org/store1"> | ||
<xsd:include schemaLocation="xsd/tnsless.xsd" /> | ||
</xsd:schema> | ||
</types> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/store1"> | ||
<xsd:complexType name="StoreInfo"> | ||
<xsd:sequence> | ||
<element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<xsd:complexType name="Store"> | ||
<xsd:sequence> | ||
<element minOccurs="1" maxOccurs="1" name="Attribute1" type="string"/> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</schema> |