You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While this is a nice example and demonstrates who to do the authentication with Qlik I do believe that the following line: ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; Source
It is dangerous since it will affect all subsequent certificate validations, even for requests that are unrelated to the Qlik implementation.
The text was updated successfully, but these errors were encountered:
I totally agree, it's a dumb way of doing it... If there's a desire to NOT validate the cert then it's probably a lot better to use HttpWebRequest.ServerCertificateValidationCallback on the specific request to not disturb others. Just need to find the time to look at this some day....
Hello,
While this is a nice example and demonstrates who to do the authentication with Qlik I do believe that the following line:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
Source
It is dangerous since it will affect all subsequent certificate validations, even for requests that are unrelated to the Qlik implementation.
The text was updated successfully, but these errors were encountered: