I am trying to implement the Parsing HTML web service as described in chapter 23 of ASP.NET Unleashed (1st ed.) And in this MSDN article . So far, so good! However, I get an annoying warning when using wsdl.exe to generate a class:
Microsoft (R) Web Services Description Language Utility
[Microsoft (R) .NET Framework, Version 2.0.50727.3038]
Copyright (C) Microsoft Corporation. All rights reserved.
Warning: This web reference does not conform to WS-I Basic Profile v1.1.
SOAP 1.1 binding was not found: WS-I Basic Profile 1.1 consists of
implementation guidelines that recommend how a set of core web services
specifications should be used together to develop interoperable Web
services. For the 1.1 Profile, those specifications are SOAP 1.1,
WSDL 1.1, UDDI 2.0, XML 1.0 and XML Schema.
For more details on the WS-I Basic Profile v1.1, see the specification
at http://www.ws-i.org/Profiles/BasicProfile-1.1.html.
I would like to meet the specifications if possible. I looked at the recommended page and found a couple of pages on w3.org, but I did not find a specific example of which xml elements I need to include them to match.
Instead of publishing my xml, I just say that wsdl is roughly the same as what is used in the MSDN article (except that I fixed the invalid XMLSchema URL on w3.org by adding ".dtd").
Thank!
source
share