I have a web form with multiple input fields (gender, name, email) and an upload field where the customer can upload an image. The form will be send to a workflow process where I want to save the image in a local folder and use the input fields as input data (gender, name, email) for the process.
You will need to setup a Workflow process with a HTTP Server input. Set the HTTP Action for this input step, for example: capture_form. Use this value to set the ‘action’ attribute of the <form> element in your web template.
Below a very basic HTML form with the respective action set (Note that you could/should replace localhost with the URL/IP of your Workflow server).
On submitting the form you will find the values entered along with the information about the uploaded image in your job data file. See the screendump below.
thank you for your answer. It was my mistake. I tried to capture the image directly as an attachment (HTTP-Server-Input Plugin with option “Do not include XML envelope”).