Skip to content

Commit 903ae55

Browse files
authored
Merge pull request #12 from php-soap/multi-encoder-tests
Apply improvements for new encoder
2 parents 464943c + 149f079 commit 903ae55

4 files changed

Lines changed: 23 additions & 154 deletions

File tree

fixtures/wsdl/functional/normalizedString.wsdl

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
xmlns="http://schemas.xmlsoap.org/wsdl/"
88
targetNamespace="http://soapinterop.org/">
99

10+
<types>
11+
<xsd:schema targetNamespace="http://soapinterop.org/">
12+
<xsd:element name="normalizedString" type="xsd:normalizedString" />
13+
</xsd:schema>
14+
</types>
15+
1016
<message name="validateRequest">
11-
<part name="input" type="xsd:normalizednormalizedString" />
17+
<part name="input" type="normalizedString" />
1218
</message>
1319
<message name="validateResponse">
14-
<part name="output" type="xsd:normalizedString" />
20+
<part name="output" type="normalizedString" />
1521
</message>
1622

1723
<portType name="InteropTestPortType">

fixtures/wsdl/functional/token.wsdl

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
xmlns="http://schemas.xmlsoap.org/wsdl/"
88
targetNamespace="http://soapinterop.org/">
99

10+
<types>
11+
<xsd:schema targetNamespace="http://soapinterop.org/">
12+
<xsd:element name="token" type="xsd:token" />
13+
</xsd:schema>
14+
</types>
15+
1016
<message name="validateRequest">
11-
<part name="input" type="xsd:token" />
17+
<part name="input" type="token" />
1218
</message>
1319
<message name="validateResponse">
14-
<part name="output" type="xsd:token" />
20+
<part name="output" type="token" />
1521
</message>
1622

1723
<portType name="InteropTestPortType">

0 commit comments

Comments
 (0)