-
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.
Add native support for short deserialization
- Loading branch information
1 parent
1c76a87
commit 137d56d
Showing
8 changed files
with
130 additions
and
1 deletion.
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
28 changes: 28 additions & 0 deletions
28
test/request-response-samples/Dummy__should_deserialize_basic_types/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,28 @@ | ||
<?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:complexType name="DummyFilter"> | ||
<xs:sequence> | ||
<xs:element name="DummyIntFilter" type="xs:string" minOccurs="0"/> | ||
<xs:element name="DummyStringFilter" type="xs:string" minOccurs="0"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:schema> | ||
|
25 changes: 25 additions & 0 deletions
25
test/request-response-samples/Dummy__should_deserialize_basic_types/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,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.Dummy.com/Name/Types" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:element name="DummyRequest"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="DummyField1" type="xs:string" minOccurs="0"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="DummyResponse"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="boolean" nillable="true" type="xs:boolean"/> | ||
<xs:element name="byte" nillable="true" type="xs:byte"/> | ||
<xs:element name="dateTime" nillable="true" type="xs:dateTime"/> | ||
<xs:element name="decimal" nillable="true" type="xs:decimal"/> | ||
<xs:element name="double" nillable="true" type="xs:double"/> | ||
<xs:element name="float" nillable="true" type="xs:float"/> | ||
<xs:element name="int" nillable="true" type="xs:int"/> | ||
<xs:element name="short" nillable="true" type="xs:short"/> | ||
<xs:element name="string" nillable="true" type="xs:string"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
3 changes: 3 additions & 0 deletions
3
test/request-response-samples/Dummy__should_deserialize_basic_types/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 @@ | ||
{ | ||
"DummyField1": "foo & bar" | ||
} |
8 changes: 8 additions & 0 deletions
8
test/request-response-samples/Dummy__should_deserialize_basic_types/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,8 @@ | ||
<?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> | ||
<n:DummyRequest xmlns:n="http://www.Dummy.com/Name/Types" xmlns="http://www.Dummy.com/Name/Types"> | ||
<n:DummyField1>foo & bar</n:DummyField1> | ||
</n:DummyRequest> | ||
</soap:Body> | ||
</soap:Envelope> |
9 changes: 9 additions & 0 deletions
9
test/request-response-samples/Dummy__should_deserialize_basic_types/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,9 @@ | ||
{ | ||
"boolean": true, | ||
"decimal": 1.1, | ||
"double": 1.21, | ||
"float": 1.321, | ||
"int": 1, | ||
"short": 3, | ||
"string": "foo" | ||
} |
14 changes: 14 additions & 0 deletions
14
test/request-response-samples/Dummy__should_deserialize_basic_types/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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<soap:Header></soap:Header> | ||
<soap:Body> | ||
<n:DummyResponse> | ||
<n:boolean>true</n:boolean> | ||
<n:decimal>1.1</n:decimal> | ||
<n:double>1.21</n:double> | ||
<n:float>1.321</n:float> | ||
<n:int>1</n:int> | ||
<n:short>3</n:short> | ||
<n:string>foo</n:string> | ||
</n:DummyResponse> | ||
</soap:Body> | ||
</soap:Envelope> |
42 changes: 42 additions & 0 deletions
42
test/request-response-samples/Dummy__should_deserialize_basic_types/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"> | ||
<wsdl:input message="tns:DummyRequest"/> | ||
<wsdl:output message="tns:DummyResponse"/> | ||
</wsdl:operation> | ||
</wsdl:portType> | ||
<wsdl:binding name="DummyBinding" type="tns:DummyPortType"> | ||
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> | ||
<wsdl:operation name="Dummy"> | ||
<soap:operation soapAction="http://www.Dummy.com#Dummy" style="document"/> | ||
<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> | ||
|