XFile, like a browser (or other HTTP client), can make a request to a webserver using SSL. If the SSL certificate on the server is invalid, for example if it is expired), XFile will return the error "Certificate authority is invalid or incorrect"
XFile may return certificate-related errors more frequently than some other SSL clients, because XFile may be more sensitive to certificate problems than the browsers. |
The IgnoreCertDateInvalid property of the XFRequest object is set to FALSE by default. If you wish XFile to be less sensitive to certificate problems, set this property to True.
Example:
// The variable XFile below refers to the XFRequest object
XFile.IgnoreCertDateInvalid = true;
If you are using XFile's visual control, you need to reference its XFRequest member.
//The variable XFile below refers to the AXFFile object
XFile.XFRequest.IgnoreCertDateInvalid = true;
|