views:

1131

answers:

1

wsdl.exe, appears to be the default tool for .Net to generate proxy class from wsdl. It has known problems (see here and here, also some SO questions). Is there an alternative proxy class generator?

I am not doing WCF, so tools such as svcutil.exe may not be usable.

+2  A: 

wsdl.exe is the only core .NET proxy generator other than svcutil.exe. If you want anything else, you'll need a third-party tool. Unfortunately, I don't know of one.

Randolpho