Give this a try:

Start in debug mode,
1 - Get the app ready to fire() your request,
*then*
2 - In eclipse, add Java Exception Breakpoint on
java.lang.NullPointerException - make sure 'caught exceptions' is ticked.
3 - Make your app fire() the request.

You should drop into debug mode when the NPE is thrown and be able to work
back through the stacktrace.
If you do step 2 before step 1, you will catch some unrelated exceptions,
which are normally handled OK (since they are caught exceptions), so this
is a kinda awkard way to do it, but it should let you find the problem.


On Wed, Dec 21, 2011 at 11:37 PM, MagusDrk <magus....@googlemail.com> wrote:

> Hi all again! I've just tried to use a CustomRequestFactoryServlet in
> order to catch and resolve the NPE in the server side. I could do it,
> but the catched error was "NullPointerException" with no other info
> (at all), no strackTrace, no specific cause (just "null") and no
> location specified! Help, please, I had to avoid using RequestFactory
> for my week release, but I Have to get it working soon. If you need
> some specific information, please, let me know.
>
> --
> 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@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to