mmm.. it's strange.. neither if i make an HTTP GET request with a
RequestBuilder like this?

RequestBuilder xmlFile = new RequestBuilder(RequestBuilder.GET, "/
blabla.xml");

                try {
                        xmlFile.sendRequest(null, new RequestCallback() {
                                public void onError(Request request, Throwable 
exception) {
                                        requestFailed(exception);
                                }
                                public void onResponseReceived(Request request, 
Response response)
{
                                        parseXML(response.getText());
                                }
                        });
                } catch (RequestException ex) {
                        requestFailed(ex);
                }

On Apr 8, 10:42 pm, Katharina Probst <kpro...@google.com> wrote:
> Well, your app won't just be able to access the file system on the client
> side, because the browser runs in a sandbox (you wouldn't want any web app
> reading your files from your desktop...).  But you *could* have the user
> upload a file, if that's what you want?  
> Seehttp://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/g...
> .
>
> kathrin

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to