vote up 0 vote down star

here's my AS3 code:

var jpgEncoder:JPGEncoder = new JPGEncoder(100);
var jpgStream:ByteArray = jpgEncoder.encode(bitmapData);
var header:URLRequestHeader = new URLRequestHeader("Content-type", "application/octet-stream");
var jpgURLRequest:URLRequest = new URLRequest("/patients/webcam.aspx");
jpgURLRequest.requestHeaders.push(header);
jpgURLRequest.method = URLRequestMethod.POST;
jpgURLRequest.data = jpgStream;
navigateToURL(jpgURLRequest, "_self");

And here's my ASP.Net Code

try
            {
                string pt = Path.Combine(PathFolder, "test.jpg");
                HttpFileCollection fileCol = Request.Files;
                Response.Write(fileCol.Count.ToString());
                foreach (HttpPostedFile hpf in fileCol)
                {
                    hpf.SaveAs(pt);
                }
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message);
            }

im getting a weird error, HttpFox mentioned: "NS_ERROR_NET_RESET"

Any help would be excellent!

Thanks!

flag

71% accept rate

2 Answers

vote up 0 vote down

You should replace the contentType to multipart/form-data if you want to use c# Request.Files property.

See http://msdn.microsoft.com/en-us/library/system.web.httprequest.files.aspx

Also it requires some changes in flash code, as the data should be encoded in MIME multipart format.

link|flag
hello! is it a "multipart/form-data" content type? im still having trouble receiving the data, though the HttpFox gives me the content length, my c# code doesn't get the right value. it just says 0. – Martin Ongtangco Nov 4 at 0:33
i'm getting the error: "Thread was being aborted." – Martin Ongtangco Nov 4 at 0:35
I think you need to encode somehow the data, you can not directly send the binary data – rossoft Nov 4 at 6:17
That encoding is not easy, I recommend you to look into third party classes in order to do it like MultipartURLLoader: code.google.com/p/in-spirit/… – rossoft Nov 4 at 6:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.