Hello,
@UrlPatternEntryPoint("Application.html(\\\\?
gwt.codesvr=127.0.0.1:9997)?|")
public class Application implements EntryPoint {
public void onModuleLoad() {
RootPanel.get();
}
}
When I run this in development mode, I go to my Application.html page
and all is well.
@UrlPatternEntryPoint("Application.html")
public class Application implements EntryPoint {
public void onModuleLoad() {
RootPanel.get();
}
}
When I try to Deploy and then run it I get to the Application.html
page
But I have a list of my EntryPoint classes.
I have tried just about every variation that I can think of to go
directly to Application.html
But nothing seems to work.
If I enter the Application.html as part of the URL to the Browser (IE)
I get in fine.
http://rrrsystems-test.appspot.com
I get the list first
http://rrrsystems-test.appspot.com/Application.html
Works fine, I skip the list.
Any suggestions on where I may be going wrong?
Thanks,
Raney