Re: NetBeans6.5 and rename-to=module name/DynaTable sample 1.7.0

2009-08-25 Thread Braheem Sikiru
Hi, I have been using Netbeans for my GWT developments for quite some time now. Though I run my builds with Maven. Douglas wrote: Hello All, It seems that a lot of you use Eclipse to build apps in GWT but I am using NetBeans 6.5 and the GWT version 1.7.0 and I need help to understand

Re: History does not work in IE

2009-06-20 Thread Braheem Sikiru
Hi Ensure the history iframe is on your GWT host page as in: iframe src=javascript:'' id=__gwt_historyFrame style=width:0px;height:0px;border:0px/iframe It appears the IE implementation still depends on it while other browsers can work without it. Maybe the GWT Team can say something

Re: Container managed security and time-out of the webapp.

2009-06-20 Thread Braheem Sikiru
Hello There have been many approaches to securing GWT applications, I think it all depends on your application workflow. But an approach similar to yours that i'm used to follows: - Create a servlet filter to filter requests for the GWT module servlets. Then in the doFilter() method do

Re: 404 error: gwt server can not be found

2009-06-12 Thread Braheem Sikiru
Hi How about removing the foward slash before searchService i.e. something like this instead: String moduleRelativeURL = GWT.getModuleBaseURL() + searchService; Had similar problems sometimes, and that worked for me. According to the docs, GWT.getModuleBaseURL() if