This documentation is for Live Forms 9.1. v9.1 is a Cloud Only release. Not for you? Earlier documentation is available too.

COVID-19 Response Info: At frevvo, our top priorities have always been employees and customers. We have taken several steps to promote the well-being of our people, to minimize services disruptions, and to help where we can. Visit our website for updates.

Document Services

Document Service

' built-in document service can be used for processing your form data prior to submission.

The document service is accessed via the URL/service. It supports the following parameters:

  • method=POST -- required and should be left POST
  • target=[url] -- [url] is the path to your servlet

The target will be passed as name/value pairs of all of the controls in your form with their current values. The target will also pass the collection of xml documents comprising the form's current data. The collection will include at least one document in the namespace 'form' which contains all the data in controls added to the form from palette. The collection will also include one xml document for each data source added to the form.

Custom Print View

One example use of ' document service is to provide a print preview different from ' default print view.

All forms by default are printable. To make a form printable edit the form and check the printable property. Sometimes form designers required a highly customized print view. By calling ' document service you can pass all the form's xml documents to another target servlet that transforms the data into exactly the format you need and then returns html to another browser window.

To do this:

    • Add a message control to your form
    • Add the following html to your message control
<center> 
<a href="javascript:void(0);" onClick="window.open(document.location.toString().split('?')[0] + 
'/service?_method=POST&amp;target=http://[myhost]:[myport]/Myservices/service/print/myForm')">Print</a> 
</center>

Your transformation service should return html to the browser window. You can style the message control as a button by adding a background color, a message type and even dragging it into a panel to size the "button".