Hi buddies,
we are communicating flash and .Net through xml’s. we are sending a request im xml format to a url through sendAndLoad and on successful receiving the response frm tht url we are performing some operations…
The problem which we face is the request is sent to .net and it is available similarly in .net response is readily available but that response is not captured in flash side.
the code which we use is something like this…
in flash Side ::
var req_xml = new XML ( xml_str);
var res_xml=new XML();
res_xml.onload = funnction (success)
{
if(success)
{
//handling the response
}
}
req_xml.sendAndLoad(req_url,res_xml);
in .Net side ::
xmldocument xmldoc =new xmldocument();
xmldoc.load(request.inputStream);
Response.Write(str);
can we get any tips on this ?