.Net WSDL command line utility error - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T12:40:33Z http://stackoverflow.com/feeds/question/419547 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error 0 .Net WSDL command line utility error orj 2009-01-07T08:17:29Z 2009-05-21T09:58:12Z <p>I'm pointing the .Net command line WSDL utility that ships with Visual Studio 2005 at a web service implemented in Java (which I have no control over) and it spits out the following error:</p> <pre><code>WSDL : error WSDL1: Unable to cast object of type 'System.Xml.XmlElement' to type 'System.Web.Services.Description.ServiceDescriptionFormatExtension'. </code></pre> <p>Yet if I point Visual Studio 2005 itself at the service via the Add Web Reference dialog it generates a proxy class for me just fine.</p> <p>I'm using the WSDL utility to generate all my other service proxies just fine (though an old one does emit a bunch of warnings).</p> <p>Currently I'm pointing the WSDL utility at the URLs of deployed web services. All of which were developed in Java.</p> <p>I want to use the WSDL command line utility in the build process to ensure I have the most up-to-date proxy code each time I compile.</p> http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error/484253#484253 0 Answer by Klathzazt for .Net WSDL command line utility error Klathzazt 2009-01-27T17:05:55Z 2009-01-27T17:05:55Z <p>Is this an XSD File? files have dependencies. Download the dependency files and place them side/by/side with the XSD you downloaded. I would assume visual studio may fetch dependencies.</p> <p>If this doesn't solve it, please provide more details.</p> http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error/495300#495300 0 Answer by cgreeno for .Net WSDL command line utility error cgreeno 2009-01-30T12:05:15Z 2009-02-07T02:05:08Z <p>Try specifying the option <strong>protocol <a href="http://msdn.microsoft.com/en-us/library/microsoft.web.services3.soap12_properties.aspx" rel="nofollow">SOAP12</a></strong> </p> <p>/protocol:protocol (<a href="http://msdn.microsoft.com/en-us/library/7h3ystb6.aspx" rel="nofollow">as show on MSDN</a>)</p> <p>Specifies the protocol to implement. You can specify SOAP (default), HttpGet, HttpPost, or a custom protocol specified in the configuration file. When using the /parameters option, this value is the element and contains a string.</p> <p>If that does not help then.......</p> <p>Visual Studio's "Add Web Reference" calls the WSDL.exe when adding a web reference. Basically there is <a href="http://bytes.com/groups/net-web-services/427848-wsdl-exe-vs-add-web-reference" rel="nofollow">no difference</a>, other then the control you retain when running the <a href="http://msdn.microsoft.com/en-us/library/7h3ystb6.aspx" rel="nofollow">WSDL.exe</a> command from the command line. I would suspect that one of your arguments is incorrect or different then the one Visual Studio is setting. </p> <p>To test this you would need to compare the output for from the 2 different XSD files that are generated, that will give you more of a clue of what is wrong(as Klathzazt has suggested). </p> <p>Good Luck</p>