Reputation: 6794
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?
Upvotes: 0
Views: 3621
Reputation: 29157
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.
Upvotes: 4
Reputation: 29872
Yes. Download SoapUI for free. SoapUI can generate code, interfaces, or stubs for a variety of platforms, including .NET and numerous Java formats.
Upvotes: 3
Reputation: 1182
Apache CXF has tools that will generate interfaces for several languages
Upvotes: 0