The MetadataTemplate.xml file found in the application folder for FaxAssist can be customized and is used in the output of any metadata file that FaxAssist creates for a fax document.

The filename "MetadataTemplate" is required, however the contents of the file and the file extension can be customized to better fit your work flow.

Caution

Only one MetadataTemplate file should exist in the application folder.

Note

This is only available for the service type InboundWS.

The default MetadataTemplate as MetadataTemplate.xml (this can be customized):

Xml Copy imageCopy
<?xml version="1.0" encoding="UTF-16" standalone="no" ?>
<faxdetails>
    <messageId>%{MessageID}</messageId>
    <messageType>%{ContentType}</messageType>
    <contenttype>%{ContentSubType}</contenttype>
    <attachmentName>%{FileName}</attachmentName>
    <account></account>
    <senderCSID>%{RemoteCSID}</senderCSID>
    <callerNumber>%{CallerNumber}</callerNumber>
    <calledNumber>%{CalledNumber}</calledNumber>
    <UserId>%{UserID}</UserId>
    <receivedTime>%{ReceivedTime}</receivedTime>
    <timeZone>%{TimeZone}</timeZone>
    <numPages>%{NumPages}</numPages>
    <Duration>%{Duration}</Duration>
    <resolution>%{Resolution}</resolution>
    <speed>%{Speed}</speed>
    <attachmentCount>1</attachmentCount>
    <attachments>
        <attachmentName1>%{FileName}</attachmentName1>
    </attachments>
</faxdetails>

For example if your work flow uses the INI file format, you could modify the MetadataTemplate file to MetadataTemplate.ini and set the Tokens (as listed below) to the fields your work flow expects.

Example MetadataTemplate as an INI file, MetadataTemplate.ini:

 Copy imageCopy
[Fax Details]
MessageId=%{MessageID}
MessageType=%{ContentType}
Contenttype=%{ContentSubType}
AttachmentName=%{FileName}
SenderCSID=%{RemoteCSID}
CallerNumber=%{CallerNumber}
CalledNumber=%{CalledNumber}
UserId=%{UserID}
ReceivedTime=%{ReceivedTime}
TimeZone=%{TimeZone}
NumPages=%{NumPages}
Duration=%{Duration}
Resolution=%{Resolution}
Speed=%{Speed}

See Also