Displaying 2 results from an estimated 2 matches for "applet_upload_file".
2007 Aug 07
1
Upload progress and drb
...the upload side of it, I suspect that the drb not
starting automatically might be the deeper cause of the problem. Should drb
start automatically?
In my merb.yml I have
:config: dist/conf/upload.conf
:drb_server_port: 32323
and in dist/conf/upload.conf I have
:drb: true
:path_info: /upload/applet_upload_file
:frequency: 3
Thanks for any help/pointers!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/merb-devel/attachments/20070807/9f01368d/attachment.html
2007 Aug 09
0
File upload issue with Merb 0.3
...work just fine.
The problem is almost certainly in my Java file handling - when I upload the
same problem file through an HTML upload form, it works fine.
The one thing I did notice was that in the merb log, I would see the first
line of the request log entry, e.g.:
Request: REQUEST_URI:
/upload/applet_upload_file?token=98e4e4f3b55db4ea848b13ad7
01d4aaa,46bae8bc,9084,192,33,1 (2007-08-09 11:13:17)
but the next line, e.g. Params:{ ... never appeared - the process would just
hang.
I assume that Mongrel is doing the work of receiving the file (which is
about 8k) before handing it back to Merb, and this is wh...