By following instruction from: Create Google App Engine Project in Eclipse with Modules
I'm able create 1 Enterprise app and 2 associated dynamic web app (default and task). They work fine but every time running the local server (using Google plugin for Eclipse), console always display below error:
WARNING: Your working directory, (D:\Workspaces\GAE\MyProject\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\MyProject) is not equal to your
web application root (D:\Workspaces\GAE\MyProject\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\MyProject\MyProject_default.war)
...
WARNING: Your working directory, (D:\Workspaces\GAE\MyProject\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\MyProject) is not equal to your
web application root (D:\Workspaces\GAE\MyProject\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\MyProject\MyProject_tasks.war)
You will not be able to access files from your working directory on the production server.
Understand that it complain the working folder (which is belong to Enterprise App) is not same for both web root.
If I change the argument for working folder to root folder for default web app: D:\Workspaces\GAE\MyProject.metadata.plugins\org.eclipse.wst.server.core\tmp1\MyProject\MyProject_default.war
First warning is no longer display but it still display second warning.
And I don't think that is right to change the working folder to default web app root folder.
In summary, because of multi modules, I have 2 root folders but only can set one working folder in argument. Is that a way to solve this problem?
Thanks
Rgds SJ