I've been using an ajax call to refresh a portion of a page and pass it variables:

        $("#messages").load("showmsgs.jsp",{
            'id1': id1,
            'id2': id2

        },function(){

            });       

I access the variables using the request.getParameter() function. Everything was working fine but when I started using jqTouch I have been unable to pass the variables. The request.getParameter() function returns a nullpointer exception.

Has anybody seen this before? Am I just doing something wrong?

link|improve this question

80% accept rate
request.getParameter() shouldn't result in an NPE. Your use of the value it returns may. Are you saying the parameters are no longer sent to the JSP? If so, can you prove this by using Firebug's Net panel or another HTTP traffic tool? – Paul Grime Jan 23 at 12:13
I run a Double.parseDouble and thats what returns the NPE. I've proved this by replacing the all the request.getParameter commands with constants and the page works. – user1152327 Jan 23 at 13:04
Try and use Firefox and Firebug's Net panel to inspect the request made to showmsgs.jsp. If the data you expect isn't sent with the request, then you can narrow the bug down to the load function. – Paul Grime Jan 23 at 13:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.