Using [delphi] MadExcept Error Handling with MS Exchange Server 2007

I am currently using madExcept .MailAsSmtpClient to send error reports. However, several major clients upgraded to Exchange Server 2007, and we cannot configure SMTP support for our application (the application runs on separate workstations, so not all messages come from the same IP address. We can configure an authenticated account in exchange and access to it through SMTP from other clients, but for some reason it rejects madExcept).

I have two questions
1) Has anyone successfully configured this combo? or
2) is there an example of how to use the madExcept.UploadViaHTTP parameter?

+4
source share
1 answer

If you download the madExceptbug report via HTTP, you need a web server that accepts POST requests. Parts of the error report will be published as form parameters encoded as multipart / form-data. A sample PHP code for downloading HTTP can be found here: http://forum.madshi.net/viewtopic.php?t=4611

+3
source

Source: https://habr.com/ru/post/1303734/


All Articles