GWT on-the-fly compiler with soafaces

2013-03-27 Thread Sam Taha
Wanted to point folks to the GWT on-the-fly compiler (JSP to servlet like compiler) that is used in the soafaces component framework. The Soafaces https://code.google.com/p/soafaces/framework allows building GWT components (mini GWT apps) that can be compiled on the fly, kind of like JSPs.

Re: Anyone using soafaces for client server communication ?

2009-11-22 Thread Sam Taha
it;   } } On Nov 6, 1:25 am, Sam Taha taha...@gmail.com wrote: Hi Mike, I think I see the problem. In Hosted mode, java is evaluating the Object[] as instanceof Serializable since per java spec every java array implements Serializable interface. Production mode must be letting this slip by. So

Re: Anyone using soafaces for client server communication ?

2009-11-05 Thread Sam Taha
Hi Mike, I think I see the problem. In Hosted mode, java is evaluating the Object[] as instanceof Serializable since per java spec every java array implements Serializable interface. Production mode must be letting this slip by. So actually looks like an inconsistency between compiled javascript

GWT.create problem with GWT 1.5

2008-08-29 Thread Sam Taha
I am doing some reflection on GWT client UI code. I do the reflection (like checking if a client class is of an isAssignableForm on the server side. I do not want to instantiate the GWT client UI classes on the server I only want to check some meta/reflection information about the superclass