Skip to main content

Posts

Showing posts from January, 2010

Android Virtual Devices

Creating an AVD [android create avd -n -t [- ] ... ] android create avd -n avd1.6 -t 3 [android list targets] Available Android targets: id:1 Name: Android 1.1 Type: platform API level: 2 Skins: HVGA (default), HVGA-L, HVGA-P, QVGA-L, QVGA-P id:2 Name: Android 1.5 Type: platform API level: 3 Skins: HVGA (default), HVGA-L, HVGA-P, QVGA-L, QVGA-P id:3 Name: Google APIs Type: add-on Vendor: Google Inc. Description: Android + Google APIs Based on Android 1.5 (API level 3) Libraries: * com.google.android.maps (maps.jar) API for Google Maps Skins: HVGA (default), HVGA-L, QVGA-P, HVGA-P, QVGA-L Deleting an AVD You can use the android tool to delete an AVD. Here is the command usage: [android delete avd -n ] android delete avd -n avd1.6 http://developer.android.com/guide/developing/tools/avd.html

web service: Request format is unrecognized for URL unexpectedly ending

<system.web> <webservices> <protocols> <add name="HttpGet"> <add name="HttpPost"> </add></add></protocols> </webservices> .... ASP.NET Webservices "The test form is only available for requests from the local machine" This would enable the Web service to be able to be invoked from remote machine. However, this invoking would work only for simple data types and would not work in the case of complex datatypes. Similarly, this setting would only be useful in development / testing scenarios and it is advisable to remove / comment the above section when releasing for production, due to security reasons.