2009/7/2 Krishna <[email protected]> > scripts cannot be handled. security is not an issue here. I wanted to know > if any one has worked in any embedded web server for uploading huge files, > so that I can rely on the fact and try that. > > The problem in using web server to upload huge files is that the web server stores the uploaded file in a temporary folder which in most cases means it is stored in RAM. Considering the fact that the uploaded data is encoded as multipart/form-data you would need more than 4/3*5 MB of _free_ RAM. If you don't have sufficient RAM then you should think of other ways. - Like a server listening on a port in the board and uploading the firmware via a java applet. - Patching the web server to directly decode multipart/form-data and directly writing it to the flash.
-- Vijairaj _______________________________________________ To unsubscribe, email [email protected] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
