tags:

views:

69

answers:

2

Are there any OData provider SDKs for Ruby or Java?

+1  A: 

there is a project called odata4j on googlecode that can be used to implement producers and consumers. But i haven't tried it yet

Nikolaus Gradwohl
A: 

I've used ruby_odata successfully. It works well against a simple model and provides mappings for all the basic query options, although you do need to know the operators (like eq, substringof, etc).

I did run into a more complex model and needed to tweak the code a bit. It's easy to pick up on: http://odetocode.com/Blogs/scott/archive/2010/07/11/odata-and-ruby.aspx

OdeToCode
Looks lik ruby_odata is a **consumer** SDK, not a **provider** one.
RaduGrama