Reputation: 3018
The problem with J2ME clients consuming ADO.NET Data Services (Astoria) is that there is no support for the PUT and DELETE verbs.
Using the WCF REST Starter kit one can intercept a request to a WCF service using a new ServiceHost that exposes a property called Interceptors
which lets you intercept requests and responses. Since Astoria is built on WCF we're home free, right?
Wrong. This technique wont work since Astoria uses another ServiceHost implementation that derives from IDataServiceHost.
As I see it the options are:
Any suggestions?
Upvotes: 1
Views: 631