Does anyone have a solution for retrieving the temp name of a file when using CGI.pm?
It's win32, iis environment.
what you will find is that http is a protocol that is not well designed for uploading large files.
you will typically hit various problems when you get to the 100M level.
a little larger and you will be timing out or freezing up.
there is another internet protocol well designed for large uploads called ftp.
i believe the problem lies in the fact that the entire (multipart) document must be stored in memory under the server process before the parts can be separated and stored as files.
other than that, i have no answer for your temp file name question.