Scheduling Returns Error on FF840
- This topic has 0 replies, 1 voice, and was last updated 10 years, 2 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- The forum ‘FaxFinder’ is closed to new topics and replies.
My company currently has an older Faxfinder FF430 (old building), and a newer FF840 (new building). I used the C++ api to create a program to automatically schedule our faxes which pulls the pdf file from a webserver. My .exe works fine when it is pointed to the older FF430 device. When I change the IP to the new FF840 it crashes and generates the error below. Same XML file, etc that works with the FF430. I also tried the sample.xml file included with the C++ API and that fails as well. We are looking to migrate to the newer FF840 but this is holding things up. Any thoughts?
Error:
The remote server returned an error. (417) expectation failed at system.net.httpwebrequest.getrespone() at main () at mainCRTStartup()
XML:
<?xml version=”1.0″ encoding=”UTF-8″?>
<schedule_fax>
<max_tries>6</max_tries>
<priority>2</priority>
<try_interval>333</try_interval>
<receipt>failure</receipt>
<receipt_attachment>none</receipt_attachment>
<cover_page>
<enabled>false</enabled>
</cover_page>
<sender>
<name>My Company</name>
<email_address>email@mycompany.com</email_address>
</sender>
<recipient>
<name>Test User</name>
<Organization>Test Org</Organization>
<fax_number>123-456-7890</fax_number>
</recipient>
<attachment>
<location>external</location>
<content_type>application/pdf</content_type>
<content_transfer_encoding>base64</content_transfer_encoding>
<url>http://mywebserver/faxes/1234.pdf</url>
</attachment>
</schedule_fax>