How do I generate C# code from WADL files?

Posted by Anders Sandvig on Stack Overflow See other posts from Stack Overflow or by Anders Sandvig
Published on 2009-07-14T16:11:00Z Indexed on 2010/05/06 1:58 UTC
Read the original article Hit count: 1578

Filed under:
|
|
|

I am looking for a code generator than can generate C# code to access RESTful web services described by WADL files in a way similar to how wadl2java works.

Doing som searching I came across the rest-api-code-gen project on Google Code, but although the latest source does in fact support C#, the REST Describe & Compile demo site does not. (The C# button is there, but it's disabled.)

I realize I could download the source and set up my own server with the latest version, but I would prefer not to, as what I need is a command line tool and not a web application with dependencies to Google Web Toolkit. I guess I could write my own a command line tool based on the same source code, but if it has already been done, or other tools can do the job, I'd rather avoid it.

So, I'm wondering, are there any tools like that out there?

© Stack Overflow or respective owner

Related posts about wadl

Related posts about c#