-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: simakov <[email protected]>
- Loading branch information
1 parent
08cecb5
commit 3f9f805
Showing
3 changed files
with
123 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0"?> | ||
<definitions name="StockQuote" | ||
targetNamespace="http://example.com/stockquote.wsdl" | ||
xmlns:tns="http://example.com/stockquote.wsdl" | ||
xmlns:xsd1="http://example.com/stockquote.xsd" | ||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | ||
xmlns="http://schemas.xmlsoap.org/wsdl/"> | ||
<types> | ||
<schema targetNamespace="http://example.com/stockquote.xsd" | ||
xmlns="http://www.w3.org/2000/10/XMLSchema"> | ||
<element name="TradePriceRequest"> | ||
<complexType> | ||
<s:attribute name="AttributeInOne" type="s:boolean" /> | ||
<all> | ||
<element name="tickerSymbol" type="string"/> | ||
</all> | ||
<s:attribute name="AttributeInTwo" type="s:boolean" use="required" /> | ||
</complexType> | ||
</element> | ||
<element name="TradePrice"> | ||
<complexType> | ||
<element name="price" type="float"/> | ||
<s:attribute name="AttributeOut" type="s:boolean" use="required" /> | ||
</complexType> | ||
</element> | ||
</schema> | ||
</types> | ||
|
||
<message name="GetLastTradePriceInput"> | ||
<part name="body" element="xsd1:TradePriceRequest"/> | ||
</message> | ||
|
||
<message name="GetLastTradePriceOutput"> | ||
<part name="body" element="xsd1:TradePrice"/> | ||
</message> | ||
|
||
<portType name="StockQuotePortType"> | ||
<operation name="GetLastTradePrice"> | ||
<input message="tns:GetLastTradePriceInput"/> | ||
<output message="tns:GetLastTradePriceOutput"/> | ||
</operation> | ||
</portType> | ||
|
||
<binding name="StockQuoteSoapBinding" type="tns:StockQuotePortType"> | ||
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> | ||
<operation name="GetLastTradePrice"> | ||
<soap:operation soapAction="http://example.com/GetLastTradePrice"/> | ||
<input> | ||
<soap:body use="literal"/> | ||
</input> | ||
<output> | ||
<soap:body use="literal"/> | ||
</output> | ||
</operation> | ||
</binding> | ||
|
||
<service name="StockQuoteService"> | ||
<documentation>My first service</documentation> | ||
<port name="StockQuotePort" binding="tns:StockQuoteSoapBinding"> | ||
<soap:address location="http://example.com/stockquote"/> | ||
</port> | ||
</service> | ||
|
||
</definitions> |