Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-17 Thread Sumit Chandel
Hi pohl, As far as I can tell, this is a GWT4NB limitation. Check out Issue #49 (link below) on the GWT4NB issues list. Issue #49 (also see issue #39 linked therein): https://gwt4nb.dev.java.net/issues/show_bug.cgi?id=49 It looks like a fix is planned for the issue. I recommend posting up your in

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-15 Thread Tony Strauss
Perhaps I'm not understanding the previous discussion completely and I do not use NetBeans, but I do use GWT's hosted mode with the -noserver option and enjoy the benefits of hosted mode's rapid develop/test cycle. All it takes for me to see a change in the client code is hitting the hosted mode

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-14 Thread Jeff Chimene
On 04/14/2009 11:12 AM, pohl wrote: > > On Apr 13, 6:48�pm, Jeff Chimene wrote: > >> Also, remember that GWT does not implement the entire JRE. From the >> looks of the above error, you might be hitting that limitation, i.e. >> "delete method not implemented", as well. >> > > Well, I st

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-14 Thread pohl
On Apr 13, 6:48 pm, Jeff Chimene wrote: > > Also, remember that GWT does not implement the entire JRE. From the > looks of the above error, you might be hitting that limitation, i.e. > "delete method not implemented", as well. Well, I started with a working application, and only changed the va

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
On 04/13/2009 02:48 PM, pohl wrote: > Thank you for your responses. I see that the build-gwt.xml ANT > script in my GWT4NB-based project does have a "-noserver" argument in > the block that invokes GWTShell, so at least one compile step is > necessary, as per Jeff's observation, to copy those re

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
On 04/13/2009 04:00 PM, Vitali Lovich wrote: > > > On Mon, Apr 13, 2009 at 6:38 PM, Jeff Chimene > wrote: > > > On 04/13/2009 02:48 PM, pohl wrote: > > Thank you for your responses. I see that the build-gwt.xml ANT > > script in my GWT4NB-based project doe

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Vitali Lovich
On Mon, Apr 13, 2009 at 6:38 PM, Jeff Chimene wrote: > > On 04/13/2009 02:48 PM, pohl wrote: > > Thank you for your responses. I see that the build-gwt.xml ANT > > script in my GWT4NB-based project does have a "-noserver" argument in > > the block that invokes GWTShell, so at least one compile

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
On 04/13/2009 02:48 PM, pohl wrote: > Thank you for your responses. I see that the build-gwt.xml ANT > script in my GWT4NB-based project does have a "-noserver" argument in > the block that invokes GWTShell, so at least one compile step is > necessary, as per Jeff's observation, to copy those re

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread pohl
Thank you for your responses. I see that the build-gwt.xml ANT script in my GWT4NB-based project does have a "-noserver" argument in the block that invokes GWTShell, so at least one compile step is necessary, as per Jeff's observation, to copy those resources to the server. I'm still at a loss

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
On 04/13/2009 01:24 PM, Vitali Lovich wrote: > No, you don't need it for hosted mode. The only reason to have that > would be to ensure that you are actually writing compilable code (just > because it runs under hosted mode doesn't mean it'll compile to > Javascript). > > Generally though, you

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Vitali Lovich
No, you don't need it for hosted mode. The only reason to have that would be to ensure that you are actually writing compilable code (just because it runs under hosted mode doesn't mean it'll compile to Javascript). Generally though, you don't do that since you want a fast turnaround to hack & te

does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread pohl
I have a basic question about what is required in the build process in order to invoke hosted mode. I'm trying to speed up my compilation times, and I noticed that the Java-2-Javascript compiler is running even in the case when I'm debugging in hosted mode. Now I'm not using the same tools as y'