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?
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:13loadfunction. – Paul Grime Jan 23 at 13:09