...
can POST form or workflow data to your web server for processing. There are two options available Form Action Post and Doc Action Post. The difference between the two is that the Form Action POST displays the response from the web server to the user whereas the Doc Action POST does not. We'll describe these in more detail using specific scenarios and also describe what is actually sent in the POST below.
...
This is the simplest option. Setup the form using the Form Action Post wizard and enter the URL of your web server. For advanced uses, the URL can be dynamic using templatized strings. will send the data to your web server and display the response.
...
Say you want to POST the data to your back-end service but want to redirect the user to a specific confirmation page if successful and an error page if not. To do this, you will enter URLs in the following wizards:
- The Doc Action POST wizard for web server.
- The Forward to web page form action wizard for your confirmation page.
- The Forward users to an error web page of your choice error action wizard for the error page.
...
You can try this yourself for any form; simply setup the form using the Form Action POST wizard and enter the URL http://www.frevvo.com/services/testyanf - Select PDF in the Send Snapshot drop down. Using our example form above, after submitting, the browser will POST the form data to frevvo's test service. The service will display the resulting parts as shown below for our example form. We have added a repeating Nick Name field and submitted the form with two nick names.
...
Code Block |
---|
response.setStatus(200); response.setContentType("text/html; charset=utf-8"); response.getWriter().println("The following form variables were received on the server:<br/>"); response.getWriter().println("<ul style=\"font-size:14px\">"); Enumeration<String> paramNames = request.getParameterNames(); while(paramNames.hasMoreElements()) { String paramName = (String)paramNames.nextElement(); String[] paramValues = request.getParameterValues(paramName); if (paramValues.length == 1) { String paramValue = paramValues[0]; if (paramValue.length() == 0) response.getWriter().println("<li>" + paramName + ": No Value</li>"); else response.getWriter().println("<li>" + paramName + ": " + paramValue + "</li>"); } else { StringBuilder sb = new StringBuilder(); for(int i=0; i<paramValues.length; i++) { sb.append(paramValues[i]); } response.getWriter().println("<li>" + paramName + ": " + sb.toString() + "</li>"); } } response.getWriter().println("</ul>"); |
Working with Digitech PaperVision® Enterprise and ImageSilo®
provides wizards that support easy direct connectivity with Digitech Systems' PaperVision® and ImageSilo® document management products. This Connector allows you to save submissions to the PaperVision® and ImageSilo® document management repository as PDF, TIFF, .JPG and .GIF format. Please refer to the Digitech Integration section of the documentation for detailed instructions.
Other Connectors
Other connectors are available from frevvo partners such as Square9 SmartSearch, Docuware Fortis, Oracle BPM, and IDatix iSynergy Please contact support@frevvo.com for more information.
...