Large files append to the .wav file piece by piece. However, for certain people with a slow connection and large files (more than 4 minutes long), it will fail about 1 in 5 times.
It fails here (in the Page_Load of upload.aspx.cs):
string strVoiceServerFolder = Request.Params.Get("VoiceServerFolder");
if (strVoiceServerFolder == null)
{
Response.Write("Cannot find \"VoiceServerFolder\" parameter!");
return;
}So, after most of the file has been uploaded, SOMETIMES the VoiceServerFolder parameter is not passed as a parameter. This is the first parameter that we check for, so my guess is that somehow all of the parameter values have been lost (not just the VoiceServerFolder param).
It works 999/1000 times, but about 1/1000 times the upload will fail with this in the java console after a number of "ACCEPTED" upload messages:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head>
<title>Wideband Voice Recording Applet SDK</title> </head> <body>
<form name="Form1" method="post" action="upload.aspx" id="Form1" enctype="multipart/form-data"> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJ...mFtEdnw==" />
<input name="UserFile" type="file" id="UserFile" />
</form>
</body>
</html>
Sending confirmation block
https://www.REMOVEDURL.COM/dictation/voicefiles/upload.aspx
ANSWER = "Cannot find "VoiceServerFolder" parameter!"











