5

converting a WSDL to a REST web service, Is there a C# version of this library? http://wsdl2rest.sourceforge.net/

001
  • 62,807
  • 94
  • 230
  • 350

1 Answers1

1

I was wondering if you really need a library for this? I mean as long as you have the WSDL you can create a service using the svcutil and decorate the methods with WebInvoke and WebGet also specifying the method (POST/GET/PUT) and the UrlTemplate. The methods would also have return types and input params based on your current wsdl.

I haven't tried it but I've been reading on the issue as my current project requires me to do so when I get that stage of our development effort...

Here are some sources: How to use a WSDL file to create a WCF service (not make a call) "Reverse" WCF Service (Building a server from a client definition) How to use a WSDL File to create a WCF Proxy?

and so forth...

Community
  • 1
  • 1
bleepzter
  • 9,607
  • 11
  • 41
  • 64