--
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-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Jetty makes setting up proxies very simple. I have different Jetty
instances running (one for the backend [port 8080] and one for GWT
[port 8888]). I also have a Jetty instance that proxies calls for port
18000 to either port 8080 (backend calls) or port 8888 (client calls).
The only difference at run time is that I invoke my GWT app with port
18000 instead of 8888. That is how I get around SOP.
Check out org.eclipse.jetty.servlets.ProxyServlet$Transparent.