test/fixtures/stock_quote.wsdl in lolsoap-0.1.4 vs test/fixtures/stock_quote.wsdl in lolsoap-0.2.0
- old
+ new
@@ -4,45 +4,48 @@
targetNamespace="http://example.com/stockquote.wsdl"
xmlns:tns="http://example.com/stockquote.wsdl"
xmlns:xsd1="http://example.com/stockquote.xsd"
xmlns:xsd2="http://example.com/stockquote2.xsd"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace="http://example.com/stockquote.xsd"
+ xmlns:xsd3="http://example.com/stockquote.xsd"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="TradePrice">
<complexType>
<all>
- <element name="price" type="float"/>
+ <element name="xsd3:price" type="xs:float"/>
</all>
</complexType>
</element>
- <complexType name="TradePriceRequest">
+ <complexType name="xsd3:TradePriceRequest">
<sequence>
- <element name="tickerSymbol" type="string" maxOccurs="5"/>
+ <element name="tickerSymbol" type="xs:string" maxOccurs="5"/>
<element name="specialTickerSymbol" type="xsd2:TickerSymbol" maxOccurs="unbounded"/>
+ <attribute name="id" type="xs:string"/>
</sequence>
</complexType>
</schema>
<schema targetNamespace="http://example.com/stockquote2.xsd"
xmlns="http://www.w3.org/2001/XMLSchema">
<complexType name="TickerSymbol">
<sequence>
- <element name="name" type="string" maxOccurs="1"/>
+ <element name="name" type="xs:string" maxOccurs="1"/>
</sequence>
</complexType>
</schema>
</types>
<message name="GetLastTradePriceInput">
<part name="body" element="xsd1:TradePriceRequest"/>
</message>
<message name="GetLastTradePriceOutput">
- <part name="body" element="xsd1:TradePrice"/>
+ <part name="body" element="xsd3:TradePrice"/>
</message>
<portType name="StockQuotePortType">
<operation name="GetLastTradePrice">
<input message="tns:GetLastTradePriceInput"/>