Eclipse false error

2011-01-17 Thread ahhat...@gmail.com
Hi everyone, I have a large project on eclipse that runs and compiles correctly in dev mode and script mode... everything is great...except that it shows an error for UiBinder classes in a certain package... which compiles, runs , auto-completes in IDE and does everything correctly... except

Eclipse false error

2011-01-17 Thread ahhat...@gmail.com
Hi everyone, I have a large project on eclipse that runs and compiles correctly in dev mode and script mode... everything is great...except that it shows an error for UiBinder classes in a certain package... which compiles, runs , auto-completes in IDE and does everything correctly... except

Initializer blocks

2010-06-22 Thread ahhat...@gmail.com
Hi, I tried to do the following: University u = new University() { { setName(Ahmed); setPrice(500); } }; University u2 = new University(); u2.setName(Hassan); u2.setPrice(1000);

Re: Initializer blocks

2010-06-22 Thread ahhat...@gmail.com
anonymous class of Test. This is a Java behavior. Olivier On Jun 22, 1:22 pm, ahhat...@gmail.com ahhat...@gmail.com wrote: Hi, I tried to do the following: University u = new University() {                 {                         setName(Ahmed

Re: RPC vs HTTP requests

2010-01-03 Thread ahhat...@gmail.com
For me, one of the most important points is that I didn't want to have a java based server code. I needed to work on anything else. That left me with the http / Json, it was not hard to be done but you will need to take care of a lot more things... On the other hand, if you don't mind using java

the compiled code throws cast exception in gwt 2.0 only but works in 1.7

2009-12-13 Thread ahhat...@gmail.com
I have just moved to gwt 2.0 from 1.7.1 Since the upgrade, I get a class cast exception only in production mode, which doesn't happen when compiled with 1.7.1 Is there any obvious reason for this, I will most probably spend a lng testing phase till I get to what exactly causes the exception

Re: GWT and backend technology

2009-06-02 Thread ahhat...@gmail.com
the application using a Debug launch configuration, as opposed to a Run launch configuration? On Fri, May 29, 2009 at 5:13 AM, ahhat...@gmail.com ahhat...@gmail.comwrote: Thanks Thomas, I was banned of this group and I really have no idea why... Anyway, I followed your advice and it worked

Re: debugging doesn't work with -noserver

2009-06-01 Thread ahhat...@gmail.com
Yes, I can debug normally without -no server.. I am using glassfish, eclipse (with gwt plugin), gwt 1.6.4 and netbeans for rails I am not sure if I have done the right steps, I tried to follow steps in the FAQs.. I will try to read them again, It looks like no one else suffers from this but

Re: debugging doesn't work with -noserver

2009-05-31 Thread ahhat...@gmail.com
...@gmail.com ahhat...@gmail.com wrote: Hello, When I use -noserver and use the gwt app with another server, in hosted mode it works normally but doesn't stop at the breakpoints set from eclipse. Is there anything  I may have missed ? Or anything I could do? Thank you in advance. Ahmed

debugging doesn't work with -noserver

2009-05-30 Thread ahhat...@gmail.com
Hello, When I use -noserver and use the gwt app with another server, in hosted mode it works normally but doesn't stop at the breakpoints set from eclipse. Is there anything I may have missed ? Or anything I could do? Thank you in advance. Ahmed

Re: debugging doesn't work with -noserver

2009-05-30 Thread ahhat...@gmail.com
what you have missed lan http://examples.roughian.com 2009/5/30 ahhat...@gmail.com ahhat...@gmail.com Hello, When I use -noserver and use the gwt app with another server, in hosted mode it works normally but doesn't stop at the breakpoints set from eclipse. Is there anything  I may

Re: GWT and backend technology

2009-05-29 Thread ahhat...@gmail.com
Thanks Thomas, I was banned of this group and I really have no idea why... Anyway, I followed your advice and it worked nicely. Now, I can run both of them with no problems but I can't debug gwt... I doesn't stop in the breakpoints in eclipse. Do you have any ideas why may that happen? Thank