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

Reply via email to