I have Exchange server 2010 installed in development environment. I am trying to call EWS services form node js web application which is also in dev environment.
When i set require ssl on EWS web site on IIS manager, I get 403 error. Which it normal because my URL endpoint in application was with http, exactly: http://192.168.50.192/EWS/Exchange.asmx
But when I try with url https://192.168.50.192/EWS/Exchange.asmx that is https, I am getting timeout.
I am entering this url on web form and then programmatically compose SOAP request which I sent to this URL.
I have tried to start ngrok and use whole application with https locally, but I get the same result.
If ssl certificate is the issue, ngrok has valid certificate.
Please advise.
Do I need to apply any additional settings on IIS?