Hello guys, I'm working on an app that posts a file to another rails application who is in charge of running some scripts over it, create a build and send it back again. Right now I have a form where the user selects the type of build to run over and a build button. On my controller on the create action I generate a build_name (random string made with UUID) and save that into the database along with the build type specified on the form.
So once the build_name and build_type params are saved I should make a multipart post from my controller to the other rails_app (send the build_name, type, callback url and the file). That build_name will be sent to the rails app in charge of running the scripts along with the file and a callback url. The build_name will be used on the other app to name the file which will be sent back. Can anyone give me any ideas on how to do this multipart post in my controller? Thanks a lot --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

