Receiving Faxes
Receiving faxes with the integration module.
To receive faxes with the EIM, simply change the online attribute to "1" in the receive queue defined in your local.config file.
<queue online="1">
<type>receive</type>
<path>\{default}\Inbox</path>
<notification></notification>
</queue>
Once this field has been changed, simply restart your EIM service and faxes will be received and placed in the location defined in the <path>
element. Each fax receive will be written to the <path>
in the form {id}.fax
, where {id}
is the unique fax job id assigned by etherFAX. The received attachment file will be placed in an Image directory relative to the <path>
location defined.
Each received fax file will appear as follows:
<?xml version="1.0" encoding="utf-16"?>
<FaxReceive xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FaxResult>Success</FaxResult>
<JobId>d0c40198-b56a-426f-967e-1a9569bf61fa</JobId>
<CalledNumber>8565551234</CalledNumber>
<CallingNumber>2155551234</CallingNumber>
<RemoteId>InStep Group</RemoteId>
<PagesReceived>2</PagesReceived>
<ConnectTime>38</ConnectTime>
<ConnectSpeed>14400</ConnectSpeed>
<ReceivedOn>2016-12-19T20:25:02.107</ReceivedOn>
<FaxImage>c:\etherFAX\Inbox\Images\d0c40198-b56a-426f-967e-1a9569bf61fa.tif</FaxImage>
</FaxReceive>
Updated about 2 months ago