I am trying to consume an onprem webservice from Azure APP service under https protocol. While I do I received the error
The remote certificate is invalid according to the validation procedure
This is meaningful, as Azure by default don't have to trust the service, presenting certificate issued by the OnPrem CA. However, Is there a way to configure the trust in app service.
I tried uploading the public key certificate .cer file in Base encoded format and updated the app setting with the app key WEBSITE_LOAD_ROOT_CERTIFICATES as specified int he below article https://learn.microsoft.com/en-us/azure/app-service/environment/certificates
It dint work well and I get he same error. Is my understanding right/ Is thee a right way to do it.