What's this got to do with Android? WebServices use SOAP, not JSON. You may have defined the response format to be JSON, but I assume the request requires SOAP since it is a WebService.
On Oct 21, 2:22 am, Jude <[email protected]> wrote: > Here is my .NET Web Service > [WebMethod] > [ScriptMethod(ResponseFormat = ResponseFormat.Json)] > public ArrayList GetAList() > { > ArrayList myList = new ArrayList(); > myList.Add("One"); > myList.Add("Two"); > myList.Add("Three"); > > return myList; > } > > myserver.com/webservice.asmx > > How would i call this using JSON? > > Ironically i know what to do with it after it has already been called > using the JSONArray Object. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

