Following advice on here, I am looking at whether to replace WCF with OpenRasta.

In Visual Studio, how do I consume an OpenRasta in the same way as I would a WCF/ASMX service e.g. Add a service reference, this handles the types using WSDL.

I can't find any examples which don't require a custom WebRequest and parse the xml, which for us is a significant step backwards for utilising a service in code.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

OpenRasta is designed to give you RESTful services. To consume that, you might want to look at something like RestSharp which is designed to act as a client/consumer for RESTful services.

link|improve this answer
I'll have a look at RestSharp, thanks Colin – Macropus Jun 3 '11 at 2:02
feedback

As Colin says, ReSTful services are by definition hypermedia oriented, so generating lots and lots of RPC style code a la WSDL is not doable, it would break hypermedia.

You can still happily generate datacontract-style classes from an xsd and read those from the xml, it's at most 4 lines of code.

link|improve this answer
Thanks Seb. Do you have any examples of this on your wiki? – Macropus Jun 3 '11 at 1:58
Seb - sorry for the sub question, but is OpenRasta Mono compliant? – Macropus Jun 3 '11 at 2:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.