views:

76

answers:

3

I have an WSDL / Web Service and I need to generate an set of Interfaces for them, is there any easy way of generating Interfaces for the WSDL?

+1  A: 

Yes. Download SoapUI for free. SoapUI can generate code, interfaces, or stubs for a variety of platforms, including .NET and numerous Java formats.

brianegge
A: 

Apache CXF has tools that will generate interfaces for several languages

RobbR
+2  A: 

As you're a C# developer I'm assuming you mean C# interfaces for the client? You can do this using svcutil for WCF or WSDL.exe for legacy Web services.

RichardOD
+1 for svcutil / WCF - that's the place to be!
marc_s