Re: Deploy RCP in a subdomain

2009-09-12 Thread Chris Lowe
SOP basically says that the GWT app can only talk to the domain from where it was served. With that in mind, I think you have two options: 1. Configure the web server for your primary domain to proxy your GWT requests to your sub-domain - mod_proxy for Apache will achieve this; or 2. Simply

Re: Deploy RCP in a subdomain

2009-09-11 Thread Jason Essington
That violates SOP (Same Origin Policy) so your browser won't let it happen. you would have to load your host page from that site to allow RPC to connect. XMLHTTPRequests (of which RPC is) must connect to the same host, port and protocol from which the host page was loaded. -jason On Sep

Re: Deploy RCP in a subdomain

2009-09-11 Thread Hlunboi
I have access restriction to the whole site. my application should run only from www.gwt.mysite.org. Is there any solution for accessing through sub domain. -hlunboi On Fri, Sep 11, 2009 at 8:09 PM, Jason Essington jason.essing...@gmail.comwrote: That violates SOP (Same Origin Policy) so your