Search found 5 matches

by lillereven
Thu Dec 02, 2010 11:03 am
Forum: JBatchUpload
Topic: JBatchUpload on OSX 10.6.5 not initializing
Replies: 1
Views: 11639

JBatchUpload on OSX 10.6.5 not initializing

Hi! One customer I have would like to use the advanced batchui. Doing some tests, this works fine in Firefox 3.6.12 on Windows with Java SE 1.6.0_22 but not on Mac OSX with otherwise same version numbers. The only error message I can get out of Firefox at that point is as follows: "error: java.lang....
by lillereven
Wed Sep 15, 2010 11:57 am
Forum: JFileUpload
Topic: How do I get resume to use checksum before filesize?
Replies: 3
Views: 8070

Re: How do I get resume to use checksum before filesize?

In applet: <PARAM NAME="resume" VALUE="md5"> Is MD5 implemented in the PHP script you have? I have the <param> and implemented MD5 in my script. Looking at network traces I see the HTTP HEAD with parameter "checksum: md5". My script replies with HTTP status 200 and checksum: somehexstring. If check...
by lillereven
Wed Sep 15, 2010 11:48 am
Forum: JFileUpload
Topic: JSTransferDone not called for batch uploads
Replies: 3
Views: 8073

Re: JSTransferDone not called for batch uploads

support wrote:JSTransferDone should be called after all uploads. This is not the behavior you have?
Correct, that is not the behaviour I see. JSTransferDone is triggered for single-file transfers but not for multi-file transfers.
by lillereven
Tue Sep 14, 2010 11:54 am
Forum: JFileUpload
Topic: JSTransferDone not called for batch uploads
Replies: 3
Views: 8073

JSTransferDone not called for batch uploads

Hi again!

JSTransferCompleted gets called per file. JSTransferDone is called for single-file uploads, but not for multi-file uploads.

What callback is used to indicate end-of-transfer for batch uploads?


With best regards,
Martin
by lillereven
Mon Sep 13, 2010 2:28 pm
Forum: JFileUpload
Topic: How do I get resume to use checksum before filesize?
Replies: 3
Views: 8070

How do I get resume to use checksum before filesize?

Hi! I am currently testing jFileUpload for a project where I need to handle binary files in excess of 2GB. HTTP PUT works fine, and I extended the PHP script to give me the MD5 checksum for the file object on the server. Due to the filesize and transfer times required for these, I would like to use ...