Using Class.forName

2009-05-20 Thread Pints
Hi, I am tring to use Class.forName at cleint for object creation and getting the following exception. [ERROR] Line 196: The method forName(String) is undefined for the type Class [ERROR] Line 197: The method newInstance() is undefined for the type Class Can't we use it? Any possible way

Question on GWT1.6

2009-05-15 Thread Pints
Hi, I created the applictaion using Google Plugin and got the default GreetingService. On progressing further i changed GreetingService name to Service, as GreetingService doesn't suits for business applications, and got the following exception. java.lang.ClassNotFoundException:

GWT EXT compatibilty with GWT 1.6

2009-05-14 Thread Pints
I have started working with GWT 1.6 and tried to use GWT Ext with it. I configured Ext as i used to do with GWT 1.5 but on startup with 1.6 i get the following java script error Runtime Error Ext is undefined When i ignore the problem the screen loads properly. Any clues. Thanks

Reading XML on Client

2009-05-14 Thread Pints
Hi, Can any share the ideas that how can i read XML on client in GWT? thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GWT Eclipse Plugin

2009-05-12 Thread Pints
Can anyone please provide me the link from where i can download the new plugin for GWT launched recntly. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Servlet Listeners

2009-05-12 Thread Pints
Hi, Can we use Servlet Listeners directly in GWT1.6? As i can see web.xml. I am trying to do so by counting the number of users connected. But the sessionCreated method is never executed. Any guesses? Does this mean in hosted mode we cannot use listeners? thanks,

Gilead GWT not getting configured

2009-05-11 Thread Pints
Hi, I am using GWT1.6 I am already doing the following to configure Gilead in GWT-Hibernate. 1.) My Pojo class declaration looks like public class Person extends LightEntity implements Serializable 2.) My Service Impl is like public class GreetingServiceImpl extends PersistentRemoteService

How to define a Context Listener

2009-04-02 Thread Pints
Hi, Does anyone has any idea that how can we define a servlet in GWT which can behave as a Listeners of servlets. Do i have to do a complete RPC to call any normal servlet also.? I believe yes as to talk to server RPC is the only way. Please confirm. Any ideas would be appreciated. My idea