Restlet Createquery Fails With Connection Error (and After Workaround Nosuchmethoderror)
I followed the Android restlet tutorial and tried to consume a sample OData webservice (http://services.odata.org/OData/OData.svc/). When I create a query with myService.createPro
Solution 1:
For future readers that come upon this question: just make double sure your Manifest file sets permission on your application to access the internet. (For shame). Obviously it needs access to the network to "call" the webservice.
..
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
Post a Comment for "Restlet Createquery Fails With Connection Error (and After Workaround Nosuchmethoderror)"