Re: Tracing GWT exceptions

2011-09-04 Thread mihu
I made RequestFactoryServletMihu() constructor public and it's work!:) Thanks:) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/XioAM_oDl10J. T

Re: Tracing GWT exceptions

2011-09-02 Thread mihu
I have tried to write this "subclass RequestFactoryServlet to pass an ExceptionHandler of your own": package com.mydomain.myproject.server.servlet; import com.google.web.bindery.requestfactory.server.RequestFactoryServlet; @SuppressWarnings("serial") public class RequestFactoryServletMihu exten

Re: Tracing GWT exceptions

2011-06-28 Thread mihu
Hi, In my situation, with this error: Caused by: java.lang.RuntimeException: Server Error: null The problem was that, I didn't set Application ID in App Engine properties, because I haven't deployed to server yet. But of course there probably can be many reasons of NullPointerException on the s

Re: Tracing GWT exceptions

2011-06-20 Thread Thomas Broyer
On Monday, June 20, 2011 10:42:56 AM UTC+2, saurabh saurabh wrote: > > > Caused by: java.lang.RuntimeException: Server Error: null > Your code is throwing a NullPointerException on the server-side. To trace it further, I'd suggest setting a breakpoint in com.google.web.bindery.requestfactory.

Tracing GWT exceptions

2011-06-20 Thread saurabh saurabh
For understanding the RequestFactory module of GWT I have coded my version of 'DynaTableRf' example. While running the application in hosted mode I get the exceptions given below, my problem is that these exception comes nowhere from my code. So I just can't pinpoint the problem or error. On br