"Any tool for creating a web services proxy for .Net 1.1"

I have a WSDL file with links to an external XSD (I also have xsd deployed to the correct relative path since it is referenced in WSDL). When I try to create a proxy server using VS 2003 (.NET Wsdl 1.1 tool), a proxy is not generated. However, for VS 2005, he did a great job. What could be wrong. Any ideas?

It makes it possible not to import the binding and does not generate a proxy class.

PS: My wsdl file is very long, and there are dozens of xsd to which it refers, so you can not publish everything here.

EDIT:

Is there any other tool available that can generate a proxy server for .Net 1.1 (preferably CSharp).

+2
source share
1 answer

There were spaces in the XSD in attribute names that caused the proxy server to not generate. I removed the spaces and manually modified the XSD to create some kind of partially correct proxy. I ended up updating manually generated proxies to remove errors.

+1
source

Source: https://habr.com/ru/post/1380073/


All Articles