Hi,
I have been using this code to parse some XML data from a specific
server :

URL url = new URL("http://myserver.com/someXMLScript";);
                URLConnection conn = url.openConnection();
            InputStream is = conn.getInputStream();
 Xml.parse(is, Xml.Encoding.ISO_8859_1, new ExampleHandler(myAdapter,
this));

Now I was wondering can I add a String or something to this request so
that, for example, I might be supplying the device's unique ID to this
request for the XML file ?
So I don't just want to parse the XML but I also want to send along a
String...
Thanks in advance !

-- 
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