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: 242
Total number of tests: 291
All tests: 333
83% | 17% |
Passed and failed percentages
72% | 14% | 14% |
Total: passed 242 - failed 49 - skipped 42 - total 333
86% | 4% | 10% |
Basic: passed 89 - failed 5 - skipped 9 - total 103
68% | 18% | 14% |
Advanced: passed 149 - failed 41 - skipped 26 - total 216
28% | 21% | 51% |
Pending: passed 4 - failed 3 - skipped 7 - 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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnySimpleTypeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anySimpleTypeElement xsi:nil="true"/> </n1:echoAnySimpleTypeElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnySimpleTypeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anySimpleTypeElement>anySimpleTypeValue</n1:anySimpleTypeElement> </n1:echoAnySimpleTypeElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnyTypeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anyTypeElement xsi:nil="true"/> </n1:echoAnyTypeElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnyTypeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anyTypeElement> <foo> <bar>cheese</bar> </foo> </n1:anyTypeElement> </n1:echoAnyTypeElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDocumentationElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:documentationElement>hello world</n1:documentationElement> </n1:echoDocumentationElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIdentifierName xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:identifierName>Hello</n1:identifierName> </n1:echoIdentifierName> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonIdentifierName xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:non-Identifier-Name>Hello</n1:non-Identifier-Name> </n1:echoNonIdentifierName> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringElement xsi:nil="true"/> </n1:echoStringElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringElement>Hello cruel world.</n1:stringElement> </n1:echoStringElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringAttribute string="hello"/> </n1:echoStringAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringAttribute string="0123456789"/> </n1:echoStringAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanElement>false</n1:booleanElement> </n1:echoBooleanElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanElement>true</n1:booleanElement> </n1:echoBooleanElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanElement>false</n1:booleanElement> </n1:echoBooleanElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanElement>true</n1:booleanElement> </n1:echoBooleanElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanAttribute boolean="true"/> </n1:echoBooleanAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBooleanAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:booleanAttribute boolean="false"/> </n1:echoBooleanAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>0</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>-1.23</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>12678967.543233</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>1000000</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>100000000000000000000000000000000000000000000</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>210</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalElement>210</n1:decimalElement> </n1:echoDecimalElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalAttribute decimal="10000000999829292922093443563.32423442"/> </n1:echoDecimalAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatElement>-10000</n1:floatElement> </n1:echoFloatElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatElement>+1267432330000000</n1:floatElement> </n1:echoFloatElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatElement>+0.1278</n1:floatElement> </n1:echoFloatElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatElement>+12</n1:floatElement> </n1:echoFloatElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatElement>INF</n1:floatElement> </n1:echoFloatElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatAttribute float="-744644500.0"/> </n1:echoFloatAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleElement>-10000</n1:doubleElement> </n1:echoDoubleElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleElement>+1267432233000000</n1:doubleElement> </n1:echoDoubleElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleElement>+0.1278</n1:doubleElement> </n1:echoDoubleElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleElement>+12</n1:doubleElement> </n1:echoDoubleElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleElement>INF</n1:doubleElement> </n1:echoDoubleElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleAttribute double="12.334"/> </n1:echoDoubleAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDurationElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationElement>P1Y2M3DT10H30M</n1:durationElement> </n1:echoDurationElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDurationElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationElement>-P1347M</n1:durationElement> </n1:echoDurationElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDurationElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationElement>P1347Y</n1:durationElement> </n1:echoDurationElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDurationElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationElement>P1M</n1:durationElement> </n1:echoDurationElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDurationAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationAttribute duration="P1M"/> </n1:echoDurationAttribute> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateTimeElement>1999-05-31T13:20:00-05:00</n1:dateTimeElement> </n1:echoDateTimeElement> </env:Body> </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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateTimeElement>2000-03-04T23:00:00+03:00</n1:dateTimeElement> </n1:echoDateTimeElement> </env:Body> </env:Envelope> |
|||
DateTimeAttribute | DateTimeAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateTimeAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateTimeAttribute dateTime="2006-10-26T04:51:00+0300"/> </n1:echoDateTimeAttribute> </env:Body> </env:Envelope> |
|||
TimeElement | TimeElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:timeElement>0001-01-01T00:00:00Z</n1:timeElement> </n1:echoTimeElement> </env:Body> </env:Envelope> |
|||
TimeElement | TimeElement02 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:timeElement>0001-01-01T12:00:01Z</n1:timeElement> </n1:echoTimeElement> </env:Body> </env:Envelope> |
|||
TimeElement | TimeElement03 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:timeElement>0001-01-01T23:59:34Z</n1:timeElement> </n1:echoTimeElement> </env:Body> </env:Envelope> |
|||
TimeElement | TimeElement04 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTimeElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:timeElement>0001-01-01T13:21:03Z</n1:timeElement> </n1:echoTimeElement> </env:Body> </env:Envelope> |
|||
TimeAttribute | TimeAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTimeAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:timeAttribute time="0001-01-01T00:01:58Z"/> </n1:echoTimeAttribute> </env:Body> </env:Envelope> |
|||
DateElement | DateElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateElement>1999-05-31T00:00:00Z</n1:dateElement> </n1:echoDateElement> </env:Body> </env:Envelope> |
|||
DateAttribute | DateAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateAttribute date="2006-05-30T00:00:00Z"/> </n1:echoDateAttribute> </env:Body> </env:Envelope> |
|||
GYearMonthElement | GYearMonthElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGYearMonthElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:gYearMonthElement>1999-05-01T00:00:00Z</n1:gYearMonthElement> </n1:echoGYearMonthElement> </env:Body> </env:Envelope> |
|||
GYearMonthAttribute | GYearMonthAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGYearMonthAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:gYearMonthAttribute gYearMonth="2006-09-01T00:00:00Z"/> </n1:echoGYearMonthAttribute> </env:Body> </env:Envelope> |
|||
GYearElement | GYearElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGYearElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:gYearElement>1999-01-01T00:00:00Z</n1:gYearElement> </n1:echoGYearElement> </env:Body> </env:Envelope> |
|||
GYearAttribute | GYearAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGYearAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:gYearAttribute gYear="2038-01-01T00:00:00Z"/> </n1:echoGYearAttribute> </env:Body> </env:Envelope> |
|||
GMonthDayElement | GMonthDayElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--12-31'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id10434234" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--12-31'.</message> <backtrace n1:arrayType="xsd:anyType[49]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:821:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:813:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/registry.rb:284:in `base2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:303:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id10434234"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id10434234"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GMonthDayElement | GMonthDayElement02 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--12-31Z'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id10303174" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--12-31Z'.</message> <backtrace n1:arrayType="xsd:anyType[49]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:821:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:813:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/registry.rb:284:in `base2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:303:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id10303174"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id10303174"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GMonthDayAttribute | GMonthDayAttribute01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--09-28Z'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id10189934" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonthDay: cannot accept '--09-28Z'.</message> <backtrace n1:arrayType="xsd:anyType[53]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:821:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:813:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:328:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:252:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:305:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id10189934"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id10189934"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GDayElement | GDayElement01 | failed |
<?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"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gDay: cannot accept '---05'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id10093074" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gDay: cannot accept '---05'.</message> <backtrace n1:arrayType="xsd:anyType[49]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:848:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:840:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/registry.rb:284:in `base2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:303:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id10093074"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id10093074"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GDayAttribute | GDayAttribute01 | failed |
<?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:echoGDayAttribute> <ex:gDayAttribute gDay="---09" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoGDayAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gDay: cannot accept '---09'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id9961394" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gDay: cannot accept '---09'.</message> <backtrace n1:arrayType="xsd:anyType[53]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:848:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:840:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:328:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:252:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:305:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id9961394"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id9961394"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GMonthElement | GMonthElement01 | failed |
<?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:echoGMonthElement> <ex:gMonthElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">--02--</ex:gMonthElement> </ex:echoGMonthElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--02--'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id9873734" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--02--'.</message> <backtrace n1:arrayType="xsd:anyType[49]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:874:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:866:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/registry.rb:284:in `base2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:303:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id9873734"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id9873734"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GMonthElement | GMonthElement02 | failed |
<?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:echoGMonthElement> <ex:gMonthElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">--12--</ex:gMonthElement> </ex:echoGMonthElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--12--'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id9770794" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--12--'.</message> <backtrace n1:arrayType="xsd:anyType[49]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:874:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:866:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/registry.rb:284:in `base2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:303:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id9770794"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id9770794"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
GMonthAttribute | GMonthAttribute01 | failed |
<?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:echoGMonthAttribute> <ex:gMonthAttribute gMonth="--04--" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoGMonthAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--04--'.</faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause n4:ivars="#id10446014" xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xmlns:n4="http://www.ruby-lang.org/xmlns/ruby/type-instance" xsi:type="n3:XSD..ValueSpaceError"> <message xsi:type="xsd:string">{http://www.w3.org/2001/XMLSchema}gMonth: cannot accept '--04--'.</message> <backtrace n1:arrayType="xsd:anyType[53]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:874:in `screen_data_str'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:593:in `screen_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:141:in `set'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:158:in `init'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/xsd/datatypes.rb:866:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:53:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:93:in `initialize'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `new'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/baseData.rb:33:in `to_data'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:328:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:322:in `add_attributes2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:252:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:305:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">XSD..ValueSpaceError</excn_type_name> </detail> </env:Fault> <ivars href="#id10446014"/> <ivars env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" id="id10446014"> <original_backtrace xsi:nil="true"/> <cause xsi:nil="true"/> </ivars> </env:Body> </env:Envelope> |
|||
HexBinaryElement | HexBinaryElement01 | failed |
<?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:echoHexBinaryElement> <ex:hexBinaryElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">76</ex:hexBinaryElement> </ex:echoHexBinaryElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoHexBinaryElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:hexBinaryElement>3736</n1:hexBinaryElement> </n1:echoHexBinaryElement> </env:Body> </env:Envelope> |
|||
HexBinaryElement | HexBinaryElement02 | failed |
<?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:echoHexBinaryElement> <ex:hexBinaryElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">77696f646d6f6e7974637174716a7169696e6b65616f76786f746e66716b707875757261736e686469796b65706c656d7465626661637661646e6b65636662647669726d6f6e757361</ex:hexBinaryElement> </ex:echoHexBinaryElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoHexBinaryElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:hexBinaryElement>3737363936663634366436663665373937343633373137343731366137313639363936653662363536313666373637383666373436653636373136623730373837353735373236313733366536383634363937393662363537303663363536643734363536323636363136333736363136343665366236353633363636323634373636393732366436663665373537333631</n1:hexBinaryElement> </n1:echoHexBinaryElement> </env:Body> </env:Envelope> |
|||
HexBinaryAttribute | HexBinaryAttribute01 | failed |
<?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:echoHexBinaryAttribute> <ex:hexBinaryAttribute hexBinary="77696f" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoHexBinaryAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoHexBinaryAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:hexBinaryAttribute hexBinary="373736393666"/> </n1:echoHexBinaryAttribute> </env:Body> </env:Envelope> |
|||
Base64BinaryElement | Base64BinaryElement01 | failed |
<?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:echoBase64BinaryElement> <ex:base64BinaryElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">bQ==</ex:base64BinaryElement> </ex:echoBase64BinaryElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBase64BinaryElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:base64BinaryElement>YlE9PQ==</n1:base64BinaryElement> </n1:echoBase64BinaryElement> </env:Body> </env:Envelope> |
|||
Base64BinaryElement | Base64BinaryElement02 | failed |
<?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:echoBase64BinaryElement> <ex:base64BinaryElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">eHdmb3Rh</ex:base64BinaryElement> </ex:echoBase64BinaryElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBase64BinaryElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:base64BinaryElement>ZUhkbWIzUmg=</n1:base64BinaryElement> </n1:echoBase64BinaryElement> </env:Body> </env:Envelope> |
|||
Base64BinaryElement | Base64BinaryElement03 | failed |
<?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:echoBase64BinaryElement> <ex:base64BinaryElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">cnRjbGNyZW9scg==</ex:base64BinaryElement> </ex:echoBase64BinaryElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBase64BinaryElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:base64BinaryElement>Y25SamJHTnlaVzlzY2c9PQ==</n1:base64BinaryElement> </n1:echoBase64BinaryElement> </env:Body> </env:Envelope> |
|||
Base64BinaryAttribute | Base64BinaryAttribute01 | failed |
<?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:echoBase64BinaryAttribute> <ex:base64BinaryAttribute base64Binary="cnRjbGNyZW9scg==" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoBase64BinaryAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBase64BinaryAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:base64BinaryAttribute base64Binary="Y25SamJHTnlaVzlzY2c9PQ=="/> </n1:echoBase64BinaryAttribute> </env:Body> </env:Envelope> |
|||
AnyURIElement | AnyURIElement01 | 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:echoAnyURIElement> <ex:anyURIElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">http://www.w3.org/2002/ws/databinding/</ex:anyURIElement> </ex:echoAnyURIElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnyURIElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anyURIElement>http://www.w3.org/2002/ws/databinding/</n1:anyURIElement> </n1:echoAnyURIElement> </env:Body> </env:Envelope> |
|||
AnyURIAttribute | AnyURIAttribute01 | 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:echoAnyURIAttribute> <ex:anyURIAttribute anyURI="http://wwww.w3.org/2002/ws/" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoAnyURIAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAnyURIAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:anyURIAttribute anyURI="http://wwww.w3.org/2002/ws/"/> </n1:echoAnyURIAttribute> </env:Body> </env:Envelope> |
|||
QNameElement | QNameElement01 | 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:echoQNameElement> <ex:QNameElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">ex:QNameElement</ex:QNameElement> </ex:echoQNameElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoQNameElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:QNameElement>ex:QNameElement</n1:QNameElement> </n1:echoQNameElement> </env:Body> </env:Envelope> |
|||
QNameAttribute | QNameAttribute01 | 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:echoQNameAttribute> <ex:QNameAttribute QName="ex:QNameAttribute" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoQNameAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoQNameAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:QNameAttribute QName="ex:QNameAttribute"/> </n1:echoQNameAttribute> </env:Body> </env:Envelope> |
|||
NormalizedStringElement | NormalizedStringElement01 | 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:echoNormalizedStringElement> <ex:normalizedStringElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNormalizedStringElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNormalizedStringElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:normalizedStringElement xsi:nil="true"/> </n1:echoNormalizedStringElement> </env:Body> </env:Envelope> |
|||
NormalizedStringElement | NormalizedStringElement02 | 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:echoNormalizedStringElement> <ex:normalizedStringElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">How now brown cow.</ex:normalizedStringElement> </ex:echoNormalizedStringElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNormalizedStringElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:normalizedStringElement>How now brown cow.</n1:normalizedStringElement> </n1:echoNormalizedStringElement> </env:Body> </env:Envelope> |
|||
NormalizedStringAttribute | NormalizedStringAttribute01 | 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:echoNormalizedStringAttribute> <ex:normalizedStringAttribute normalizedString="Hello Paris" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNormalizedStringAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNormalizedStringAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:normalizedStringAttribute normalizedString="Hello Paris"/> </n1:echoNormalizedStringAttribute> </env:Body> </env:Envelope> |
|||
TokenElement | TokenElement01 | 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:echoTokenElement> <ex:tokenElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">tokenElement</ex:tokenElement> </ex:echoTokenElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTokenElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:tokenElement>tokenElement</n1:tokenElement> </n1:echoTokenElement> </env:Body> </env:Envelope> |
|||
TokenAttribute | TokenAttribute01 | 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:echoTokenAttribute> <ex:tokenAttribute token="hello" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoTokenAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTokenAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:tokenAttribute token="hello"/> </n1:echoTokenAttribute> </env:Body> </env:Envelope> |
|||
LanguageElement | LanguageElement01 | 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:echoLanguageElement> <ex:languageElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">en</ex:languageElement> </ex:echoLanguageElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLanguageElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:languageElement>en</n1:languageElement> </n1:echoLanguageElement> </env:Body> </env:Envelope> |
|||
LanguageElement | LanguageElement02 | 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:echoLanguageElement> <ex:languageElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">fr</ex:languageElement> </ex:echoLanguageElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLanguageElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:languageElement>fr</n1:languageElement> </n1:echoLanguageElement> </env:Body> </env:Envelope> |
|||
LanguageAttribute | LanguageAttribute01 | 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:echoLanguageAttribute> <ex:languageAttribute language="en" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoLanguageAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLanguageAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:languageAttribute language="en"/> </n1:echoLanguageAttribute> </env:Body> </env:Envelope> |
|||
NMTOKENElement | NMTOKENElement01 | 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:echoNMTOKENElement> <ex:NMTOKENElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">id</ex:NMTOKENElement> </ex:echoNMTOKENElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NMTOKENElement>id</n1:NMTOKENElement> </n1:echoNMTOKENElement> </env:Body> </env:Envelope> |
|||
NMTOKENElement | NMTOKENElement02 | 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:echoNMTOKENElement> <ex:NMTOKENElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">vocabularies:that.as:clean:assuring-s_to:The_we:contain</ex:NMTOKENElement> </ex:echoNMTOKENElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NMTOKENElement>vocabularies:that.as:clean:assuring-s_to:The_we:contain</n1:NMTOKENElement> </n1:echoNMTOKENElement> </env:Body> </env:Envelope> |
|||
NMTOKENAttribute | NMTOKENAttribute01 | 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:echoNMTOKENAttribute> <ex:NMTOKENAttribute NMTOKEN="id" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNMTOKENAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NMTOKENAttribute NMTOKEN="id"/> </n1:echoNMTOKENAttribute> </env:Body> </env:Envelope> |
|||
NMTOKENSElement | NMTOKENSElement01 | 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:echoNMTOKENSElement> <ex:NMTOKENSElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">a b c d e.b:s-w_x:q</ex:NMTOKENSElement> </ex:echoNMTOKENSElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENSElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NMTOKENSElement>a b c d e.b:s-w_x:q</n1:NMTOKENSElement> </n1:echoNMTOKENSElement> </env:Body> </env:Envelope> |
|||
NMTOKENSAttribute | NMTOKENSAttribute01 | 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:echoNMTOKENSAttribute> <ex:NMTOKENSAttribute NMTOKENS="id" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNMTOKENSAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENSAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NMTOKENSAttribute NMTOKENS="id"/> </n1:echoNMTOKENSAttribute> </env:Body> </env:Envelope> |
|||
NameElement | NameElement01 | 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:echoNameElement> <ex:NameElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:NameElement> </ex:echoNameElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNameElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NameElement>foo</n1:NameElement> </n1:echoNameElement> </env:Body> </env:Envelope> |
|||
NameAttribute | NameAttribute01 | 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:echoNameAttribute> <ex:nameAttribute name="foo" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNameAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNameAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nameAttribute name="foo"/> </n1:echoNameAttribute> </env:Body> </env:Envelope> |
|||
NCNameElement | NCNameElement01 | 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:echoNCNameElement> <ex:NCNameElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:NCNameElement> </ex:echoNCNameElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNCNameElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NCNameElement>foo</n1:NCNameElement> </n1:echoNCNameElement> </env:Body> </env:Envelope> |
|||
NCNameAttribute | NCNameAttribute01 | 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:echoNCNameAttribute> <ex:NCNameAttribute NCName="bar" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNCNameAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNCNameAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:NCNameAttribute NCName="bar"/> </n1:echoNCNameAttribute> </env:Body> </env:Envelope> |
|||
IDElement | IDElement01 | 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:echoIDElement> <ex:IDElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:IDElement> </ex:echoIDElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDElement>foo</n1:IDElement> </n1:echoIDElement> </env:Body> </env:Envelope> |
|||
IDAttribute | IDAttribute01 | 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:echoIDAttribute> <ex:IDAttribute ID="bar" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIDAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDAttribute ID="bar"/> </n1:echoIDAttribute> </env:Body> </env:Envelope> |
|||
IDREFElement | IDREFElement01 | 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:echoIDREFElement> <ex:IDREFElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:IDREFElement> </ex:echoIDREFElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDREFElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDREFElement>foo</n1:IDREFElement> </n1:echoIDREFElement> </env:Body> </env:Envelope> |
|||
IDREFAttribute | IDREFAttribute01 | 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:echoIDREFAttribute> <ex:IDREFAttribute IDREF="bar" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIDREFAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDREFAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDREFAttribute IDREF="bar"/> </n1:echoIDREFAttribute> </env:Body> </env:Envelope> |
|||
IDREFSElement | IDREFSElement01 | 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:echoIDREFSElement> <ex:IDREFSElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:IDREFSElement> </ex:echoIDREFSElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDREFSElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDREFSElement>foo</n1:IDREFSElement> </n1:echoIDREFSElement> </env:Body> </env:Envelope> |
|||
IDREFSAttribute | IDREFSAttribute01 | 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:echoIDREFSAttribute> <ex:IDREFSAttribute IDREFS="hello" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIDREFSAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIDREFSAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:IDREFSAttribute IDREFS="hello"/> </n1:echoIDREFSAttribute> </env:Body> </env:Envelope> |
|||
ENTITYElement | ENTITYElement01 | 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:echoENTITYElement> <ex:ENTITYElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">lt</ex:ENTITYElement> </ex:echoENTITYElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoENTITYElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ENTITYElement>lt</n1:ENTITYElement> </n1:echoENTITYElement> </env:Body> </env:Envelope> |
|||
ENTITYAttribute | ENTITYAttribute01 | 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:echoENTITYAttribute> <ex:ENTITYAttribute ENTITY="lt" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoENTITYAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoENTITYAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ENTITYAttribute ENTITY="lt"/> </n1:echoENTITYAttribute> </env:Body> </env:Envelope> |
|||
ENTITIESElement | ENTITIESElement01 | 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:echoENTITIESElement> <ex:ENTITIESElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">lt gt apos quot</ex:ENTITIESElement> </ex:echoENTITIESElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoENTITIESElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ENTITIESElement>lt gt apos quot</n1:ENTITIESElement> </n1:echoENTITIESElement> </env:Body> </env:Envelope> |
|||
ENTITIESAttribute | ENTITIESAttribute01 | 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:echoENTITIESAttribute> <ex:ENTITIESAttribute ENTITIES="lt gt" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoENTITIESAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoENTITIESAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ENTITIESAttribute ENTITIES="lt gt"/> </n1:echoENTITIESAttribute> </env:Body> </env:Envelope> |
|||
IntegerElement | IntegerElement01 | 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:echoIntegerElement> <ex:integerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">0</ex:integerElement> </ex:echoIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerElement>0</n1:integerElement> </n1:echoIntegerElement> </env:Body> </env:Envelope> |
|||
IntegerElement | IntegerElement02 | 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:echoIntegerElement> <ex:integerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:integerElement> </ex:echoIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerElement>1</n1:integerElement> </n1:echoIntegerElement> </env:Body> </env:Envelope> |
|||
IntegerElement | IntegerElement03 | 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:echoIntegerElement> <ex:integerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12678967543233</ex:integerElement> </ex:echoIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerElement>12678967543233</n1:integerElement> </n1:echoIntegerElement> </env:Body> </env:Envelope> |
|||
IntegerElement | IntegerElement04 | 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:echoIntegerElement> <ex:integerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">+10000</ex:integerElement> </ex:echoIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerElement>10000</n1:integerElement> </n1:echoIntegerElement> </env:Body> </env:Envelope> |
|||
IntegerElement | IntegerElement05 | 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:echoIntegerElement> <ex:integerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123456789123456789123456789123456789</ex:integerElement> </ex:echoIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerElement>123456789123456789123456789123456789</n1:integerElement> </n1:echoIntegerElement> </env:Body> </env:Envelope> |
|||
IntegerAttribute | IntegerAttribute01 | 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:echoIntegerAttribute> <ex:integerAttribute integer="10002" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerAttribute integer="10002"/> </n1:echoIntegerAttribute> </env:Body> </env:Envelope> |
|||
IntegerAttribute | IntegerAttribute02 | 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:echoIntegerAttribute> <ex:integerAttribute integer="123456789013234235435325235325325345432543253425324534253245" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerAttribute integer="123456789013234235435325235325325345432543253425324534253245"/> </n1:echoIntegerAttribute> </env:Body> </env:Envelope> |
|||
NonPositiveIntegerElement | NonPositiveIntegerElement01 | 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:echoNonPositiveIntegerElement> <ex:nonPositiveIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1</ex:nonPositiveIntegerElement> </ex:echoNonPositiveIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonPositiveIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonPositiveIntegerElement>-1</n1:nonPositiveIntegerElement> </n1:echoNonPositiveIntegerElement> </env:Body> </env:Envelope> |
|||
NonPositiveIntegerElement | NonPositiveIntegerElement02 | 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:echoNonPositiveIntegerElement> <ex:nonPositiveIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1234324234532534254325234534252345342534253425324534253244</ex:nonPositiveIntegerElement> </ex:echoNonPositiveIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonPositiveIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonPositiveIntegerElement>-1234324234532534254325234534252345342534253425324534253244</n1:nonPositiveIntegerElement> </n1:echoNonPositiveIntegerElement> </env:Body> </env:Envelope> |
|||
NonPositiveIntegerAttribute | NonPositiveIntegerAttribute01 | 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:echoNonPositiveIntegerAttribute> <ex:nonPositiveIntegerAttribute nonPositiveInteger="-20" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNonPositiveIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonPositiveIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonPositiveIntegerAttribute nonPositiveInteger="-20"/> </n1:echoNonPositiveIntegerAttribute> </env:Body> </env:Envelope> |
|||
NonPositiveIntegerAttribute | NonPositiveIntegerAttribute02 | 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:echoNonPositiveIntegerAttribute> <ex:nonPositiveIntegerAttribute nonPositiveInteger="-202342353425435345342567965342969786978679" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNonPositiveIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonPositiveIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonPositiveIntegerAttribute nonPositiveInteger="-202342353425435345342567965342969786978679"/> </n1:echoNonPositiveIntegerAttribute> </env:Body> </env:Envelope> |
|||
NegativeIntegerElement | NegativeIntegerElement01 | 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:echoNegativeIntegerElement> <ex:negativeIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-1</ex:negativeIntegerElement> </ex:echoNegativeIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNegativeIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:negativeIntegerElement>-1</n1:negativeIntegerElement> </n1:echoNegativeIntegerElement> </env:Body> </env:Envelope> |
|||
NegativeIntegerElement | NegativeIntegerElement02 | 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:echoNegativeIntegerElement> <ex:negativeIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-12343242342345345346453643564536543645363456</ex:negativeIntegerElement> </ex:echoNegativeIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNegativeIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:negativeIntegerElement>-12343242342345345346453643564536543645363456</n1:negativeIntegerElement> </n1:echoNegativeIntegerElement> </env:Body> </env:Envelope> |
|||
LongElement | LongElement01 | 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:echoLongElement> <ex:longElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:longElement> </ex:echoLongElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLongElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:longElement>1</n1:longElement> </n1:echoLongElement> </env:Body> </env:Envelope> |
|||
LongAttribute | LongAttribute01 | 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:echoLongAttribute> <ex:longAttribute long="1738" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoLongAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLongAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:longAttribute long="1738"/> </n1:echoLongAttribute> </env:Body> </env:Envelope> |
|||
IntElement | IntElement01 | 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:echoIntElement> <ex:intElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:intElement> </ex:echoIntElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intElement>1</n1:intElement> </n1:echoIntElement> </env:Body> </env:Envelope> |
|||
IntElement | IntElement02 | 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:echoIntElement> <ex:intElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">10042</ex:intElement> </ex:echoIntElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intElement>10042</n1:intElement> </n1:echoIntElement> </env:Body> </env:Envelope> |
|||
IntElement | IntElement03 | 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:echoIntElement> <ex:intElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">-42</ex:intElement> </ex:echoIntElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intElement>-42</n1:intElement> </n1:echoIntElement> </env:Body> </env:Envelope> |
|||
IntAttribute | IntAttribute01 | 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:echoIntAttribute> <ex:intAttribute int="42" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIntAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intAttribute int="42"/> </n1:echoIntAttribute> </env:Body> </env:Envelope> |
|||
ShortElement | ShortElement01 | 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:echoShortElement> <ex:shortElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:shortElement> </ex:echoShortElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoShortElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:shortElement>1</n1:shortElement> </n1:echoShortElement> </env:Body> </env:Envelope> |
|||
ShortAttribute | ShortAttribute01 | 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:echoShortAttribute> <ex:shortAttribute short="22" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoShortAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoShortAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:shortAttribute short="22"/> </n1:echoShortAttribute> </env:Body> </env:Envelope> |
|||
ByteElement | ByteElement01 | 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:echoByteElement> <ex:byteElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:byteElement> </ex:echoByteElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoByteElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:byteElement>1</n1:byteElement> </n1:echoByteElement> </env:Body> </env:Envelope> |
|||
ByteAttribute | ByteAttribute01 | 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:echoByteAttribute> <ex:byteAttribute byte="64" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoByteAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoByteAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:byteAttribute byte="64"/> </n1:echoByteAttribute> </env:Body> </env:Envelope> |
|||
NonNegativeIntegerElement | NonNegativeIntegerElement01 | 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:echoNonNegativeIntegerElement> <ex:nonNegativeIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:nonNegativeIntegerElement> </ex:echoNonNegativeIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonNegativeIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonNegativeIntegerElement>1</n1:nonNegativeIntegerElement> </n1:echoNonNegativeIntegerElement> </env:Body> </env:Envelope> |
|||
NonNegativeIntegerAttribute | NonNegativeIntegerAttribute01 | 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:echoNonNegativeIntegerAttribute> <ex:nonNegativeIntegerAttribute nonNegativeInteger="20" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNonNegativeIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonNegativeIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonNegativeIntegerAttribute nonNegativeInteger="20"/> </n1:echoNonNegativeIntegerAttribute> </env:Body> </env:Envelope> |
|||
UnsignedLongElement | UnsignedLongElement01 | 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:echoUnsignedLongElement> <ex:unsignedLongElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:unsignedLongElement> </ex:echoUnsignedLongElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedLongElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedLongElement>1</n1:unsignedLongElement> </n1:echoUnsignedLongElement> </env:Body> </env:Envelope> |
|||
UnsignedLongAttribute | UnsignedLongAttribute01 | 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:echoUnsignedLongAttribute> <ex:unsignedLongAttribute unsignedLong="2034" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoUnsignedLongAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedLongAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedLongAttribute unsignedLong="2034"/> </n1:echoUnsignedLongAttribute> </env:Body> </env:Envelope> |
|||
UnsignedIntElement | UnsignedIntElement01 | 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:echoUnsignedIntElement> <ex:unsignedIntElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:unsignedIntElement> </ex:echoUnsignedIntElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedIntElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedIntElement>1</n1:unsignedIntElement> </n1:echoUnsignedIntElement> </env:Body> </env:Envelope> |
|||
UnsignedIntAttribute | UnsignedIntAttribute01 | 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:echoUnsignedIntAttribute> <ex:unsignedIntAttribute unsignedInt="32334" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoUnsignedIntAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedIntAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedIntAttribute unsignedInt="32334"/> </n1:echoUnsignedIntAttribute> </env:Body> </env:Envelope> |
|||
UnsignedShortElement | UnsignedShortElement01 | 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:echoUnsignedShortElement> <ex:unsignedShortElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:unsignedShortElement> </ex:echoUnsignedShortElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedShortElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedShortElement>1</n1:unsignedShortElement> </n1:echoUnsignedShortElement> </env:Body> </env:Envelope> |
|||
UnsignedShortAttribute | UnsignedShortAttribute01 | 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:echoUnsignedShortAttribute> <ex:unsignedShortAttribute unsignedShort="22" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoUnsignedShortAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedShortAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedShortAttribute unsignedShort="22"/> </n1:echoUnsignedShortAttribute> </env:Body> </env:Envelope> |
|||
NegativeIntegerAttribute | NegativeIntegerAttribute01 | 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:echoNegativeIntegerAttribute> <ex:negativeIntegerAttribute negativeInteger="-100" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNegativeIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNegativeIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:negativeIntegerAttribute negativeInteger="-100"/> </n1:echoNegativeIntegerAttribute> </env:Body> </env:Envelope> |
|||
UnsignedByteElement | UnsignedByteElement01 | 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:echoUnsignedByteElement> <ex:unsignedByteElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:unsignedByteElement> </ex:echoUnsignedByteElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedByteElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedByteElement>1</n1:unsignedByteElement> </n1:echoUnsignedByteElement> </env:Body> </env:Envelope> |
|||
UnsignedByteAttribute | UnsignedByteAttribute01 | 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:echoUnsignedByteAttribute> <ex:unsignedByteAttribute unsignedByte="64" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoUnsignedByteAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedByteAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedByteAttribute unsignedByte="64"/> </n1:echoUnsignedByteAttribute> </env:Body> </env:Envelope> |
|||
PositiveIntegerElement | PositiveIntegerElement01 | 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:echoPositiveIntegerElement> <ex:positiveIntegerElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:positiveIntegerElement> </ex:echoPositiveIntegerElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoPositiveIntegerElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:positiveIntegerElement>1</n1:positiveIntegerElement> </n1:echoPositiveIntegerElement> </env:Body> </env:Envelope> |
|||
PositiveIntegerAttribute | PositiveIntegerAttribute01 | 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:echoPositiveIntegerAttribute> <ex:positiveIntegerAttribute positiveInteger="257" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoPositiveIntegerAttribute> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoPositiveIntegerAttribute xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:positiveIntegerAttribute positiveInteger="257"/> </n1:echoPositiveIntegerAttribute> </env:Body> </env:Envelope> |
|||
GlobalSimpleType | GlobalSimpleType01 | 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:echoGlobalSimpleType> <ex:globalSimpleType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">foo</ex:globalSimpleType> </ex:echoGlobalSimpleType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGlobalSimpleType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:globalSimpleType>foo</n1:globalSimpleType> </n1:echoGlobalSimpleType> </env:Body> </env:Envelope> |
|||
StringEnumerationType | StringEnumerationType01 | 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:echoStringEnumerationType> <ex:beatle xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">John</ex:beatle> </ex:echoStringEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:beatle>John</n1:beatle> </n1:echoStringEnumerationType> </env:Body> </env:Envelope> |
|||
StringEnumerationType | StringEnumerationType02 | 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:echoStringEnumerationType> <ex:beatle xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">Paul</ex:beatle> </ex:echoStringEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:beatle>Paul</n1:beatle> </n1:echoStringEnumerationType> </env:Body> </env:Envelope> |
|||
StringEnumerationType | StringEnumerationType03 | 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:echoStringEnumerationType> <ex:beatle xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">Ringo</ex:beatle> </ex:echoStringEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:beatle>Ringo</n1:beatle> </n1:echoStringEnumerationType> </env:Body> </env:Envelope> |
|||
NMTOKENEnumerationType | NMTOKENEnumerationType01 | 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:echoNMTOKENEnumerationType> <ex:nMTOKENEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">token1</ex:nMTOKENEnumerationType> </ex:echoNMTOKENEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNMTOKENEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nMTOKENEnumerationType>token1</n1:nMTOKENEnumerationType> </n1:echoNMTOKENEnumerationType> </env:Body> </env:Envelope> |
|||
IntEnumerationType | IntEnumerationType01 | 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:echoIntEnumerationType> <ex:intEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2</ex:intEnumerationType> </ex:echoIntEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intEnumerationType>2</n1:intEnumerationType> </n1:echoIntEnumerationType> </env:Body> </env:Envelope> |
|||
ShortEnumerationType | ShortEnumerationType01 | 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:echoShortEnumerationType> <ex:shortEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">11</ex:shortEnumerationType> </ex:echoShortEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoShortEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:shortEnumerationType>11</n1:shortEnumerationType> </n1:echoShortEnumerationType> </env:Body> </env:Envelope> |
|||
LongEnumerationType | LongEnumerationType01 | 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:echoLongEnumerationType> <ex:longEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">9152052</ex:longEnumerationType> </ex:echoLongEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLongEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:longEnumerationType>9152052</n1:longEnumerationType> </n1:echoLongEnumerationType> </env:Body> </env:Envelope> |
|||
DoubleEnumerationType | DoubleEnumerationType01 | 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:echoDoubleEnumerationType> <ex:doubleEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1267.43233E12</ex:doubleEnumerationType> </ex:echoDoubleEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleEnumerationType>1267.43233E12</n1:doubleEnumerationType> </n1:echoDoubleEnumerationType> </env:Body> </env:Envelope> |
|||
IntegerEnumerationType | IntegerEnumerationType01 | 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:echoIntegerEnumerationType> <ex:integerEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">4000000</ex:integerEnumerationType> </ex:echoIntegerEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerEnumerationType>4000000</n1:integerEnumerationType> </n1:echoIntegerEnumerationType> </env:Body> </env:Envelope> |
|||
DecimalEnumerationType | DecimalEnumerationType01 | 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:echoDecimalEnumerationType> <ex:decimalEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1000.0002</ex:decimalEnumerationType> </ex:echoDecimalEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalEnumerationType>1000.0002</n1:decimalEnumerationType> </n1:echoDecimalEnumerationType> </env:Body> </env:Envelope> |
|||
FloatEnumerationType | FloatEnumerationType01 | 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:echoFloatEnumerationType> <ex:floatEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1267.43233E12</ex:floatEnumerationType> </ex:echoFloatEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatEnumerationType>1267.43233E12</n1:floatEnumerationType> </n1:echoFloatEnumerationType> </env:Body> </env:Envelope> |
|||
NonNegativeIntegerEnumerationType | NonNegativeIntegerEnumerationType01 | 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:echoNonNegativeIntegerEnumerationType> <ex:nonNegativeIntegerEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12</ex:nonNegativeIntegerEnumerationType> </ex:echoNonNegativeIntegerEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonNegativeIntegerEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonNegativeIntegerEnumerationType>12</n1:nonNegativeIntegerEnumerationType> </n1:echoNonNegativeIntegerEnumerationType> </env:Body> </env:Envelope> |
|||
PositiveIntegerEnumerationType | PositiveIntegerEnumerationType01 | 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:echoPositiveIntegerEnumerationType> <ex:positiveIntegerEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12</ex:positiveIntegerEnumerationType> </ex:echoPositiveIntegerEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoPositiveIntegerEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:positiveIntegerEnumerationType>12</n1:positiveIntegerEnumerationType> </n1:echoPositiveIntegerEnumerationType> </env:Body> </env:Envelope> |
|||
UnsignedLongEnumerationType | UnsignedLongEnumerationType01 | 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:echoUnsignedLongEnumerationType> <ex:unsignedLongEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">33333333333333</ex:unsignedLongEnumerationType> </ex:echoUnsignedLongEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedLongEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedLongEnumerationType>33333333333333</n1:unsignedLongEnumerationType> </n1:echoUnsignedLongEnumerationType> </env:Body> </env:Envelope> |
|||
UnsignedIntEnumerationType | UnsignedIntEnumerationType01 | 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:echoUnsignedIntEnumerationType> <ex:unsignedIntEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">3333333333</ex:unsignedIntEnumerationType> </ex:echoUnsignedIntEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedIntEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedIntEnumerationType>3333333333</n1:unsignedIntEnumerationType> </n1:echoUnsignedIntEnumerationType> </env:Body> </env:Envelope> |
|||
UnsignedShortEnumerationType | UnsignedShortEnumerationType01 | 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:echoUnsignedShortEnumerationType> <ex:unsignedShortEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">3333</ex:unsignedShortEnumerationType> </ex:echoUnsignedShortEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedShortEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedShortEnumerationType>3333</n1:unsignedShortEnumerationType> </n1:echoUnsignedShortEnumerationType> </env:Body> </env:Envelope> |
|||
TokenEnumerationType | TokenEnumerationType01 | 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:echoTokenEnumerationType> <ex:tokenEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:tokenEnumerationType> </ex:echoTokenEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTokenEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:tokenEnumerationType>1</n1:tokenEnumerationType> </n1:echoTokenEnumerationType> </env:Body> </env:Envelope> |
|||
TokenEnumerationType | TokenEnumerationType02 | 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:echoTokenEnumerationType> <ex:tokenEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2</ex:tokenEnumerationType> </ex:echoTokenEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTokenEnumerationType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:tokenEnumerationType>2</n1:tokenEnumerationType> </n1:echoTokenEnumerationType> </env:Body> </env:Envelope> |
|||
ComplexTypeSequence | ComplexTypeSequence01 | 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:echoComplexTypeSequence> <ex:complexTypeSequence id="6026" inStock="232" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:name>Widget</ex:name> <ex:shade>Light Blue</ex:shade> <ex:length>33</ex:length> </ex:complexTypeSequence> </ex:echoComplexTypeSequence> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeSequence xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:complexTypeSequence id="6026" inStock="232"> <n1:name>Widget</n1:name> <n1:shade>Light Blue</n1:shade> <n1:length>33</n1:length> </n1:complexTypeSequence> </n1:echoComplexTypeSequence> </env:Body> </env:Envelope> |
|||
ComplexTypeSequence | ComplexTypeSequence02 | 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:echoComplexTypeSequence> <ex:complexTypeSequence id="6026" inStock="52" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:name>Widget</ex:name> <ex:shade>Green</ex:shade> <ex:length>1233</ex:length> </ex:complexTypeSequence> </ex:echoComplexTypeSequence> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeSequence xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:complexTypeSequence id="6026" inStock="52"> <n1:name>Widget</n1:name> <n1:shade>Green</n1:shade> <n1:length>1233</n1:length> </n1:complexTypeSequence> </n1:echoComplexTypeSequence> </env:Body> </env:Envelope> |
|||
ComplexTypeAll | ComplexTypeAll01 | failed |
<?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:echoComplexTypeAll> <ex:complexTypeAll id="6026" inStock="232" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:name>Widget</ex:name> <ex:length>33</ex:length> <ex:shade>Light Blue</ex:shade> </ex:complexTypeAll> </ex:echoComplexTypeAll> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeAll xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:complexTypeAll id="6026" inStock="232"> <n1:name>Widget</n1:name> <n1:shade>Light Blue</n1:shade> <n1:length>33</n1:length> </n1:complexTypeAll> </n1:echoComplexTypeAll> </env:Body> </env:Envelope> |
|||
ComplexTypeAll | ComplexTypeAll02 | failed |
<?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:echoComplexTypeAll> <ex:complexTypeAll id="6026" inStock="332" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:shade>Green</ex:shade> <ex:length>21</ex:length> <ex:name>Widget</ex:name> </ex:complexTypeAll> </ex:echoComplexTypeAll> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeAll xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:complexTypeAll id="6026" inStock="332"> <n1:name>Widget</n1:name> <n1:shade>Green</n1:shade> <n1:length>21</n1:length> </n1:complexTypeAll> </n1:echoComplexTypeAll> </env:Body> </env:Envelope> |
|||
ComplexTypeChoice | ComplexTypeChoice01 | 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:echoComplexTypeChoice> <ex:fruit xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:apple>21</ex:apple> </ex:fruit> </ex:echoComplexTypeChoice> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeChoice xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:fruit> <n1:apple>21</n1:apple> </n1:fruit> </n1:echoComplexTypeChoice> </env:Body> </env:Envelope> |
|||
ComplexTypeChoice | ComplexTypeChoice02 | 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:echoComplexTypeChoice> <ex:fruit xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:orange>Two Hundred</ex:orange> </ex:fruit> </ex:echoComplexTypeChoice> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeChoice xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:fruit> <n1:orange>Two Hundred</n1:orange> </n1:fruit> </n1:echoComplexTypeChoice> </env:Body> </env:Envelope> |
|||
ComplexTypeChoice | ComplexTypeChoice03 | 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:echoComplexTypeChoice> <ex:fruit xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:banana>329</ex:banana> </ex:fruit> </ex:echoComplexTypeChoice> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeChoice xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:fruit> <n1:banana>329</n1:banana> </n1:fruit> </n1:echoComplexTypeChoice> </env:Body> </env:Envelope> |
|||
ComplexTypeSequenceChoice | ComplexTypeSequenceChoice01 | 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:echoComplexTypeSequenceChoice> <ex:mortgage xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:amount>225000</ex:amount> <ex:repayment> <ex:years>20</ex:years> <ex:months>6</ex:months> <ex:rate>5.25</ex:rate> </ex:repayment> </ex:mortgage> </ex:echoComplexTypeSequenceChoice> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeSequenceChoice xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mortgage> <n1:amount>225000</n1:amount> <n1:repayment> <n1:years>20</n1:years> <n1:months>6</n1:months> <n1:rate>5.25</n1:rate> </n1:repayment> </n1:mortgage> </n1:echoComplexTypeSequenceChoice> </env:Body> </env:Envelope> |
|||
ComplexTypeSequenceChoice | ComplexTypeSequenceChoice02 | 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:echoComplexTypeSequenceChoice> <ex:mortgage xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:amount>225000</ex:amount> <ex:interestonly> <ex:years>25</ex:years> <ex:rate>5.50</ex:rate> </ex:interestonly> </ex:mortgage> </ex:echoComplexTypeSequenceChoice> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeSequenceChoice xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mortgage> <n1:amount>225000</n1:amount> <n1:interestonly> <n1:years>25</n1:years> <n1:rate>5.50</n1:rate> </n1:interestonly> </n1:mortgage> </n1:echoComplexTypeSequenceChoice> </env:Body> </env:Envelope> |
|||
ElementMinOccurs1 | ElementMinOccurs101 | 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:echoElementMinOccurs1> <ex:elementMinOccurs1 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:elementMinOccurs1item>item1</ex:elementMinOccurs1item> </ex:elementMinOccurs1> </ex:echoElementMinOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementMinOccurs1> <n1:elementMinOccurs1item>item1</n1:elementMinOccurs1item> </n1:elementMinOccurs1> </n1:echoElementMinOccurs1> </env:Body> </env:Envelope> |
|||
ElementMinOccurs2MaxOccurs2 | ElementMinOccurs2MaxOccurs201 | 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:echoElementMinOccurs2MaxOccurs2> <ex:itemColors2 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:itemColor>Red</ex:itemColor> <ex:itemColor>Yellow</ex:itemColor> </ex:itemColors2> </ex:echoElementMinOccurs2MaxOccurs2> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs2MaxOccurs2 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:itemColors2> <n1:itemColor>Red</n1:itemColor> <n1:itemColor>Yellow</n1:itemColor> </n1:itemColors2> </n1:echoElementMinOccurs2MaxOccurs2> </env:Body> </env:Envelope> |
|||
ElementMinOccurs2orMore | ElementMinOccurs2orMore01 | 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:echoElementMinOccurs2orMore> <ex:itemColors xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:itemColor>Red</ex:itemColor> <ex:itemColor>Black</ex:itemColor> <ex:itemColor>White</ex:itemColor> <ex:itemColor>Yellow</ex:itemColor> </ex:itemColors> </ex:echoElementMinOccurs2orMore> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs2orMore xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:itemColors> <n1:itemColor>Red</n1:itemColor> <n1:itemColor>Black</n1:itemColor> <n1:itemColor>White</n1:itemColor> <n1:itemColor>Yellow</n1:itemColor> </n1:itemColors> </n1:echoElementMinOccurs2orMore> </env:Body> </env:Envelope> |
|||
ElementMinOccurs2orMore | ElementMinOccurs2orMore02 | 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:echoElementMinOccurs2orMore> <ex:itemColors xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:itemColor>Black</ex:itemColor> <ex:itemColor>White</ex:itemColor> </ex:itemColors> </ex:echoElementMinOccurs2orMore> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs2orMore xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:itemColors> <n1:itemColor>Black</n1:itemColor> <n1:itemColor>White</n1:itemColor> </n1:itemColors> </n1:echoElementMinOccurs2orMore> </env:Body> </env:Envelope> |
|||
ElementMaxOccurs1 | ElementMaxOccurs101 | 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:echoElementMaxOccurs1> <ex:elementMaxOccurs1 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:value>44</ex:value> </ex:elementMaxOccurs1> </ex:echoElementMaxOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementMaxOccurs1> <n1:value>44</n1:value> </n1:elementMaxOccurs1> </n1:echoElementMaxOccurs1> </env:Body> </env:Envelope> |
|||
ElementMaxOccurs1 | ElementMaxOccurs102 | 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:echoElementMaxOccurs1> <ex:elementMaxOccurs1 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:value>4</ex:value> </ex:elementMaxOccurs1> </ex:echoElementMaxOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementMaxOccurs1> <n1:value>4</n1:value> </n1:elementMaxOccurs1> </n1:echoElementMaxOccurs1> </env:Body> </env:Envelope> |
|||
ElementMaxOccursUnbounded | ElementMaxOccursUnbounded01 | 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:echoElementMaxOccursUnbounded> <ex:publications xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:day>2002-09-24</ex:day> <ex:day>2003-04-14</ex:day> <ex:day>2004-03-31</ex:day> <ex:day>2005-06-04</ex:day> <ex:day>2006-07-03</ex:day> </ex:publications> </ex:echoElementMaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:publications> <n1:day>2002-09-24</n1:day> <n1:day>2003-04-14</n1:day> <n1:day>2004-03-31</n1:day> <n1:day>2005-06-04</n1:day> <n1:day>2006-07-03</n1:day> </n1:publications> </n1:echoElementMaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
ElementMaxOccursUnbounded | ElementMaxOccursUnbounded02 | 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:echoElementMaxOccursUnbounded> <ex:publications xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:day>2006-01-26</ex:day> </ex:publications> </ex:echoElementMaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:publications> <n1:day>2006-01-26</n1:day> </n1:publications> </n1:echoElementMaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
ElementMaxOccursFinite | ElementMaxOccursFinite01 | 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:echoElementMaxOccursFinite> <ex:summer xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:mnth>May</ex:mnth> <ex:mnth>June</ex:mnth> <ex:mnth>July</ex:mnth> <ex:mnth>August</ex:mnth> </ex:summer> </ex:echoElementMaxOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:summer> <n1:mnth>May</n1:mnth> <n1:mnth>June</n1:mnth> <n1:mnth>July</n1:mnth> <n1:mnth>August</n1:mnth> </n1:summer> </n1:echoElementMaxOccursFinite> </env:Body> </env:Envelope> |
|||
ElementMaxOccursFinite | ElementMaxOccursFinite02 | 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:echoElementMaxOccursFinite> <ex:summer xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:mnth>August</ex:mnth> <ex:mnth>September</ex:mnth> </ex:summer> </ex:echoElementMaxOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMaxOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:summer> <n1:mnth>August</n1:mnth> <n1:mnth>September</n1:mnth> </n1:summer> </n1:echoElementMaxOccursFinite> </env:Body> </env:Envelope> |
|||
AttributeOptional | AttributeOptional01 | 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:echoAttributeOptional> <ex:premium currency="EUR" id="1711" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:amount>1250</ex:amount> </ex:premium> </ex:echoAttributeOptional> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeOptional xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:premium currency="EUR" id="1711"> <n1:amount>1250</n1:amount> </n1:premium> </n1:echoAttributeOptional> </env:Body> </env:Envelope> |
|||
AttributeOptional | AttributeOptional02 | 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:echoAttributeOptional> <ex:premium id="1712" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:amount>1250</ex:amount> </ex:premium> </ex:echoAttributeOptional> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeOptional xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:premium id="1712"> <n1:amount>1250</n1:amount> </n1:premium> </n1:echoAttributeOptional> </env:Body> </env:Envelope> |
|||
AttributeRequired | AttributeRequired01 | 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:echoAttributeRequired> <ex:discount id="1611" seasonal="true" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:percentage>5</ex:percentage> </ex:discount> </ex:echoAttributeRequired> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeRequired xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:discount id="1611" seasonal="true"> <n1:percentage>5</n1:percentage> </n1:discount> </n1:echoAttributeRequired> </env:Body> </env:Envelope> |
|||
AttributeRequired | AttributeRequired02 | 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:echoAttributeRequired> <ex:discount id="1612" seasonal="false" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:percentage>2</ex:percentage> </ex:discount> </ex:echoAttributeRequired> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeRequired xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:discount id="1612" seasonal="false"> <n1:percentage>2</n1:percentage> </n1:discount> </n1:echoAttributeRequired> </env:Body> </env:Envelope> |
|||
AttributeFixed | AttributeFixed01 | 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:echoAttributeFixed> <ex:survey currency="GBP" id="1511" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:fee>500</ex:fee> </ex:survey> </ex:echoAttributeFixed> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeFixed xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:survey currency="GBP" id="1511"> <n1:fee>500</n1:fee> </n1:survey> </n1:echoAttributeFixed> </env:Body> </env:Envelope> |
|||
ElementMinOccurs0 | ElementMinOccurs001 | 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:echoElementMinOccurs0> <ex:elementMinOccurs0 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:lastName>Downey</ex:lastName> </ex:elementMinOccurs0> </ex:echoElementMinOccurs0> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs0 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementMinOccurs0> <n1:firstName>Paul</n1:firstName> <n1:lastName>Downey</n1:lastName> </n1:elementMinOccurs0> </n1:echoElementMinOccurs0> </env:Body> </env:Envelope> |
|||
ElementMinOccurs0 | ElementMinOccurs002 | 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:echoElementMinOccurs0> <ex:elementMinOccurs0 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> <ex:lastName>Downey</ex:lastName> </ex:elementMinOccurs0> </ex:echoElementMinOccurs0> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs0 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementMinOccurs0> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName>Downey</n1:lastName> </n1:elementMinOccurs0> </n1:echoElementMinOccurs0> </env:Body> </env:Envelope> |
|||
NillableElement | NillableElement01 | 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:echoNillableElement> <ex:nillableMiddleName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName xsi:nil="true"/> <ex:lastName>Downey</ex:lastName> </ex:nillableMiddleName> </ex:echoNillableElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNillableElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nillableMiddleName> <n1:firstName>Paul</n1:firstName> <n1:middleName xsi:nil="true"/> <n1:lastName>Downey</n1:lastName> </n1:nillableMiddleName> </n1:echoNillableElement> </env:Body> </env:Envelope> |
|||
NillableElement | NillableElement02 | 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:echoNillableElement> <ex:nillableMiddleName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> <ex:lastName>Downey</ex:lastName> </ex:nillableMiddleName> </ex:echoNillableElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNillableElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nillableMiddleName> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName>Downey</n1:lastName> </n1:nillableMiddleName> </n1:echoNillableElement> </env:Body> </env:Envelope> |
|||
NillableOptionalElement | NillableOptionalElement01 | 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:echoNillableOptionalElement> <ex:nillableOptionalMiddleName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:lastName>Downey</ex:lastName> </ex:nillableOptionalMiddleName> </ex:echoNillableOptionalElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNillableOptionalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nillableOptionalMiddleName> <n1:firstName>Paul</n1:firstName> <n1:lastName>Downey</n1:lastName> </n1:nillableOptionalMiddleName> </n1:echoNillableOptionalElement> </env:Body> </env:Envelope> |
|||
NillableOptionalElement | NillableOptionalElement02 | 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:echoNillableOptionalElement> <ex:nillableOptionalMiddleName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> <ex:lastName>Downey</ex:lastName> </ex:nillableOptionalMiddleName> </ex:echoNillableOptionalElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNillableOptionalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nillableOptionalMiddleName> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName>Downey</n1:lastName> </n1:nillableOptionalMiddleName> </n1:echoNillableOptionalElement> </env:Body> </env:Envelope> |
|||
NillableOptionalElement | NillableOptionalElement03 | failed |
<?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:echoNillableOptionalElement> <ex:nillableOptionalMiddleName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName xsi:nil="true"/> <ex:lastName>Downey</ex:lastName> </ex:nillableOptionalMiddleName> </ex:echoNillableOptionalElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNillableOptionalElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nillableOptionalMiddleName> <n1:firstName>Paul</n1:firstName> <n1:lastName>Downey</n1:lastName> </n1:nillableOptionalMiddleName> </n1:echoNillableOptionalElement> </env:Body> </env:Envelope> |
|||
UnionMemberTypes | UnionMemberTypes01 | 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:echoUnionMemberTypes> <ex:unionMemberTypes xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">22</ex:unionMemberTypes> </ex:echoUnionMemberTypes> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnionMemberTypes xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unionMemberTypes>22</n1:unionMemberTypes> </n1:echoUnionMemberTypes> </env:Body> </env:Envelope> |
|||
UnionMemberTypes | UnionMemberTypes02 | 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:echoUnionMemberTypes> <ex:unionMemberTypes xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">a string?</ex:unionMemberTypes> </ex:echoUnionMemberTypes> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnionMemberTypes xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unionMemberTypes>a string?</n1:unionMemberTypes> </n1:echoUnionMemberTypes> </env:Body> </env:Envelope> |
|||
NullEnumerationType | NullEnumerationType01 | failed |
<?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:echoNullEnumerationType> <ex:nullEnumerationType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoNullEnumerationType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <env:Fault env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/"> <faultcode>env:Server</faultcode> <faultstring xsi:type="xsd:string">undefined method `text' for #<SOAP::SOAPStruct:0x13f2660></faultstring> <faultactor xsi:type="xsd:string">app</faultactor> <detail xmlns:n2="http://www.ruby-lang.org/xmlns/ruby/type/custom" xsi:type="n2:SOAPException"> <cause xmlns:n3="http://www.ruby-lang.org/xmlns/ruby/type/1.6" xsi:type="n3:NoMethodError"> <message xsi:type="xsd:string">undefined method `text' for #<SOAP::SOAPStruct:0x13f2660></message> <backtrace n1:arrayType="xsd:anyType[41]" xsi:type="n1:Array"> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:247:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:305:in `elesoapchild2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:280:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:277:in `add_elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:250:in `elesoap2stubobj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:232:in `any2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/literalregistry.rb:53:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:150:in `_soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:65:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:581:in `protect_mapping'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/mapping/mapping.rb:64:in `soap2obj'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:527:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `each'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `collect'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:526:in `request_doc_lit'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:502:in `request_document'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:460:in `call'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/router.rb:174:in `route'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:97:in `do_POST'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `protect_threadvars'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/soaplet.rb:94:in `do_POST'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `__send__'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpservlet/abstract.rb:35:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:155:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:144:in `start_thread'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:94:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `each'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:89:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/webrick/server.rb:79:in `start'</item> <item xsi:type="xsd:string">/Users/pauldowney/databinding//soap4r-1.5.8//lib/soap/rpc/httpserver.rb:163:in `run'</item> <item xsi:type="xsd:string">/usr/lib/ruby/1.8/logger.rb:684:in `start'</item> <item xsi:type="xsd:string">Service.rb:1474</item> </backtrace> </cause> <excn_type_name xsi:type="xsd:string">NoMethodError</excn_type_name> </detail> </env:Fault> </env:Body> </env:Envelope> |
|||
ElementEmptyComplexType | ElementEmptyComplexType01 | 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:echoElementEmptyComplexType> <ex:elementEmptyComplexType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoElementEmptyComplexType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementEmptyComplexType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementEmptyComplexType/> </n1:echoElementEmptyComplexType> </env:Body> </env:Envelope> |
|||
ElementEmptySequence | ElementEmptySequence01 | 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:echoElementEmptySequence> <ex:elementEmptySequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoElementEmptySequence> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementEmptySequence xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementEmptySequence/> </n1:echoElementEmptySequence> </env:Body> </env:Envelope> |
|||
GlobalElementSequence | GlobalElementSequence01 | 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:echoGlobalElementSequence> <ex:globalElementSequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:foo>one</ex:foo> <ex:bar>two</ex:bar> </ex:globalElementSequence> </ex:echoGlobalElementSequence> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoGlobalElementSequence xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:globalElementSequence> <n1:foo>one</n1:foo> <n1:bar>two</n1:bar> </n1:globalElementSequence> </n1:echoGlobalElementSequence> </env:Body> </env:Envelope> |
|||
SequenceElementList | SequenceElementList01 | 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:echoSequenceElementList> <ex:sequenceElementList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item>item one</ex:item> <ex:item>item two</ex:item> <ex:item>item three</ex:item> <ex:item>item four</ex:item> </ex:sequenceElementList> </ex:echoSequenceElementList> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceElementList xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceElementList> <n1:item>item one</n1:item> <n1:item>item two</n1:item> <n1:item>item three</n1:item> <n1:item>item four</n1:item> </n1:sequenceElementList> </n1:echoSequenceElementList> </env:Body> </env:Envelope> |
|||
SequenceElementList | SequenceElementList02 | 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:echoSequenceElementList> <ex:sequenceElementList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item>item one</ex:item> </ex:sequenceElementList> </ex:echoSequenceElementList> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceElementList xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceElementList> <n1:item>item one</n1:item> </n1:sequenceElementList> </n1:echoSequenceElementList> </env:Body> </env:Envelope> |
|||
SequenceElementList | SequenceElementList03 | 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:echoSequenceElementList> <ex:sequenceElementList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoSequenceElementList> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceElementList xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceElementList/> </n1:echoSequenceElementList> </env:Body> </env:Envelope> |
|||
NestedSequenceElementList | NestedSequenceElementList01 | 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:echoNestedSequenceElementList> <ex:nestedSequenceElementList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:nestedItem> <ex:item>item onexone</ex:item> <ex:item>item onextwo</ex:item> <ex:item>item onexthree</ex:item> <ex:item>item onexfour</ex:item> </ex:nestedItem> <ex:nestedItem> <ex:item>item twoxone</ex:item> <ex:item>item twoxtwo</ex:item> <ex:item>item twoxthree</ex:item> <ex:item>item twoxfour</ex:item> </ex:nestedItem> </ex:nestedSequenceElementList> </ex:echoNestedSequenceElementList> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNestedSequenceElementList xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nestedSequenceElementList> <n1:nestedItem> <n1:item>item onexone</n1:item> <n1:item>item onextwo</n1:item> <n1:item>item onexthree</n1:item> <n1:item>item onexfour</n1:item> </n1:nestedItem> <n1:nestedItem> <n1:item>item twoxone</n1:item> <n1:item>item twoxtwo</n1:item> <n1:item>item twoxthree</n1:item> <n1:item>item twoxfour</n1:item> </n1:nestedItem> </n1:nestedSequenceElementList> </n1:echoNestedSequenceElementList> </env:Body> </env:Envelope> |
|||
MixedContentType | MixedContentType01 | failed |
<?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:echoMixedContentType> <ex:mixedContentType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:elem1>Tagged Value</ex:elem1> mixed value <ex:elem2>Tagged Value</ex:elem2> </ex:mixedContentType> </ex:echoMixedContentType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoMixedContentType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mixedContentType> <n1:elem1>Tagged Value</n1:elem1> <n1:elem2>Tagged Value</n1:elem2> </n1:mixedContentType> </n1:echoMixedContentType> </env:Body> </env:Envelope> |
|||
MixedContentType | MixedContentType02 | failed |
<?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:echoMixedContentType> <ex:mixedContentType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> some text <ex:elem1>Tagged Value</ex:elem1> more text <ex:elem2>Tagged Value</ex:elem2> </ex:mixedContentType> </ex:echoMixedContentType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoMixedContentType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mixedContentType> <n1:elem1>Tagged Value</n1:elem1> <n1:elem2>Tagged Value</n1:elem2> </n1:mixedContentType> </n1:echoMixedContentType> </env:Body> </env:Envelope> |
|||
MixedContentType | MixedContentType03 | failed |
<?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:echoMixedContentType> <ex:mixedContentType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:elem1>Tagged Value</ex:elem1> mixed text value <ex:elem2>Tagged Value</ex:elem2> mixed text value </ex:mixedContentType> </ex:echoMixedContentType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoMixedContentType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mixedContentType> <n1:elem1>Tagged Value</n1:elem1> <n1:elem2>Tagged Value</n1:elem2> </n1:mixedContentType> </n1:echoMixedContentType> </env:Body> </env:Envelope> |
|||
MixedContentType | MixedContentType04 | failed |
<?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:echoMixedContentType> <ex:mixedContentType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> text mixed value <ex:elem1>Tagged Value</ex:elem1> <ex:elem2>Tagged Value</ex:elem2> some more text in a mixed value </ex:mixedContentType> </ex:echoMixedContentType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoMixedContentType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:mixedContentType> <n1:elem1>Tagged Value</n1:elem1> <n1:elem2>Tagged Value</n1:elem2> </n1:mixedContentType> </n1:echoMixedContentType> </env:Body> </env:Envelope> |
|||
StringSimpleTypePattern | StringSimpleTypePattern01 | 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:echoStringSimpleTypePattern> <ex:stringSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:stringSimpleTypePattern> </ex:echoStringSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringSimpleTypePattern>123</n1:stringSimpleTypePattern> </n1:echoStringSimpleTypePattern> </env:Body> </env:Envelope> |
|||
StringSimpleTypePattern | StringSimpleTypePattern02 | 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:echoStringSimpleTypePattern> <ex:stringSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:stringSimpleTypePattern> </ex:echoStringSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoStringSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringSimpleTypePattern>009</n1:stringSimpleTypePattern> </n1:echoStringSimpleTypePattern> </env:Body> </env:Envelope> |
|||
IntSimpleTypePattern | IntSimpleTypePattern01 | 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:echoIntSimpleTypePattern> <ex:intSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:intSimpleTypePattern> </ex:echoIntSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intSimpleTypePattern>123</n1:intSimpleTypePattern> </n1:echoIntSimpleTypePattern> </env:Body> </env:Envelope> |
|||
IntSimpleTypePattern | IntSimpleTypePattern02 | 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:echoIntSimpleTypePattern> <ex:intSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:intSimpleTypePattern> </ex:echoIntSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:intSimpleTypePattern>009</n1:intSimpleTypePattern> </n1:echoIntSimpleTypePattern> </env:Body> </env:Envelope> |
|||
IntegerSimpleTypePattern | IntegerSimpleTypePattern01 | 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:echoIntegerSimpleTypePattern> <ex:integerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:integerSimpleTypePattern> </ex:echoIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerSimpleTypePattern>123</n1:integerSimpleTypePattern> </n1:echoIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
IntegerSimpleTypePattern | IntegerSimpleTypePattern02 | 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:echoIntegerSimpleTypePattern> <ex:integerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">9</ex:integerSimpleTypePattern> </ex:echoIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:integerSimpleTypePattern>9</n1:integerSimpleTypePattern> </n1:echoIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
LongSimpleTypePattern | LongSimpleTypePattern01 | 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:echoLongSimpleTypePattern> <ex:longSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:longSimpleTypePattern> </ex:echoLongSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLongSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:longSimpleTypePattern>123</n1:longSimpleTypePattern> </n1:echoLongSimpleTypePattern> </env:Body> </env:Envelope> |
|||
LongSimpleTypePattern | LongSimpleTypePattern02 | 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:echoLongSimpleTypePattern> <ex:longSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:longSimpleTypePattern> </ex:echoLongSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLongSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:longSimpleTypePattern>009</n1:longSimpleTypePattern> </n1:echoLongSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypePattern | DecimalSimpleTypePattern01 | 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:echoDecimalSimpleTypePattern> <ex:decimalSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1234.12</ex:decimalSimpleTypePattern> </ex:echoDecimalSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypePattern>1234.12</n1:decimalSimpleTypePattern> </n1:echoDecimalSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypePattern | DecimalSimpleTypePattern02 | 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:echoDecimalSimpleTypePattern> <ex:decimalSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">9898.00</ex:decimalSimpleTypePattern> </ex:echoDecimalSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypePattern>9898.00</n1:decimalSimpleTypePattern> </n1:echoDecimalSimpleTypePattern> </env:Body> </env:Envelope> |
|||
FloatSimpleTypePattern | FloatSimpleTypePattern01 | 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:echoFloatSimpleTypePattern> <ex:floatSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:floatSimpleTypePattern> </ex:echoFloatSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatSimpleTypePattern>123</n1:floatSimpleTypePattern> </n1:echoFloatSimpleTypePattern> </env:Body> </env:Envelope> |
|||
FloatSimpleTypePattern | FloatSimpleTypePattern02 | 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:echoFloatSimpleTypePattern> <ex:floatSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:floatSimpleTypePattern> </ex:echoFloatSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoFloatSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:floatSimpleTypePattern>009</n1:floatSimpleTypePattern> </n1:echoFloatSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DoubleSimpleTypePattern | DoubleSimpleTypePattern01 | 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:echoDoubleSimpleTypePattern> <ex:doubleSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:doubleSimpleTypePattern> </ex:echoDoubleSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleSimpleTypePattern>123</n1:doubleSimpleTypePattern> </n1:echoDoubleSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DoubleSimpleTypePattern | DoubleSimpleTypePattern02 | 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:echoDoubleSimpleTypePattern> <ex:doubleSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:doubleSimpleTypePattern> </ex:echoDoubleSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDoubleSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:doubleSimpleTypePattern>009</n1:doubleSimpleTypePattern> </n1:echoDoubleSimpleTypePattern> </env:Body> </env:Envelope> |
|||
ShortSimpleTypePattern | ShortSimpleTypePattern01 | 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:echoShortSimpleTypePattern> <ex:shortSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:shortSimpleTypePattern> </ex:echoShortSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoShortSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:shortSimpleTypePattern>123</n1:shortSimpleTypePattern> </n1:echoShortSimpleTypePattern> </env:Body> </env:Envelope> |
|||
ShortSimpleTypePattern | ShortSimpleTypePattern02 | 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:echoShortSimpleTypePattern> <ex:shortSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:shortSimpleTypePattern> </ex:echoShortSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoShortSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:shortSimpleTypePattern>009</n1:shortSimpleTypePattern> </n1:echoShortSimpleTypePattern> </env:Body> </env:Envelope> |
|||
NonNegativeIntegerSimpleTypePattern | NonNegativeIntegerSimpleTypePattern01 | 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:echoNonNegativeIntegerSimpleTypePattern> <ex:nonNegativeIntegerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:nonNegativeIntegerSimpleTypePattern> </ex:echoNonNegativeIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonNegativeIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonNegativeIntegerSimpleTypePattern>123</n1:nonNegativeIntegerSimpleTypePattern> </n1:echoNonNegativeIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
NonNegativeIntegerSimpleTypePattern | NonNegativeIntegerSimpleTypePattern02 | 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:echoNonNegativeIntegerSimpleTypePattern> <ex:nonNegativeIntegerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:nonNegativeIntegerSimpleTypePattern> </ex:echoNonNegativeIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoNonNegativeIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:nonNegativeIntegerSimpleTypePattern>009</n1:nonNegativeIntegerSimpleTypePattern> </n1:echoNonNegativeIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
PositiveIntegerSimpleTypePattern | PositiveIntegerSimpleTypePattern01 | 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:echoPositiveIntegerSimpleTypePattern> <ex:positiveIntegerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:positiveIntegerSimpleTypePattern> </ex:echoPositiveIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoPositiveIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:positiveIntegerSimpleTypePattern>123</n1:positiveIntegerSimpleTypePattern> </n1:echoPositiveIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
PositiveIntegerSimpleTypePattern | PositiveIntegerSimpleTypePattern02 | 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:echoPositiveIntegerSimpleTypePattern> <ex:positiveIntegerSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:positiveIntegerSimpleTypePattern> </ex:echoPositiveIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoPositiveIntegerSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:positiveIntegerSimpleTypePattern>009</n1:positiveIntegerSimpleTypePattern> </n1:echoPositiveIntegerSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedLongSimpleTypePattern | UnsignedLongSimpleTypePattern01 | 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:echoUnsignedLongSimpleTypePattern> <ex:unsignedLongSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:unsignedLongSimpleTypePattern> </ex:echoUnsignedLongSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedLongSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedLongSimpleTypePattern>123</n1:unsignedLongSimpleTypePattern> </n1:echoUnsignedLongSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedLongSimpleTypePattern | UnsignedLongSimpleTypePattern02 | 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:echoUnsignedLongSimpleTypePattern> <ex:unsignedLongSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:unsignedLongSimpleTypePattern> </ex:echoUnsignedLongSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedLongSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedLongSimpleTypePattern>009</n1:unsignedLongSimpleTypePattern> </n1:echoUnsignedLongSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedIntSimpleTypePattern | UnsignedIntSimpleTypePattern01 | 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:echoUnsignedIntSimpleTypePattern> <ex:unsignedIntSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:unsignedIntSimpleTypePattern> </ex:echoUnsignedIntSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedIntSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedIntSimpleTypePattern>123</n1:unsignedIntSimpleTypePattern> </n1:echoUnsignedIntSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedIntSimpleTypePattern | UnsignedIntSimpleTypePattern02 | 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:echoUnsignedIntSimpleTypePattern> <ex:unsignedIntSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:unsignedIntSimpleTypePattern> </ex:echoUnsignedIntSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedIntSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedIntSimpleTypePattern>009</n1:unsignedIntSimpleTypePattern> </n1:echoUnsignedIntSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedShortSimpleTypePattern | UnsignedShortSimpleTypePattern01 | 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:echoUnsignedShortSimpleTypePattern> <ex:unsignedShortSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">123</ex:unsignedShortSimpleTypePattern> </ex:echoUnsignedShortSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedShortSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedShortSimpleTypePattern>123</n1:unsignedShortSimpleTypePattern> </n1:echoUnsignedShortSimpleTypePattern> </env:Body> </env:Envelope> |
|||
UnsignedShortSimpleTypePattern | UnsignedShortSimpleTypePattern02 | 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:echoUnsignedShortSimpleTypePattern> <ex:unsignedShortSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">009</ex:unsignedShortSimpleTypePattern> </ex:echoUnsignedShortSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoUnsignedShortSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:unsignedShortSimpleTypePattern>009</n1:unsignedShortSimpleTypePattern> </n1:echoUnsignedShortSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DateSimpleTypePattern | DateSimpleTypePattern01 | 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:echoDateSimpleTypePattern> <ex:dateSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2006-12-18</ex:dateSimpleTypePattern> </ex:echoDateSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateSimpleTypePattern>2006-12-18</n1:dateSimpleTypePattern> </n1:echoDateSimpleTypePattern> </env:Body> </env:Envelope> |
|||
DateSimpleTypePattern | DateSimpleTypePattern02 | 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:echoDateSimpleTypePattern> <ex:dateSimpleTypePattern xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2007-01-01</ex:dateSimpleTypePattern> </ex:echoDateSimpleTypePattern> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDateSimpleTypePattern xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:dateSimpleTypePattern>2007-01-01</n1:dateSimpleTypePattern> </n1:echoDateSimpleTypePattern> </env:Body> </env:Envelope> |
|||
RestrictedMinInclusive | RestrictedMinInclusive01 | 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:echoRestrictedMinInclusive> <ex:restrictedMinInclusive xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:restrictedMinInclusive> </ex:echoRestrictedMinInclusive> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMinInclusive xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMinInclusive>1</n1:restrictedMinInclusive> </n1:echoRestrictedMinInclusive> </env:Body> </env:Envelope> |
|||
RestrictedMinInclusive | RestrictedMinInclusive02 | 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:echoRestrictedMinInclusive> <ex:restrictedMinInclusive xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">2</ex:restrictedMinInclusive> </ex:echoRestrictedMinInclusive> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMinInclusive xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMinInclusive>2</n1:restrictedMinInclusive> </n1:echoRestrictedMinInclusive> </env:Body> </env:Envelope> |
|||
RestrictedMaxInclusive | RestrictedMaxInclusive01 | 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:echoRestrictedMaxInclusive> <ex:restrictedMaxInclusive xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1</ex:restrictedMaxInclusive> </ex:echoRestrictedMaxInclusive> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMaxInclusive xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMaxInclusive>1</n1:restrictedMaxInclusive> </n1:echoRestrictedMaxInclusive> </env:Body> </env:Envelope> |
|||
RestrictedMaxInclusive | RestrictedMaxInclusive02 | 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:echoRestrictedMaxInclusive> <ex:restrictedMaxInclusive xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">3</ex:restrictedMaxInclusive> </ex:echoRestrictedMaxInclusive> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMaxInclusive xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMaxInclusive>3</n1:restrictedMaxInclusive> </n1:echoRestrictedMaxInclusive> </env:Body> </env:Envelope> |
|||
RestrictedLength | RestrictedLength01 | 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:echoRestrictedLength> <ex:restrictedLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">en</ex:restrictedLength> </ex:echoRestrictedLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedLength>en</n1:restrictedLength> </n1:echoRestrictedLength> </env:Body> </env:Envelope> |
|||
RestrictedLength | RestrictedLength02 | 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:echoRestrictedLength> <ex:restrictedLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">FR</ex:restrictedLength> </ex:echoRestrictedLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedLength>FR</n1:restrictedLength> </n1:echoRestrictedLength> </env:Body> </env:Envelope> |
|||
RestrictedMaxLength | RestrictedMaxLength01 | 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:echoRestrictedMaxLength> <ex:restrictedMaxLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">AUSTRALIA</ex:restrictedMaxLength> </ex:echoRestrictedMaxLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMaxLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMaxLength>AUSTRALIA</n1:restrictedMaxLength> </n1:echoRestrictedMaxLength> </env:Body> </env:Envelope> |
|||
RestrictedMaxLength | RestrictedMaxLength02 | 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:echoRestrictedMaxLength> <ex:restrictedMaxLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">N AMERICA</ex:restrictedMaxLength> </ex:echoRestrictedMaxLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMaxLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMaxLength>N AMERICA</n1:restrictedMaxLength> </n1:echoRestrictedMaxLength> </env:Body> </env:Envelope> |
|||
RestrictedMinLength | RestrictedMinLength01 | 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:echoRestrictedMinLength> <ex:restrictedMinLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">AUS</ex:restrictedMinLength> </ex:echoRestrictedMinLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMinLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMinLength>AUS</n1:restrictedMinLength> </n1:echoRestrictedMinLength> </env:Body> </env:Envelope> |
|||
RestrictedMinLength | RestrictedMinLength02 | 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:echoRestrictedMinLength> <ex:restrictedMinLength xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">GB</ex:restrictedMinLength> </ex:echoRestrictedMinLength> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoRestrictedMinLength xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:restrictedMinLength>GB</n1:restrictedMinLength> </n1:echoRestrictedMinLength> </env:Body> </env:Envelope> |
|||
ElementReference | ElementReference01 | 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:echoElementReference> <ex:customerName xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> </ex:customerName> </ex:echoElementReference> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementReference xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:customerName> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> </n1:customerName> </n1:echoElementReference> </env:Body> </env:Envelope> |
|||
AttributeReference | AttributeReference01 | 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:echoAttributeReference> <ex:clientName ex:phoneNumber="0123456789" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> </ex:clientName> </ex:echoAttributeReference> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeReference xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:clientName n1:phoneNumber="0123456789"> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> </n1:clientName> </n1:echoAttributeReference> </env:Body> </env:Envelope> |
|||
AttributeElementNameClash | AttributeElementNameClash01 | failed |
<?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:echoAttributeElementNameClash> <ex:clientDetails phone="0123456789" title="true" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:forename>Bobby</ex:forename> <ex:surname>Sox</ex:surname> <ex:title>Mr</ex:title> </ex:clientDetails> </ex:echoAttributeElementNameClash> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeElementNameClash xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:clientDetails phone="123456789" title="true"> <n1:forename>Bobby</n1:forename> <n1:surname>Sox</n1:surname> <n1:title>Mr</n1:title> </n1:clientDetails> </n1:echoAttributeElementNameClash> </env:Body> </env:Envelope> |
|||
ExtendedSequenceStrict | ExtendedSequenceStrict01 | 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:echoExtendedSequenceStrict> <ex:extendedSequenceStrict xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> </ex:extendedSequenceStrict> </ex:echoExtendedSequenceStrict> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceStrict xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceStrict> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> </n1:extendedSequenceStrict> </n1:echoExtendedSequenceStrict> </env:Body> </env:Envelope> |
|||
ExtendedSequenceStrict | ExtendedSequenceStrict02 | failed |
<?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:echoExtendedSequenceStrict> <ex:extendedSequenceStrict xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> <ex:extension> <ex:middleName>William</ex:middleName> <ex:title>Mr</ex:title> </ex:extension> </ex:extendedSequenceStrict> </ex:echoExtendedSequenceStrict> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceStrict xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceStrict> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> <n1:extension/> </n1:extendedSequenceStrict> </n1:echoExtendedSequenceStrict> </env:Body> </env:Envelope> |
|||
ExtendedSequenceLax | ExtendedSequenceLax01 | 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:echoExtendedSequenceLax> <ex:extendedSequenceLax xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> </ex:extendedSequenceLax> </ex:echoExtendedSequenceLax> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceLax xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceLax> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> </n1:extendedSequenceLax> </n1:echoExtendedSequenceLax> </env:Body> </env:Envelope> |
|||
ExtendedSequenceLax | ExtendedSequenceLax02 | failed |
<?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:echoExtendedSequenceLax> <ex:extendedSequenceLax xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> <ex:extension> <ex:middleName>William</ex:middleName> <ex:title>Mr</ex:title> </ex:extension> </ex:extendedSequenceLax> </ex:echoExtendedSequenceLax> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceLax xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceLax> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> <n1:extension/> </n1:extendedSequenceLax> </n1:echoExtendedSequenceLax> </env:Body> </env:Envelope> |
|||
ExtendedSequenceSkip | ExtendedSequenceSkip01 | 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:echoExtendedSequenceSkip> <ex:extendedSequenceSkip xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> </ex:extendedSequenceSkip> </ex:echoExtendedSequenceSkip> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceSkip xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceSkip> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> </n1:extendedSequenceSkip> </n1:echoExtendedSequenceSkip> </env:Body> </env:Envelope> |
|||
ExtendedSequenceSkip | ExtendedSequenceSkip02 | failed |
<?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:echoExtendedSequenceSkip> <ex:extendedSequenceSkip xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Bobby</ex:firstName> <ex:lastName>Sox</ex:lastName> <ex:extension> <ex:middleName>William</ex:middleName> <ex:title>Mr</ex:title> </ex:extension> </ex:extendedSequenceSkip> </ex:echoExtendedSequenceSkip> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSequenceSkip xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSequenceSkip> <n1:firstName>Bobby</n1:firstName> <n1:lastName>Sox</n1:lastName> <n1:extension/> </n1:extendedSequenceSkip> </n1:echoExtendedSequenceSkip> </env:Body> </env:Envelope> |
|||
ElementTypeDefaultNamespace | ElementTypeDefaultNamespace01 | 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:echoElementTypeDefaultNamespace> <ex:stringElementDefaultNamespace xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoElementTypeDefaultNamespace> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementTypeDefaultNamespace xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringElementDefaultNamespace xsi:nil="true"/> </n1:echoElementTypeDefaultNamespace> </env:Body> </env:Envelope> |
|||
ElementTypeDefaultNamespace | ElementTypeDefaultNamespace02 | 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:echoElementTypeDefaultNamespace> <ex:stringElementDefaultNamespace xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">This is a string!</ex:stringElementDefaultNamespace> </ex:echoElementTypeDefaultNamespace> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementTypeDefaultNamespace xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:stringElementDefaultNamespace>This is a string!</n1:stringElementDefaultNamespace> </n1:echoElementTypeDefaultNamespace> </env:Body> </env:Envelope> |
|||
BareVector | BareVector01 | 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:echoBareVector> <ex:bareVector xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item1>item one</ex:item1> <ex:item1>item two</ex:item1> <ex:item2>item three</ex:item2> <ex:item2>item four</ex:item2> <ex:item3>item five</ex:item3> <ex:item3>item six</ex:item3> </ex:bareVector> </ex:echoBareVector> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBareVector xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bareVector> <n1:item1>item one</n1:item1> <n1:item1>item two</n1:item1> <n1:item2>item three</n1:item2> <n1:item2>item four</n1:item2> <n1:item3>item five</n1:item3> <n1:item3>item six</n1:item3> </n1:bareVector> </n1:echoBareVector> </env:Body> </env:Envelope> |
|||
BareVector | BareVector02 | 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:echoBareVector> <ex:bareVector xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item1>item one</ex:item1> <ex:item1>item two</ex:item1> <ex:item3>item three</ex:item3> <ex:item3>item four</ex:item3> </ex:bareVector> </ex:echoBareVector> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBareVector xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bareVector> <n1:item1>item one</n1:item1> <n1:item1>item two</n1:item1> <n1:item3>item three</n1:item3> <n1:item3>item four</n1:item3> </n1:bareVector> </n1:echoBareVector> </env:Body> </env:Envelope> |
|||
BareVector | BareVector03 | 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:echoBareVector> <ex:bareVector xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item2>item one</ex:item2> <ex:item2>item two</ex:item2> <ex:item2>item three</ex:item2> <ex:item2>item four</ex:item2> <ex:item3>item five</ex:item3> <ex:item3>item six</ex:item3> </ex:bareVector> </ex:echoBareVector> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBareVector xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bareVector> <n1:item2>item one</n1:item2> <n1:item2>item two</n1:item2> <n1:item2>item three</n1:item2> <n1:item2>item four</n1:item2> <n1:item3>item five</n1:item3> <n1:item3>item six</n1:item3> </n1:bareVector> </n1:echoBareVector> </env:Body> </env:Envelope> |
|||
BareVector | BareVector04 | 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:echoBareVector> <ex:bareVector xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:item1>item one</ex:item1> <ex:item1>item two</ex:item1> <ex:item2>item three</ex:item2> <ex:item2>item four</ex:item2> </ex:bareVector> </ex:echoBareVector> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoBareVector xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bareVector> <n1:item1>item one</n1:item1> <n1:item1>item two</n1:item1> <n1:item2>item three</n1:item2> <n1:item2>item four</n1:item2> </n1:bareVector> </n1:echoBareVector> </env:Body> </env:Envelope> |
|||
ComplexTypeSequenceExtension | ComplexTypeSequenceExtension01 | 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:echoComplexTypeSequenceExtension> <ex:complexTypeSequenceExtension xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:name>Mary</ex:name> <ex:description>tall</ex:description> </ex:complexTypeSequenceExtension> </ex:echoComplexTypeSequenceExtension> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoComplexTypeSequenceExtension xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:complexTypeSequenceExtension> <n1:name>Mary</n1:name> <n1:description>tall</n1:description> </n1:complexTypeSequenceExtension> </n1:echoComplexTypeSequenceExtension> </env:Body> </env:Envelope> |
|||
TypeSubstitutionUsingXsiType | TypeSubstitutionUsingXsiType01 | 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:echoTypeSubstitutionUsingXsiType> <ex:assembly xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:part> <ex:number>p1</ex:number> </ex:part> <ex:part xsi:type="ex:Part2"> <ex:number>p2</ex:number> <ex:description>extended part</ex:description> </ex:part> </ex:assembly> </ex:echoTypeSubstitutionUsingXsiType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoTypeSubstitutionUsingXsiType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:assembly> <n1:part> <n1:number>p1</n1:number> </n1:part> <n1:part xsi:type="n1:Part2"> <n1:number>p2</n1:number> <n1:description>extended part</n1:description> </n1:part> </n1:assembly> </n1:echoTypeSubstitutionUsingXsiType> </env:Body> </env:Envelope> |
|||
SimpleTypeAttributes | SimpleTypeAttributes01 | 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:echoSimpleTypeAttributes> <ex:simpleTypeAttributes a1="foo" a2="bar" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">hello</ex:simpleTypeAttributes> </ex:echoSimpleTypeAttributes> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSimpleTypeAttributes xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:simpleTypeAttributes a1="foo" a2="bar">hello</n1:simpleTypeAttributes> </n1:echoSimpleTypeAttributes> </env:Body> </env:Envelope> |
|||
ExtendedSimpleType | ExtendedSimpleType01 | 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:echoExtendedSimpleType> <ex:extendedSimpleType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">hello</ex:extendedSimpleType> </ex:echoExtendedSimpleType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoExtendedSimpleType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:extendedSimpleType>hello</n1:extendedSimpleType> </n1:echoExtendedSimpleType> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs1 | SequenceMinOccurs101 | 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:echoSequenceMinOccurs1> <ex:sequenceMinOccurs1 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:sequenceMinOccurs1item>item1</ex:sequenceMinOccurs1item> </ex:sequenceMinOccurs1> </ex:echoSequenceMinOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceMinOccurs1> <n1:sequenceMinOccurs1item>item1</n1:sequenceMinOccurs1item> </n1:sequenceMinOccurs1> </n1:echoSequenceMinOccurs1> </env:Body> </env:Envelope> |
|||
SequenceMinOccursFinite | SequenceMinOccursFinite01 | failed |
<?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:echoSequenceMinOccursFinite> <ex:articleColors xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:articleColor>Red</ex:articleColor> <ex:articleContrast>Bright</ex:articleContrast> <ex:articleColor>Black</ex:articleColor> <ex:articleContrast>Bright</ex:articleContrast> <ex:articleColor>White</ex:articleColor> <ex:articleContrast>Low</ex:articleContrast> <ex:articleColor>Yellow</ex:articleColor> <ex:articleContrast>Normal</ex:articleContrast> </ex:articleColors> </ex:echoSequenceMinOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:articleColors> <n1:articleColor>Red</n1:articleColor> <n1:articleColor>Black</n1:articleColor> <n1:articleColor>White</n1:articleColor> <n1:articleColor>Yellow</n1:articleColor> <n1:articleContrast>Bright</n1:articleContrast> <n1:articleContrast>Bright</n1:articleContrast> <n1:articleContrast>Low</n1:articleContrast> <n1:articleContrast>Normal</n1:articleContrast> </n1:articleColors> </n1:echoSequenceMinOccursFinite> </env:Body> </env:Envelope> |
|||
SequenceMinOccursFinite | SequenceMinOccursFinite02 | failed |
<?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:echoSequenceMinOccursFinite> <ex:articleColors xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:articleColor>Black</ex:articleColor> <ex:articleContrast>Normal</ex:articleContrast> <ex:articleColor>White</ex:articleColor> <ex:articleContrast>Bright</ex:articleContrast> </ex:articleColors> </ex:echoSequenceMinOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:articleColors> <n1:articleColor>Black</n1:articleColor> <n1:articleColor>White</n1:articleColor> <n1:articleContrast>Normal</n1:articleContrast> <n1:articleContrast>Bright</n1:articleContrast> </n1:articleColors> </n1:echoSequenceMinOccursFinite> </env:Body> </env:Envelope> |
|||
SequenceMaxOccurs1 | SequenceMaxOccurs101 | 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:echoSequenceMaxOccurs1> <ex:myAgeDetails xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:myAge>44</ex:myAge> </ex:myAgeDetails> </ex:echoSequenceMaxOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:myAgeDetails> <n1:myAge>44</n1:myAge> </n1:myAgeDetails> </n1:echoSequenceMaxOccurs1> </env:Body> </env:Envelope> |
|||
SequenceMaxOccurs1 | SequenceMaxOccurs102 | 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:echoSequenceMaxOccurs1> <ex:myAgeDetails xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:myAge>4</ex:myAge> </ex:myAgeDetails> </ex:echoSequenceMaxOccurs1> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccurs1 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:myAgeDetails> <n1:myAge>4</n1:myAge> </n1:myAgeDetails> </n1:echoSequenceMaxOccurs1> </env:Body> </env:Envelope> |
|||
ElementMinOccurs0MaxOccursUnbounded | ElementMinOccurs0MaxOccursUnbounded101 | 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:echoElementMinOccurs0MaxOccursUnbounded> <ex:durationList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoElementMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs0MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationList/> </n1:echoElementMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
ElementMinOccurs0MaxOccursUnbounded | ElementMinOccurs0MaxOccursUnbounded102 | 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:echoElementMinOccurs0MaxOccursUnbounded> <ex:durationList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:durationValue>24</ex:durationValue> <ex:durationValue>34</ex:durationValue> <ex:durationValue>44</ex:durationValue> </ex:durationList> </ex:echoElementMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs0MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationList> <n1:durationValue>24</n1:durationValue> <n1:durationValue>34</n1:durationValue> <n1:durationValue>44</n1:durationValue> </n1:durationList> </n1:echoElementMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs0MaxOccursUnbounded | SequenceMinOccurs0MaxOccursUnbounded101 | failed |
<?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:echoSequenceMinOccurs0MaxOccursUnbounded> <ex:durationListSequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:durationVal>44</ex:durationVal> <ex:durationPercentage>33</ex:durationPercentage> <ex:durationVal>24</ex:durationVal> <ex:durationPercentage>45</ex:durationPercentage> <ex:durationVal>64</ex:durationVal> <ex:durationPercentage>22</ex:durationPercentage> </ex:durationListSequence> </ex:echoSequenceMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs0MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationListSequence> <n1:durationVal>44</n1:durationVal> <n1:durationVal>24</n1:durationVal> <n1:durationVal>64</n1:durationVal> <n1:durationPercentage>33</n1:durationPercentage> <n1:durationPercentage>45</n1:durationPercentage> <n1:durationPercentage>22</n1:durationPercentage> </n1:durationListSequence> </n1:echoSequenceMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs0MaxOccursUnbounded | SequenceMinOccurs0MaxOccursUnbounded102 | failed |
<?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:echoSequenceMinOccurs0MaxOccursUnbounded> <ex:durationListSequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoSequenceMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs0MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:durationListSequence> <n1:durationVal xsi:nil="true"/> <n1:durationPercentage xsi:nil="true"/> </n1:durationListSequence> </n1:echoSequenceMinOccurs0MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
ElementMinOccurs1MaxOccursUnbounded | ElementMinOccurs1MaxOccursUnbounded101 | 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:echoElementMinOccurs1MaxOccursUnbounded> <ex:ageList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:ageValue>44</ex:ageValue> </ex:ageList> </ex:echoElementMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs1MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ageList> <n1:ageValue>44</n1:ageValue> </n1:ageList> </n1:echoElementMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
ElementMinOccurs1MaxOccursUnbounded | ElementMinOccurs1MaxOccursUnbounded102 | 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:echoElementMinOccurs1MaxOccursUnbounded> <ex:ageList xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:ageValue>24</ex:ageValue> <ex:ageValue>34</ex:ageValue> <ex:ageValue>44</ex:ageValue> </ex:ageList> </ex:echoElementMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementMinOccurs1MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ageList> <n1:ageValue>24</n1:ageValue> <n1:ageValue>34</n1:ageValue> <n1:ageValue>44</n1:ageValue> </n1:ageList> </n1:echoElementMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs1MaxOccursUnbounded | SequenceMinOccurs1MaxOccursUnbounded101 | failed |
<?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:echoSequenceMinOccurs1MaxOccursUnbounded> <ex:ageListSequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:ageVal>44</ex:ageVal> <ex:agePercentage>33</ex:agePercentage> <ex:ageVal>24</ex:ageVal> <ex:agePercentage>45</ex:agePercentage> <ex:ageVal>64</ex:ageVal> <ex:agePercentage>22</ex:agePercentage> </ex:ageListSequence> </ex:echoSequenceMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs1MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ageListSequence> <n1:ageVal>44</n1:ageVal> <n1:ageVal>24</n1:ageVal> <n1:ageVal>64</n1:ageVal> <n1:agePercentage>33</n1:agePercentage> <n1:agePercentage>45</n1:agePercentage> <n1:agePercentage>22</n1:agePercentage> </n1:ageListSequence> </n1:echoSequenceMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs1MaxOccursUnbounded | SequenceMinOccurs1MaxOccursUnbounded102 | 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:echoSequenceMinOccurs1MaxOccursUnbounded> <ex:ageListSequence xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:ageVal>44</ex:ageVal> <ex:agePercentage>33</ex:agePercentage> </ex:ageListSequence> </ex:echoSequenceMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs1MaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:ageListSequence> <n1:ageVal>44</n1:ageVal> <n1:agePercentage>33</n1:agePercentage> </n1:ageListSequence> </n1:echoSequenceMinOccurs1MaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMaxOccursUnbounded | SequenceMaxOccursUnbounded01 | failed |
<?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:echoSequenceMaxOccursUnbounded> <ex:bookPublications xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:pubDate>2002-09-24</ex:pubDate> <ex:pubISBN>1-55960-907-6</ex:pubISBN> <ex:pubDate>2003-04-14</ex:pubDate> <ex:pubISBN>1-25466-908-6</ex:pubISBN> <ex:pubDate>2004-03-31</ex:pubDate> <ex:pubISBN>1-35460-909-6</ex:pubISBN> <ex:pubDate>2005-06-04</ex:pubDate> <ex:pubISBN>1-54560-910-6</ex:pubISBN> <ex:pubDate>2006-07-03</ex:pubDate> <ex:pubISBN>1-74869-911-6</ex:pubISBN> </ex:bookPublications> </ex:echoSequenceMaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bookPublications> <n1:pubDate>2002-09-24</n1:pubDate> <n1:pubDate>2003-04-14</n1:pubDate> <n1:pubDate>2004-03-31</n1:pubDate> <n1:pubDate>2005-06-04</n1:pubDate> <n1:pubDate>2006-07-03</n1:pubDate> <n1:pubISBN>1-55960-907-6</n1:pubISBN> <n1:pubISBN>1-25466-908-6</n1:pubISBN> <n1:pubISBN>1-35460-909-6</n1:pubISBN> <n1:pubISBN>1-54560-910-6</n1:pubISBN> <n1:pubISBN>1-74869-911-6</n1:pubISBN> </n1:bookPublications> </n1:echoSequenceMaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMaxOccursUnbounded | SequenceMaxOccursUnbounded02 | 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:echoSequenceMaxOccursUnbounded> <ex:bookPublications xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:pubDate>2006-01-26</ex:pubDate> <ex:pubISBN>1-44795-912-6</ex:pubISBN> </ex:bookPublications> </ex:echoSequenceMaxOccursUnbounded> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccursUnbounded xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:bookPublications> <n1:pubDate>2006-01-26</n1:pubDate> <n1:pubISBN>1-44795-912-6</n1:pubISBN> </n1:bookPublications> </n1:echoSequenceMaxOccursUnbounded> </env:Body> </env:Envelope> |
|||
SequenceMaxOccursFinite | SequenceMaxOccursFinite01 | failed |
<?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:echoSequenceMaxOccursFinite> <ex:winter xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:mnth>November</ex:mnth> <ex:weather>Rain</ex:weather> <ex:mnth>December</ex:mnth> <ex:weather>Snow</ex:weather> <ex:mnth>January</ex:mnth> <ex:weather>Snow</ex:weather> <ex:mnth>February</ex:mnth> <ex:weather>Rain</ex:weather> </ex:winter> </ex:echoSequenceMaxOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:winter> <n1:mnth>November</n1:mnth> <n1:mnth>December</n1:mnth> <n1:mnth>January</n1:mnth> <n1:mnth>February</n1:mnth> <n1:weather>Rain</n1:weather> <n1:weather>Snow</n1:weather> <n1:weather>Snow</n1:weather> <n1:weather>Rain</n1:weather> </n1:winter> </n1:echoSequenceMaxOccursFinite> </env:Body> </env:Envelope> |
|||
SequenceMaxOccursFinite | SequenceMaxOccursFinite02 | 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:echoSequenceMaxOccursFinite> <ex:winter xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:mnth>December</ex:mnth> <ex:weather>Snow</ex:weather> </ex:winter> </ex:echoSequenceMaxOccursFinite> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMaxOccursFinite xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:winter> <n1:mnth>December</n1:mnth> <n1:weather>Snow</n1:weather> </n1:winter> </n1:echoSequenceMaxOccursFinite> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs0 | SequenceMinOccurs001 | 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:echoSequenceMinOccurs0> <ex:sequenceMinOccurs0 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> <ex:lastName>Downey</ex:lastName> </ex:sequenceMinOccurs0> </ex:echoSequenceMinOccurs0> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs0 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceMinOccurs0> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName>Downey</n1:lastName> </n1:sequenceMinOccurs0> </n1:echoSequenceMinOccurs0> </env:Body> </env:Envelope> |
|||
SequenceMinOccurs0 | SequenceMinOccurs002 | failed |
<?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:echoSequenceMinOccurs0> <ex:sequenceMinOccurs0 xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoSequenceMinOccurs0> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceMinOccurs0 xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceMinOccurs0> <n1:firstName xsi:nil="true"/> <n1:middleName xsi:nil="true"/> <n1:lastName xsi:nil="true"/> </n1:sequenceMinOccurs0> </n1:echoSequenceMinOccurs0> </env:Body> </env:Envelope> |
|||
SequenceSequenceElement | SequenceSequenceElement01 | failed |
<?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:echoSequenceSequenceElement> <ex:sequenceSequenceElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> </ex:sequenceSequenceElement> </ex:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceSequenceElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceSequenceElement> <n1:firstName>Paul</n1:firstName> <n1:middleName xsi:nil="true"/> <n1:lastName xsi:nil="true"/> </n1:sequenceSequenceElement> </n1:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
|||
SequenceSequenceElement | SequenceSequenceElement02 | failed |
<?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:echoSequenceSequenceElement> <ex:sequenceSequenceElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> </ex:sequenceSequenceElement> </ex:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceSequenceElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceSequenceElement> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName xsi:nil="true"/> </n1:sequenceSequenceElement> </n1:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
|||
SequenceSequenceElement | SequenceSequenceElement03 | 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:echoSequenceSequenceElement> <ex:sequenceSequenceElement xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:firstName>Paul</ex:firstName> <ex:middleName>Sumner</ex:middleName> <ex:lastName>Downey</ex:lastName> </ex:sequenceSequenceElement> </ex:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoSequenceSequenceElement xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:sequenceSequenceElement> <n1:firstName>Paul</n1:firstName> <n1:middleName>Sumner</n1:middleName> <n1:lastName>Downey</n1:lastName> </n1:sequenceSequenceElement> </n1:echoSequenceSequenceElement> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypeTotalDigits | DecimalSimpleTypeTotalDigits01 | 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:echoDecimalSimpleTypeTotalDigits> <ex:decimalSimpleTypeTotalDigits xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1234</ex:decimalSimpleTypeTotalDigits> </ex:echoDecimalSimpleTypeTotalDigits> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypeTotalDigits xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypeTotalDigits>1234</n1:decimalSimpleTypeTotalDigits> </n1:echoDecimalSimpleTypeTotalDigits> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypeTotalDigits | DecimalSimpleTypeTotalDigits02 | 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:echoDecimalSimpleTypeTotalDigits> <ex:decimalSimpleTypeTotalDigits xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">12345</ex:decimalSimpleTypeTotalDigits> </ex:echoDecimalSimpleTypeTotalDigits> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypeTotalDigits xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypeTotalDigits>12345</n1:decimalSimpleTypeTotalDigits> </n1:echoDecimalSimpleTypeTotalDigits> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypeFractionDigits | DecimalSimpleTypeFractionDigits01 | 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:echoDecimalSimpleTypeFractionDigits> <ex:decimalSimpleTypeFractionDigits xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1234.00</ex:decimalSimpleTypeFractionDigits> </ex:echoDecimalSimpleTypeFractionDigits> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypeFractionDigits xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypeFractionDigits>1234.00</n1:decimalSimpleTypeFractionDigits> </n1:echoDecimalSimpleTypeFractionDigits> </env:Body> </env:Envelope> |
|||
DecimalSimpleTypeFractionDigits | DecimalSimpleTypeFractionDigits02 | 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:echoDecimalSimpleTypeFractionDigits> <ex:decimalSimpleTypeFractionDigits xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/">1234</ex:decimalSimpleTypeFractionDigits> </ex:echoDecimalSimpleTypeFractionDigits> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoDecimalSimpleTypeFractionDigits xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:decimalSimpleTypeFractionDigits>1234</n1:decimalSimpleTypeFractionDigits> </n1:echoDecimalSimpleTypeFractionDigits> </env:Body> </env:Envelope> |
|||
AttributeTypeReference | AttributeTypeReference01 | 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:echoAttributeTypeReference> <ex:attributeTypeReference number="123" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoAttributeTypeReference> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeTypeReference xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:attributeTypeReference number="123"/> </n1:echoAttributeTypeReference> </env:Body> </env:Envelope> |
|||
ElementTypeReference | ElementTypeReference01 | 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:echoElementTypeReference> <ex:elementTypeReference xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:text> <ex:referenced>foo</ex:referenced> </ex:text> </ex:elementTypeReference> </ex:echoElementTypeReference> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoElementTypeReference xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:elementTypeReference> <n1:text> <n1:referenced>foo</n1:referenced> </n1:text> </n1:elementTypeReference> </n1:echoElementTypeReference> </env:Body> </env:Envelope> |
|||
LocalElementComplexType | LocalElementComplexType01 | 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:echoLocalElementComplexType> <ex:localElementComplexType xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:name> <ex:firstName>Paul</ex:firstName> <ex:lastName>Paul</ex:lastName> </ex:name> </ex:localElementComplexType> </ex:echoLocalElementComplexType> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoLocalElementComplexType xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:localElementComplexType> <n1:name> <n1:firstName>Paul</n1:firstName> <n1:lastName>Paul</n1:lastName> </n1:name> </n1:localElementComplexType> </n1:echoLocalElementComplexType> </env:Body> </env:Envelope> |
|||
IdExample | IdExample01 | 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:echoIdExample> <ex:idExample string="hello" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"/> </ex:echoIdExample> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoIdExample xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:idExample string="hello"/> </n1:echoIdExample> </env:Body> </env:Envelope> |
|||
AttributeGroupExample | AttributeGroupExample01 | 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:echoAttributeGroupExample> <ex:attributeGroupExample id="AttributeGroupExample_contract_001" xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:contract>12345678910</ex:contract> </ex:attributeGroupExample> </ex:echoAttributeGroupExample> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeGroupExample xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:attributeGroupExample id="AttributeGroupExample_contract_001"> <n1:contract>12345678910</n1:contract> </n1:attributeGroupExample> </n1:echoAttributeGroupExample> </env:Body> </env:Envelope> |
|||
AttributeGroupExample | AttributeGroupExample02 | 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:echoAttributeGroupExample> <ex:attributeGroupExample xmlns:soap11enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"> <ex:contract>9876543210</ex:contract> </ex:attributeGroupExample> </ex:echoAttributeGroupExample> </env:Body> </env:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <n1:echoAttributeGroupExample xmlns:n1="http://www.w3.org/2002/ws/databinding/examples/6/09/"> <n1:attributeGroupExample> <n1:contract>9876543210</n1:contract> </n1:attributeGroupExample> </n1:echoAttributeGroupExample> </env:Body> </env:Envelope> |
Unless otherwise stated, all test cases, documents and supporting code are copyright © W3C and are licensed for use under the W3C Document License.
Copyright © 2006-2007 W3C ® ( MIT , ERCIM , Keio), All Rights Reserved. W3C liability, trademark, document use and software licensing rules apply. Your interactions with this site are in accordance with our public and Member privacy statements.