Quantcast
Channel: FiveTech Software tech support forums
Viewing all articles
Browse latest Browse all 26212

Web service HTTP GET Basic Authentication howto

$
0
0
Hi, Thank you for your answer. I continue to search and I found a solution. oHttp:Open( 'GET', "https://demoweb/DiamicBiothequeService.svc/patients/0242888T/patientinfos", .f. ) oHttp:SetRequestHeader( "Content-Type","application/json") /* if its json*/ ohttp:SetRequestHeader( "Authorization", "Basic "+hb_base64Encode("user:pwrd")) oHttp:Send() This code is working but I have just one blocking step. I receive a security alert to accept the certificate. Is this a way to avoid this certificate alert ? Like it is done in .Net with this code : private static void SetCertificatePolicy() { ServicePointManager.ServerCertificateValidationCallback += ValidateRemoteCertificate; } /// /// Certificate validation callback. /// private static bool ValidateRemoteCertificate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors error) { //Debug.WriteLine("Trusting X509Certificate '" + cert.Subject + "'"); return true; } Thank you. Kind regards. Jack.

Viewing all articles
Browse latest Browse all 26212

Trending Articles