Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The envelope XML contains all information about an envelope. Basically it consists of the envelope definition and the workflow. The workflow itself exists of steps and within the steps of the recipients. Signing recipients have to have the workstep configuration. The workstep configuration is the definition of the signing task.

EnvelopeXMLImage RemovedImage Added

The next lines of code shows an simple envelope XML:

...

The following table shows the different icons for the document status with explanation:

Image RemovedImage Added

Hello World Tutorial – Envelope XML

...

Following Screenshots show you these steps:


FigureDescription
Image Removed

Image Added

  1. Start designing (upload a file)
  2. You have to select “SignAnyWhere” for creating a eSignAnyWhere compatible workstep


FigureDescription
Image Removed


Image Added

  1. “Create WorkStep” can be used for trying the current configuration in a SAW Viewer (default eSAW client)
  2. Save configuration downloads the current configuration
  3. You have to select “SignAnyWhere” for creating a eSignAnyWhere compatible workstep
  4. Via “+” (Plus) you can add & place signature fields on the document

You can also watch the following video which shows the process from the beginning.

...

Code Block
languagexml
themeEclipse
<inputValidation>
    <type>date</type>
    <format>dd. MMMM yyyy</format>
    <range from="13. Mai 2018" to="18. December 2019" />
</inputValidation>

...

Image Added
  •  Email
    • no format or range
Code Block
languagexml
themeEclipse
<inputValidation>
    <type>email<type>
</inputValidation>

...

Code Block
languagexml
themeEclipse
 <inputValidation>
    <type>number</type>
    <format decimalPlaces="2" decimalSeparator="comma" thousandsSeparator="point" symbol="€" symbolLocation="endWithBlank" />
    <range from="-300,00 €" to="5.000,00 €" />
</inputValidation>


True (within the range)False (outside the range)
Image Removed


Image Added


Image Modified
  • Phone
    • Format: required; International, InternationalLeadingZeros, InternationLeadingPlus

...

Code Block
languagexml
themeEclipse
<inputValidation>
    <type>time</type>
    <format>HH:mm</format>
    <range from="12:00" to="18:00" />
</inputValidation>

...

Image Added