FMX- tracking xml sent to ASP

Hello to all flash coders worldwide!

this might be more of an ASP question but I figured that a lot of us deal with that programming AS so here it goes…

is there a way to track an xml sent to an ASP? I mean, is there a way to make sure that the xml was actually received by the ASP?

Here is a summary of how I send it to the ASP:

xmlToSend=<data><userId>5</userId<elementId>6</elementId>…</data>
objToSend=new XML(xmlToSend);
objToReceive.onLoad=myResponse;
objToSend.sendAndLoad(regURL,objToReceive);

myResponse is just a function that gathers and parses the ASP response.

My problem is that the ASP (which I’m not programming myself) might not be receiving the xml because it returns an error message (it could be due to many things I guess). I’ve used the same method for a login system and worked perfectly…so…I’m kinda stuck!!!

help! thanks yo all!!! :panda: