Re: Compile and Run gwt web application from Command Line

2010-06-18 Thread fmod
On Jun 18, 7:46 pm, André Moraes wrote: > History.getToken() isn't deprecated?! This is the javadoc for History.getToken() in 2.1: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/History.html#getToken() Gets the current history token. The handler will not recei

Re: Compile and Run gwt web application from Command Line

2010-06-18 Thread André Moraes
History.getToken() isn't deprecated?! I use the History.addValueChangeHandler. History.addValueChangeHandler(new ValueChangeHandler() { @Override public void onValueChange(ValueChangeEvent event) { l

Re: Compile and Run gwt web application from Command Line

2010-06-18 Thread fmod
Hi, from the command line: start http://somesite.com/MyPage.html If you want to pass some parameters, you can use the address. start http://somesite.com/MyPage.html?param1=blah¶m2=boo Somewhere in the onLoadModule() you will need to check History.getToken() and parse it. Regards Fran On Jun 18,

Compile and Run gwt web application from Command Line

2010-06-18 Thread leila
Hello, How we can run the application in command line (windows), and how we can pass parameters to onLoadModule() I want to call this from another program and pass 2 points (string lat/ log) to it as arguments. Please give me your suggestions I am new to this. Thanks a lot Leila -- You received