On 10 nov, 16:53, mgillian <[email protected]> wrote: > I added <add-linker name="xs" /> to my Application.gwt.xml, > > Now, my app2 page will not load correctly, giving me permission denied > errors for the GWT scripts. > > When I perform a build, I do not get an Application-xs.gwt.xml, so I'm > assuming that I'm missing a setting somewhere > > How do I get my build to generate the Application-xs.gwt.xml needed > for cross-domain support?
This was the behavior in GWT 1.5 (or something like that), before the linkers really existed; the latest versions of GWT only generate a *.nocache.js, but its content depends on the linkers you're using. So if you <add-linker name="xs" />, the Application.nocache.js will be "cross site"-enabled. -- 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.
