I am building a rails app to test our flagship product (also web based). The problem is that part of the testing requires using the production app's web interface to upload files. So what i need to do is have the rails app upload these files to the production application (not rails). Is there a way to have rails post the file to the production application (like the browser posts the file to the production app)?
|
|
|
|
|
|
|
If you just need to upload files, I think it's pointless to use a plugin for this. File upload is very, very simple.
Then, your form can look like this:
I think the code is pretty much self explanatory, so I won't explain it ; ) |
||
|
|
|
|
You might wanna check out the Paperclip plugin. Very good for uploading images. Might work for other formats too. |
||
|
|
|
|
Sure, use the net/http library... http://www.ruby-doc.org/stdlib/libdoc/net/http/rdoc/classes/Net/HTTP.html but it would appear that it is missing multipart encoding, so check out this other article http://kfahlgren.com/blog/2006/11/01/multipart-post-in-ruby-2/ Check out this similar question http://stackoverflow.com/questions/184178/ruby-how-to-post-a-file-via-http-as-multipartform-data |
||
|
|
