Reputation: 11
I'm new in Android and I have to do an application (in android) that consumes a NET WCF service with httpbasicbinding. I have heard about use of ksoap2-android, json and restfull but I don't know which is the best way for my app.
Anyone can suggest me anything?
Another problem is my WCF service return complex objects made by Linq To Sql and I don't know how can I use it in Android.
Thanks in advance!
Upvotes: 1
Views: 746
Reputation: 143319
If you use oData web services you can use the odata4j client library.
If you're using Service Stack to develop your web services you can use any REST client to easily consume them (in any format i.e. JSON, XML, JSV, SOAP, etc). The Hello World example shows a number of different ways you can consume a single web service.
Upvotes: 1