Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WSDL2REST - is there a C# version? (convert SOAP to RESTful web service)

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

like image 533
001 Avatar asked Nov 13 '22 17:11

001


1 Answers

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...

like image 79
bleepzter Avatar answered Dec 25 '22 09:12

bleepzter