-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature (xml key): allow in first level for rpc
- Loading branch information
1 parent
4660fa2
commit d7db95e
Showing
8 changed files
with
126 additions
and
9 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
21 changes: 21 additions & 0 deletions
21
...uest-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/common.xsd
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:tns="http://www.Dummy.com/Common/Types" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.Dummy.com/Common/Types" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:complexType name="DummyResult"> | ||
<xs:sequence> | ||
<xs:element name="DummyList" type="tns:DummyList" minOccurs="0"/> | ||
</xs:sequence> | ||
<xs:attribute name="code" type="xs:string" use="optional"/> | ||
</xs:complexType> | ||
<xs:complexType name="Dummy"> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="language" type="xs:language" use="optional"/> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
<xs:complexType name="DummyList"> | ||
<xs:sequence> | ||
<xs:element name="DummyElement" type="tns:Dummy" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:schema> |
20 changes: 20 additions & 0 deletions
20
...equest-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/name.xsd
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:tns="http://www.Dummy.com/Name/Types" xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="http://www.Dummy.com/Name/Types" elementFormDefault="qualified" | ||
attributeFormDefault="unqualified" xmlns:c="http://www.Dummy.com/Common/Types"> | ||
<xs:import namespace="common.xsd" schemaLocation="common.xsd"/> | ||
<xs:element name="DummyRequest"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="DummyXML" type="xs:string" minOccurs="0"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="DummyResponse"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="DummyResult" type="c:DummyResult"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
3 changes: 3 additions & 0 deletions
3
...st-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/request.json
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,3 @@ | ||
{ | ||
"$xml": "<tns:DummyXML><myObject attr='myAttr'></myObject></tns:DummyXML>" | ||
} |
1 change: 1 addition & 0 deletions
1
...est-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/request.xml
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 @@ | ||
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://www.Dummy.com" xmlns:n="http://www.Dummy.com/Name/Types"><soap:Body><tns:Dummy><tns:DummyXML><myObject attr='myAttr'></myObject></tns:DummyXML></tns:Dummy></soap:Body></soap:Envelope> |
12 changes: 12 additions & 0 deletions
12
...t-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/response.json
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 @@ | ||
{ | ||
"DummyResult": { | ||
"DummyList": { | ||
"DummyElement": { | ||
"attributes": { | ||
"language": "en-US" | ||
}, | ||
"$value": "Dummy Element Entry" | ||
} | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...st-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/response.xml
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,14 @@ | ||
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns="http://www.Dummy.com" xmlns:n="http://www.Dummy.com/Name/Types"> | ||
<soap:Header></soap:Header> | ||
<soap:Body> | ||
<n:DummyResponse> | ||
<n:DummyResult> | ||
<c:DummyList xmlns:c="http://www.Dummy.com/Common/Types"> | ||
<c:DummyElement language="en-US"> | ||
Dummy Element Entry | ||
</c:DummyElement> | ||
</c:DummyList> | ||
</n:DummyResult> | ||
</n:DummyResponse> | ||
</soap:Body> | ||
</soap:Envelope> |
42 changes: 42 additions & 0 deletions
42
...quest-response-samples/Dummy__should_use_defined_xml_key_in_first_level_for_rpc/soap.wsdl
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,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:tns="http://www.Dummy.com" xmlns:n="http://www.Dummy.com/Name/Types" xmlns:ns="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://www.Dummy.com"> | ||
<wsdl:types> | ||
<xs:schema> | ||
<xs:import namespace="http://www.Dummy.com/Common/Types" schemaLocation="common.xsd"/> | ||
<xs:import namespace="http://www.Dummy.com/Name/Types" schemaLocation="name.xsd"/> | ||
</xs:schema> | ||
</wsdl:types> | ||
<wsdl:message name="DummyRequest"> | ||
<wsdl:part name="DummyRequest" element="n:DummyRequest"/> | ||
</wsdl:message> | ||
<wsdl:message name="DummyResponse"> | ||
<wsdl:part name="DummyResponse" element="n:DummyResponse"/> | ||
</wsdl:message> | ||
<wsdl:portType name="DummyPortType"> | ||
<wsdl:operation name="Dummy"> | ||
<soap12:operation soapAction="" style="rpc"/> | ||
<wsdl:input message="tns:DummyRequest"/> | ||
<wsdl:output message="tns:DummyResponse"/> | ||
</wsdl:operation> | ||
</wsdl:portType> | ||
<wsdl:binding name="DummyBinding" type="tns:DummyPortType"> | ||
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> | ||
<wsdl:operation name="Dummy"> | ||
<soap:operation soapAction="http://www.Dummy.com#Dummy" style="rpc"/> | ||
<wsdl:input> | ||
<soap:body use="literal"/> | ||
</wsdl:input> | ||
<wsdl:output> | ||
<soap:body use="literal"/> | ||
</wsdl:output> | ||
</wsdl:operation> | ||
</wsdl:binding> | ||
<wsdl:service name="DummyService"> | ||
<wsdl:port name="DummyPortType" binding="tns:DummyBinding"> | ||
<soap:address location="http://www.Dummy.com/"/> | ||
</wsdl:port> | ||
</wsdl:service> | ||
</wsdl:definitions> |