views:

47

answers:

1

We have a fairly straight forward line of business application implemented with ASP.NET MVC2 and we have a new requirement to be able to share our data with other parts of the business, which include SharePoint 2010, Ruby and Python.

I'd like to use OData as the transport mechanism (as opposed to SOAP) using our existing MVC application. I'm struggling to find anyone mentioning an implementation of an OData provider for MVC.

Can you suggest either how I might be able to start rolling my own OData ASP.NET MVC provider or point me to somewhere which might have already started something similar?

A: 

You could check this out

http://meta.stackoverflow.com/questions/43991/implement-odata-api-for-stackoverflow

implemented here http://odata.stackexchange.com

Barry
Barry - thanks for the link. I think what I was really searching for was a pure ASP.NET MVC OData implementation, but it looks like the WCF DataService route is a straight forward way to go.
Phil Peace