Hello,
I have my app working in deployed mode putting the myds.ds.xml and myds.ds.jsp files in a shared/ds directory in the web root. This doesn't work in the GWT Shell as it expects "shared" to be a module to be loaded from a 'shared.gwt.xml' file.
Should these be put into the public directory of the module and then the path to it put in server.properties? Example:
project.datasources: $webRoot/com.mycompany.module.ModuleName/ds
Am I also correct to assume that currently we must define DMI DataSource(s) in XML as I don't see a setServerObject(String dmiClassName) method on the DataSource class?
I have my app working in deployed mode putting the myds.ds.xml and myds.ds.jsp files in a shared/ds directory in the web root. This doesn't work in the GWT Shell as it expects "shared" to be a module to be loaded from a 'shared.gwt.xml' file.
Should these be put into the public directory of the module and then the path to it put in server.properties? Example:
project.datasources: $webRoot/com.mycompany.module.ModuleName/ds
Am I also correct to assume that currently we must define DMI DataSource(s) in XML as I don't see a setServerObject(String dmiClassName) method on the DataSource class?
Comment