I want to execute the functioncall GetProductsByRating from the services.odata.org/OData/OData.svc/ odata web-service endpoint, using odata4j.
My code is the following:
Enumerable<OObject> e = consumer.callFunction("GetProductsByRating").pInt32("rating", 3).execute();
When i run this code, I get the following exception:
05-23 11:52:13.343: W/System.err(2794): java.lang.UnsupportedOperationException: Not supported yet.
Can anybody tell if the current version (0.7) already handles these function call responses and if not, when it will?
I also would like to know if there is some alternative to obtain a response from this type of operation. An alternative Android/Java library or method would be ideal.
Thanks