Welcome Guest Search | Active Topics | Sign In | Register

Uploader delay after 100% Options
John Alfaro
Posted: Tuesday, June 26, 2007 11:37:49 AM
Rank: Newbie
Groups: Member

Joined: 6/26/2007
Posts: 5
I'm uploading a file, and after I click upload, I see the progresss bar increase as expected. However, when it gets to the last byte, it just sits there for a maybe 15 seconds. Not sure whats going on. Any ideas?
eo_support
Posted: Tuesday, June 26, 2007 11:39:43 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,098
Hi John,

Thanks for posting the issue at here. This is a problem that we are currently working on. Hopefully we will be able to get an update out today.

Thanks
John Alfaro
Posted: Tuesday, June 26, 2007 11:43:58 AM
Rank: Newbie
Groups: Member

Joined: 6/26/2007
Posts: 5
Thanks for the quick replay. I'm also getting a message that process cannot access the file in the following code after an Uploaded event

protected void Uploader_FileUploaded(object sender, EventArgs e)
{
AJAXPostedFile[] postedFiles = Uploader.PostedFiles;
foreach (AJAXPostedFile postedFile in postedFiles)
{
using (BinaryReader reader = new BinaryReader(File.Open(postedFile.TempFileName, FileMode.Open)))
{
byte[] image = reader.ReadBytes(postedFile.Length);
reader.Close();
File.Delete(postedFile.TempFileName);
//SaveImage(ImageFunctions.ImageToMultiPageG4TifByteArray(_image));
}
}
}
}
eo_support
Posted: Tuesday, June 26, 2007 11:48:51 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,098
Hi John,

We already have an internal build that addressed that issue. Please see your private messages for download location.

Thanks
Eric T.
Posted: Tuesday, June 26, 2007 12:15:35 PM
Rank: Newbie
Groups: Member

Joined: 6/1/2007
Posts: 6
I have the same problem sometimes. When this happens, I only have a 50/50 chance of the Posted File List being shown on the client.
eo_support
Posted: Tuesday, June 26, 2007 12:20:23 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,098
The problem has already been fixed here and we are running some final test on it. Hopefully we can post the update today.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.