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