Help,

I'm seeing an error with GWT.runAsync on Safari (v5.1, 4.01):
com.google.gwt.core.client.impl.AsyncFragmentLoader$HttpDownloadFailure:
Download of 
http://xyz.appspot.com/myapp/deferredjs/DB91D61F68FC8AD63A3F2FE426E34531/5.cache.js
failed with status 0()
    at Unknown.Gjb(StackTraceCreator.java:168)
    at Unknown.vc(StackTraceCreator.java:421)
    at Unknown.cjb(Throwable.java:46)
    at Unknown.$jb(XhrLoadingStrategy.java:254)
    at Unknown.anonymous(XMLHttpRequest.java:287)
    at Unknown.pjb(Impl.java:168)
    at Unknown.sjb(Impl.java:221)
    at Unknown.anonymous(Impl.java:57)

1) the code runs fine on firefox and chrome
2) the 5.cache.js file is there on the server and can be accessed
directly and the server logs report no failure in the resource not
being found (note: the url above was changed for this mail)
3) using GWT 2.3

Fyi the code in question is like:

GWT.runAsync(new RunAsyncCallback() {

                                                                        
@Override public void onFailure(Throwable caught) {
                                                                                
Log.error("err fetching code for controllers", caught);
                                                                        }

                                                                        
@Override public void onSuccess() {

                                                                                
// do some work
                                                                                
Log.debug("Non history forward called for NAVIGATION with
data:" + mvce.getAppEvent().getData());
                                                                        }
                                                                });


What should I be doing?


 Shawn

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" 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/google-web-toolkit?hl=en.

Reply via email to