invoke a server method on each client request

2010-04-18 Thread Edo
Hello, Is there a way to invoke a server method on each request received from the client? I want this method to perform some common actions for each client request: logging, verify valid session, valid user etc. Any ideas? Thanks, Edo -- You received this message because you are subscribed

Re: invoke a server method on each client request

2010-04-18 Thread Edo
Thank you, that works. Edo. On Apr 18, 5:12 pm, Sripathi Krishnan sripathikrish...@gmail.com wrote: In your Rpc Servlet implementation, you can choose to override the following methods - //Gets called BEFORE your RPC method is invoked, //Here, you can figure out which rpc method is going

Using terracotta with gwt eclipse plugin

2009-10-13 Thread Edo
with terracotta and eclipse? Any help or hint would be appreciated. Thanks, Edo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit

Re: Deploying GWT application on tomcat

2009-02-22 Thread Edo Dovrat
, can you post the relevant? Regards, Edo. On Sat, Feb 21, 2009 at 5:31 PM, Iluna mails.pe...@gmail.com wrote: Hi, I have the same problem, except, I am doing my calls to a html page. But I still get an exception that the contentLength in the request was not set. So I debugged

Retrieve form data

2009-02-01 Thread Edo
(); box.setName(myName); table.setWidget(0, 0, box); ... Now I want to call a service with the form data when the user hits the submit button. How can I retrieve the form data? Cheers, Edo. --~--~-~--~~~---~--~~ You received this message because you

Deploying GWT application on tomcat

2009-01-27 Thread Edo
) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) Do I really need to implement the doGet method in my classes? Is there a way I can avoid it? How can I fix the above exception? Thank you for your help. Edo --~--~-~--~~~---~--~~ You received

Re: Deploying GWT application on tomcat

2009-01-27 Thread Edo
requests? Edo. On Jan 27, 6:11 pm, Isaac Truett itru...@gmail.com wrote: It doesn't sound like there's anything wrong with your deployment, it sounds like you're trying to do something invalid. Why are you sending GET requests to an RPC servlet? On Tue, Jan 27, 2009 at 5:11 AM, Edo e313