After some attempt it seams to me that
multipart/form-data in NET+OS CGI pages is not supported?
Code:
strcpy(buffer, "<html>");
strcat(buffer, "<head>");
strcat(buffer, "</head>");
strcat(buffer, "<body>");
strcat(buffer, "<form method=post action=CGI_File_Post enctype=multipart/form-data >");
strcat(buffer, "<input type=file name=theFile/>");
strcat(buffer, "<input type=submit value=submitfromcgi>");
strcat(buffer, "</form>");
strcat(buffer, "</body>");
strcat(buffer, "</html>");
when submitted the RpExternalCgi() is not called and no page can be returned
How do you handle binary file uploads?