I would like to use webform to build a form, but not process the data. When a user submits their form, i'd like it to send the form data to another webserver for processing. We need the data for the form stored in Oracle and I can do this if the webform submits to my pl/sql page. Anyone know how to do this? The only thing I could think of was to build the form in webform, then copy the source for the form and create a node with the form on it and change the action of the form to point to the other webserver.
Thanks,
Shane
Comments
Comment #1
avangelist commentedShane if you ever got this working I would really like to know how you went about it as I am trying to do exactly the same thing.
Actually I want it to process the form and send the email but I also want to send it to another php script to forward the values to another database system.
thanks
Comment #2
quicksketchI wouldn't recommend using Webform for this purpose. Since you're not going to be using a huge chunk of the Webform functionality. However, if insisting on using Webform, you can replicate a second POST request to another server by using drupal_http_request() in the Additional Submission code.
Comment #3
quicksketchThis request is nearly identical: #305498: post form to additional script via drupal_http_request?, let's consolidate there.