I have been linking my GWT app to a page written with JSP, for multifile uploading.
The gwt code to open the upload page in a new tab is:
Window.open("/secure/newuploads", "_blank", "");
This works fine in dev mode but I deployed to App Engine today and the link doesn't work: the displayed page is blank, no error code.
My JSP and JS files are located in \war
. Any ideas?