Tuesday

biztalk bypass certificate validation error

 I've fixed BizTalk Certificate Error.

I found a way to bypass certificate validation error. You can add and configure "client credential" endpoint behavior  at WCF-Custom port.

under client credential behavior-->ServiceCertificate-->Authentication


Set certificateValidationMode="None" AND    revocationMode="NoCheck"


under client credential behavior-->ServiceCertificate-->SSLCertificateAuthentication


Set certificateValidationMode="None" AND    revocationMode="NoCheck"




No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...