On Feb 19, 3:34 pm, ramesh chiluveri <[email protected]> wrote: > Hai all, > > I enabled cross site by adding <add-linker name="xs" /> in my > module.gwt.xml > > but the issue.it is not invoking RPC calls. > > Can anyone suggest on this. > > Thanks > Ramesh
IMHO! this is a noob hypothesis: I have understood that xs permits the execution of GWT scripts from a different domain. The problem about cross site javascript EXECUTION may be about the iframe sandbox in which GWT apps should run. IN case of different domains the GWT application cannot access to the parent window and the application fails. XS solves this issue and permits the script execution. The RPC Cross-site communication is another problem which cannot be solved this way (I think) cause the SOP same origin policy. In order to consume WS on other domains you have to refer to the gwt documentation. There are few tricks about. Regards Ps: I have not found a way to use GWT-RPC directly. -- 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.
