Note that these results indicate a databinding implementation is able to consume an example XML Schema wrapped in WSDL and later echo SOAP messages containing a valid instance of the XML document in the body. It is therefore possible for an implementation to simply echo the input XML, giving the impression that the XML Schema has been honoured and used to generate an internal data model presenting the input data with fidelity.
Additional tests, more dependent on the structure would be required to prove correctness, however, the Working Group believes that these tests provide a good indication of the interoperability of XML Schema based databinding tools.
Number of passed tests: 283
Total number of tests: 317
All tests: 333
| 89% | 11% |
Passed and failed percentages
| 84% | 10% | 6% |
Total: passed 283 - failed 34 - skipped 16 - total 333
| 89% | 1% | 10% |
Basic: passed 92 - failed 2 - skipped 9 - total 103
| 82% | 14% | 4% |
Advanced: passed 179 - failed 32 - skipped 5 - total 216
| 85% | 15% |
Pending: passed 12 - failed 0 - skipped 2 - total 14
In the report below:
| Test Name | Test Instance | Test Result | Request |
|---|---|---|---|
| Response | |||
| AnySimpleTypeElement | AnySimpleTypeElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoAnySimpleTypeElement>
<ex:anySimpleTypeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoAnySimpleTypeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoAnySimpleTypeElement>
<ns1:anySimpleTypeElement/>
</ns1:echoAnySimpleTypeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| AnySimpleTypeElement | AnySimpleTypeElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoAnySimpleTypeElement>
<ex:anySimpleTypeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">anySimpleTypeValue</ex:anySimpleTypeElement>
</ex:echoAnySimpleTypeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoAnySimpleTypeElement>
<ns1:anySimpleTypeElement>anySimpleTypeValue</ns1:anySimpleTypeElement>
</ns1:echoAnySimpleTypeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| AnyTypeElement | AnyTypeElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoAnyTypeElement>
<ex:anyTypeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoAnyTypeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoAnyTypeElement>
<ns1:anyTypeElement/>
</ns1:echoAnyTypeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| AnyTypeElement | AnyTypeElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoAnyTypeElement>
<ex:anyTypeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">
<foo>
<bar>cheese</bar>
</foo>
</ex:anyTypeElement>
</ex:echoAnyTypeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoAnyTypeElement>
<ns1:anyTypeElement>
<foo>
<bar>cheese</bar>
</foo>
</ns1:anyTypeElement>
</ns1:echoAnyTypeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DocumentationElement | DocumentationElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDocumentationElement>
<ex:documentationElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">hello world</ex:documentationElement>
</ex:echoDocumentationElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDocumentationElement>
<ns1:documentationElement>hello world</ns1:documentationElement>
</ns1:echoDocumentationElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| IdentifierName | IdentifierName02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoIdentifierName>
<ex:identifierName
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">Hello</ex:identifierName>
</ex:echoIdentifierName>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoIdentifierName>
<ns1:identifierName>Hello</ns1:identifierName>
</ns1:echoIdentifierName>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| NonIdentifierName | NonIdentifierName02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoNonIdentifierName>
<ex:non-Identifier-Name
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">Hello</ex:non-Identifier-Name>
</ex:echoNonIdentifierName>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoNonIdentifierName>
<ns1:non-Identifier-Name>Hello</ns1:non-Identifier-Name>
</ns1:echoNonIdentifierName>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| StringElement | StringElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoStringElement>
<ex:stringElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoStringElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoStringElement>
<ns1:stringElement/>
</ns1:echoStringElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| StringElement | StringElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoStringElement>
<ex:stringElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">Hello cruel world.</ex:stringElement>
</ex:echoStringElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoStringElement>
<ns1:stringElement>Hello cruel world.</ns1:stringElement>
</ns1:echoStringElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| StringAttribute | StringAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoStringAttribute>
<ex:stringAttribute string="hello"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoStringAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoStringAttribute>
<ns1:stringAttribute string="hello"/>
</ns1:echoStringAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| StringAttribute | StringAttribute02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoStringAttribute>
<ex:stringAttribute string="0123456789"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoStringAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoStringAttribute>
<ns1:stringAttribute string="0123456789"/>
</ns1:echoStringAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanElement | BooleanElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanElement>
<ex:booleanElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">false</ex:booleanElement>
</ex:echoBooleanElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanElement>
<ns1:booleanElement>false</ns1:booleanElement>
</ns1:echoBooleanElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanElement | BooleanElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanElement>
<ex:booleanElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">true</ex:booleanElement>
</ex:echoBooleanElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanElement>
<ns1:booleanElement>true</ns1:booleanElement>
</ns1:echoBooleanElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanElement | BooleanElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanElement>
<ex:booleanElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">0</ex:booleanElement>
</ex:echoBooleanElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanElement>
<ns1:booleanElement>false</ns1:booleanElement>
</ns1:echoBooleanElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanElement | BooleanElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanElement>
<ex:booleanElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:booleanElement>
</ex:echoBooleanElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanElement>
<ns1:booleanElement>true</ns1:booleanElement>
</ns1:echoBooleanElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanAttribute | BooleanAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanAttribute>
<ex:booleanAttribute boolean="true"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoBooleanAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanAttribute>
<ns1:booleanAttribute boolean="true"/>
</ns1:echoBooleanAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| BooleanAttribute | BooleanAttribute02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoBooleanAttribute>
<ex:booleanAttribute boolean="0"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoBooleanAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoBooleanAttribute>
<ns1:booleanAttribute boolean="false"/>
</ns1:echoBooleanAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">0</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>0</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1.23</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>-1.23</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12678967.543233</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>12678967.543233</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">+1000000.00</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>+1000000.00</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement05 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">+100000000000000000000000000000000000000000000.00</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>+100000000000000000000000000000000000000000000.00</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement06 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">210</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>210</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalElement | DecimalElement07 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalElement>
<ex:decimalElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">210.00</ex:decimalElement>
</ex:echoDecimalElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalElement>
<ns1:decimalElement>210.00</ns1:decimalElement>
</ns1:echoDecimalElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DecimalAttribute | DecimalAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDecimalAttribute>
<ex:decimalAttribute
decimal="+10000000999829292922093443563.32423442"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoDecimalAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDecimalAttribute>
<ns1:decimalAttribute decimal="+10000000999829292922093443563.32423442"/>
</ns1:echoDecimalAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatElement | FloatElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatElement>
<ex:floatElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1E4</ex:floatElement>
</ex:echoFloatElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatElement>
<ns1:floatElement>-10000</ns1:floatElement>
</ns1:echoFloatElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatElement | FloatElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatElement>
<ex:floatElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1267.43233E12</ex:floatElement>
</ex:echoFloatElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatElement>
<ns1:floatElement>1.26743233E+15</ns1:floatElement>
</ns1:echoFloatElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatElement | FloatElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatElement>
<ex:floatElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12.78e-2</ex:floatElement>
</ex:echoFloatElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatElement>
<ns1:floatElement>0.1278</ns1:floatElement>
</ns1:echoFloatElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatElement | FloatElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatElement>
<ex:floatElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12</ex:floatElement>
</ex:echoFloatElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatElement>
<ns1:floatElement>12</ns1:floatElement>
</ns1:echoFloatElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatElement | FloatElement05 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatElement>
<ex:floatElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">INF</ex:floatElement>
</ex:echoFloatElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatElement>
<ns1:floatElement>INF</ns1:floatElement>
</ns1:echoFloatElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| FloatAttribute | FloatAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoFloatAttribute>
<ex:floatAttribute float="-7446.445E5"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoFloatAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoFloatAttribute>
<ns1:floatAttribute float="-744644500"/>
</ns1:echoFloatAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleElement | DoubleElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleElement>
<ex:doubleElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1E4</ex:doubleElement>
</ex:echoDoubleElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleElement>
<ns1:doubleElement>-10000</ns1:doubleElement>
</ns1:echoDoubleElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleElement | DoubleElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleElement>
<ex:doubleElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1267.432233E12</ex:doubleElement>
</ex:echoDoubleElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleElement>
<ns1:doubleElement>1.267432233E+15</ns1:doubleElement>
</ns1:echoDoubleElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleElement | DoubleElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleElement>
<ex:doubleElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12.78e-2</ex:doubleElement>
</ex:echoDoubleElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleElement>
<ns1:doubleElement>0.1278</ns1:doubleElement>
</ns1:echoDoubleElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleElement | DoubleElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleElement>
<ex:doubleElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12</ex:doubleElement>
</ex:echoDoubleElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleElement>
<ns1:doubleElement>12</ns1:doubleElement>
</ns1:echoDoubleElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleElement | DoubleElement05 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleElement>
<ex:doubleElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">INF</ex:doubleElement>
</ex:echoDoubleElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleElement>
<ns1:doubleElement>INF</ns1:doubleElement>
</ns1:echoDoubleElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DoubleAttribute | DoubleAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDoubleAttribute>
<ex:doubleAttribute double="12.334"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoDoubleAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDoubleAttribute>
<ns1:doubleAttribute double="12.334"/>
</ns1:echoDoubleAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DurationElement | DurationElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDurationElement>
<ex:durationElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">P1Y2M3DT10H30M</ex:durationElement>
</ex:echoDurationElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDurationElement>
<ns1:durationElement>P1Y2M3DT10H30M</ns1:durationElement>
</ns1:echoDurationElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DurationElement | DurationElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDurationElement>
<ex:durationElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-P1347M</ex:durationElement>
</ex:echoDurationElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDurationElement>
<ns1:durationElement>-P1347M</ns1:durationElement>
</ns1:echoDurationElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DurationElement | DurationElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDurationElement>
<ex:durationElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">P1347Y</ex:durationElement>
</ex:echoDurationElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDurationElement>
<ns1:durationElement>P1347Y</ns1:durationElement>
</ns1:echoDurationElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DurationElement | DurationElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDurationElement>
<ex:durationElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">P1M</ex:durationElement>
</ex:echoDurationElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDurationElement>
<ns1:durationElement>P1M</ns1:durationElement>
</ns1:echoDurationElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DurationAttribute | DurationAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDurationAttribute>
<ex:durationAttribute duration="P1M"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoDurationAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDurationAttribute>
<ns1:durationAttribute duration="P1M"/>
</ns1:echoDurationAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DateTimeElement | DateTimeElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDateTimeElement>
<ex:dateTimeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1999-05-31T13:20:00-05:00</ex:dateTimeElement>
</ex:echoDateTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDateTimeElement>
<ns1:dateTimeElement>1999-05-31T13:20:00-05:00</ns1:dateTimeElement>
</ns1:echoDateTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DateTimeElement | DateTimeElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDateTimeElement>
<ex:dateTimeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2000-03-04T23:00:00+03:00</ex:dateTimeElement>
</ex:echoDateTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDateTimeElement>
<ns1:dateTimeElement>2000-03-04T23:00:00+03:00</ns1:dateTimeElement>
</ns1:echoDateTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DateTimeAttribute | DateTimeAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDateTimeAttribute>
<ex:dateTimeAttribute dateTime="2006-10-26T04:51:00+03:00"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoDateTimeAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDateTimeAttribute>
<ns1:dateTimeAttribute dateTime="2006-10-26T04:51:00+03:00"/>
</ns1:echoDateTimeAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| TimeElement | TimeElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoTimeElement>
<ex:timeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">00:00:00</ex:timeElement>
</ex:echoTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoTimeElement>
<ns1:timeElement>00:00:00</ns1:timeElement>
</ns1:echoTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| TimeElement | TimeElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoTimeElement>
<ex:timeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12:00:01</ex:timeElement>
</ex:echoTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoTimeElement>
<ns1:timeElement>12:00:01</ns1:timeElement>
</ns1:echoTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| TimeElement | TimeElement03 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoTimeElement>
<ex:timeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">23:59:34</ex:timeElement>
</ex:echoTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoTimeElement>
<ns1:timeElement>23:59:34</ns1:timeElement>
</ns1:echoTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| TimeElement | TimeElement04 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoTimeElement>
<ex:timeElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">13:21:03Z</ex:timeElement>
</ex:echoTimeElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoTimeElement>
<ns1:timeElement>13:21:03Z</ns1:timeElement>
</ns1:echoTimeElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| TimeAttribute | TimeAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoTimeAttribute>
<ex:timeAttribute time="00:01:58Z"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoTimeAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoTimeAttribute>
<ns1:timeAttribute time="00:01:58Z"/>
</ns1:echoTimeAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DateElement | DateElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDateElement>
<ex:dateElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1999-05-31</ex:dateElement>
</ex:echoDateElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDateElement>
<ns1:dateElement>1999-05-31</ns1:dateElement>
</ns1:echoDateElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| DateAttribute | DateAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoDateAttribute>
<ex:dateAttribute date="2006-05-30"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoDateAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoDateAttribute>
<ns1:dateAttribute date="2006-05-30"/>
</ns1:echoDateAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GYearMonthElement | GYearMonthElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGYearMonthElement>
<ex:gYearMonthElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1999-05</ex:gYearMonthElement>
</ex:echoGYearMonthElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGYearMonthElement>
<ns1:gYearMonthElement>1999-05</ns1:gYearMonthElement>
</ns1:echoGYearMonthElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GYearMonthAttribute | GYearMonthAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGYearMonthAttribute>
<ex:gYearMonthAttribute gYearMonth="2006-09"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoGYearMonthAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGYearMonthAttribute>
<ns1:gYearMonthAttribute gYearMonth="2006-09"/>
</ns1:echoGYearMonthAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GYearElement | GYearElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGYearElement>
<ex:gYearElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1999</ex:gYearElement>
</ex:echoGYearElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGYearElement>
<ns1:gYearElement>1999</ns1:gYearElement>
</ns1:echoGYearElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GYearAttribute | GYearAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGYearAttribute>
<ex:gYearAttribute gYear="2038"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoGYearAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGYearAttribute>
<ns1:gYearAttribute gYear="2038"/>
</ns1:echoGYearAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GMonthDayElement | GMonthDayElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGMonthDayElement>
<ex:gMonthDayElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">--12-31</ex:gMonthDayElement>
</ex:echoGMonthDayElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGMonthDayElement>
<ns1:gMonthDayElement>--12-31</ns1:gMonthDayElement>
</ns1:echoGMonthDayElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GMonthDayElement | GMonthDayElement02 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGMonthDayElement>
<ex:gMonthDayElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">--12-31Z</ex:gMonthDayElement>
</ex:echoGMonthDayElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGMonthDayElement>
<ns1:gMonthDayElement>--12-31Z</ns1:gMonthDayElement>
</ns1:echoGMonthDayElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GMonthDayAttribute | GMonthDayAttribute01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGMonthDayAttribute>
<ex:gMonthDayAttribute gMonthDay="--09-28Z"
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/>
</ex:echoGMonthDayAttribute>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGMonthDayAttribute>
<ns1:gMonthDayAttribute gMonthDay="--09-28Z"/>
</ns1:echoGMonthDayAttribute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GDayElement | GDayElement01 | passed |
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ex="http://www.w3.org/2002/ws/databinding/examples/6/09/"
xmlns:p="http://www.w3.org/2002/ws/databinding/patterns/6/09/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<env:Header/>
<env:Body>
<ex:echoGDayElement>
<ex:gDayElement
xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">---05</ex:gDayElement>
</ex:echoGDayElement>
</env:Body>
</env:Envelope>
|
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3.org/2002/ws/databinding/examples/6/09/">
<SOAP-ENV:Body>
<ns1:echoGDayElement>
<ns1:gDayElement>---05</ns1:gDayElement>
</ns1:echoGDayElement>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|
|||
| GDayAttribute |