Hi all,
In SmarrtGWT, I am using DataSource.load("ds id") to load DataSource definitions dynamically. As far as I can tell, the request is always sent to
"/isomorphic/DataSourceLoader".
However, I am running multiple web applications inside the same app server, so all stuff needs to go under the "/<my-app>/" dir.
Most auto-generated RPC calls honor the "isomorphicDir" JS setting, and thus work properly, but I can not find a way to configure a root URL for this specific call.
When running in GWT hosted mode, this is no problem, since I can just map any servlet anywhere I want.
But when deploying to Tomcat, I really need to be able to modify the URL the request is sent to.
How can I achieve this?
Thank you for your help!
In SmarrtGWT, I am using DataSource.load("ds id") to load DataSource definitions dynamically. As far as I can tell, the request is always sent to
"/isomorphic/DataSourceLoader".
However, I am running multiple web applications inside the same app server, so all stuff needs to go under the "/<my-app>/" dir.
Most auto-generated RPC calls honor the "isomorphicDir" JS setting, and thus work properly, but I can not find a way to configure a root URL for this specific call.
When running in GWT hosted mode, this is no problem, since I can just map any servlet anywhere I want.
But when deploying to Tomcat, I really need to be able to modify the URL the request is sent to.
How can I achieve this?
Thank you for your help!
Comment