Coppermill
Coppermill

Reputation: 6794

WSDL / Web Service and need to generate interfaces

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

Answers (3)

RichardOD
RichardOD

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

brianegge
brianegge

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

RobbR
RobbR

Reputation: 1182

Apache CXF has tools that will generate interfaces for several languages

Upvotes: 0

Related Questions