I'm trying to save a file using HTTP request from a SWF file to an ASPX file. i have a WinForms app that hosts the SWF using AxShockwaveFlash control that passes parameters to the SWF that generats the file and posts it to an ASPX page. the page uses the binary data to save the binary stream to a file in the following way:
using (Stream stream = Request.InputStream)
{
SaveStreamToFile("C:\\Curves\\" + System.ToString() + "_" + Instrument.ToString() + ".jpg", stream);
}
when running the SWF from the development enviroment the ASPX saves the file, but when running from the app it doesn't. anybody?
Just for being on the safe side , try using the cross-domain.xml file on the server.That makes a difference sometimes.