(The WSDL spec is a "W3C Note", which means it is verbatim what the vendors submitted to W3C, so it isn't W3C's fault that the spec has errors. The vendors never revised the WSDL 1.1 specification, therefore it stands as is. You should consult the WS-I Basic Profile to resolve any questions you have about the spec.)
Anne
On 1/11/07,
Jason Viers <lists@...> wrote:
Looking at the w3c's first WSDL document example
(http://www.w3.org/TR/wsdl#_example1), I noticed something:
<?xml version="1.0"?>
<definitions name="StockQuote" ...
<binding name="StockQuoteSoapBinding" type="tns:StockQuotePortType">
...
</binding>
<service name="StockQuoteService">
<documentation>My first service</documentation>
<port name="StockQuotePort" binding="tns:StockQuoteBinding">
...
</port>
</service>
</definitions>
Shouldn't the port's binding attribute (StockQuoteBinding) and the name
of the binding (StockQuoteSoapBinding) match up? I doubt such a simple
mistake would go unnoticed in a w3c doc, is there something I'm not
getting?
Bean