XMLParser Help

2010-02-10 Thread Russ
Hi, Could someone point me to an example (or tutorial) of how to retrieve, parse and display data from a reomte XML doc? I've tried numerous examples from the web with no luck. This time I'd like to try GWT's XMLParser. Thank you, -Russ -- You received this message because you are subscribed

Re: XMLParser Help

2010-02-10 Thread Harald Pehl
If you wa On 10 Feb., 16:56, Russ r...@epcinternet.com wrote: Hi, Could someone point me to an example (or tutorial) of how to retrieve, parse and display data from a reomte XML doc? I've tried numerous examples from the web with no luck. This time I'd like to try GWT's XMLParser. Thank

Re: XMLParser Help

2010-02-10 Thread Harald Pehl
If you want to map the XML to model classes you can take a look at http://code.google.com/p/piriti/. It's an XML mapper for GWT which can take data from the XML and inject it into your model classes. HTH Cheers Harald On 10 Feb., 16:56, Russ r...@epcinternet.com wrote: Hi, Could someone point

Re: XMLParser Help

2010-02-10 Thread Russ
Thanks, but I'm really just looking for a basic tutorial or example on how to grab remote XML data using GWT's com.google.gwt.xml.client.XMLParser Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: XMLParser Help

2010-02-10 Thread John Ivens
In the server impl file: @Override *public* String getMapURL(String theURL) { URL url = *null*; String s = *null*; String retstr = ; *try* { url = *new* URL(theURL); BufferedReader reader = *new* BufferedReader(*new*InputStreamReader(url.openStream())); *while* ((s = reader.readLine()) !=

Re: XMLParser Help

2010-02-10 Thread Arpad
http://code.google.com/p/google-web-toolkit/source/browse/#svn/trunk/samples/simplexml http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/simplexml/src/com/google/gwt/sample/simplexml/client/SimpleXML.java Yours, Arpad -- You received this message because you are