[jQuery] Re: jQuery.ajax / xml / callbacks

2008-07-16 Thread codecomplete
Further debugging shows that my request does indeed get sent to the server, server logs show the valid request coming through and being processed just fine. Charles proxy shows the response coming back with a status code of 200 OK. So basically my AJAX call above goes out and gets processed

[jQuery] Re: jQuery.ajax / xml / callbacks

2008-07-16 Thread codecomplete
I too am having a very similar issue where my callback is not being called. My error function gets called instead, and the value of e is: [object XMLHttpRequest] Here is what my code looks like: $.ajax({ url: '/member/MemberNameCheck.htm', type: 'POST', data: {name: $mName,

[jQuery] Re: jQuery.ajax / xml / callbacks

2008-07-16 Thread codecomplete
I was able to get past my problem, turns out the JSP file where I construct the return XML had Carriage Return characters in there that causes a problem parsing the return. I was able to surmise this by adding 3 parameters to the 'error' function: error: function(XMLHttpRequest, textStatus,