Hi,
I am using GWTEventService on a site which static content and server side content will be served from different sources, statics from an apache server and server side from a Weblogic server. The application is being developed using GWTP (
https://github.com/ArcBees/GWTP) so the requests are made through RPC-Dispatch. The problem is that the calls made with RemoteService, take the static content's URL instead of the real application server's URL, and the gwteventservice servlet is never found. So GWTEventService instead of doing the call to
http://myappserver.com/appName/gwteventservice it is done to
http://mystaticcontentserver.com/myapp/gwteventservice. I would like to know if there is anyway to change the URL of the gwteventservice so that I can configure the correct URL. Also it would be great if the service name (gwteventservice) could be changed for something more descriptive.
Thank you for your help.