Hi,
We have looked into the Url. The root of the issue is the incorrect redirect Url that your server generated for the following request:
Code:
http://cu.savaxxxx.xxx/ui/portal/75xxxxbcfa-cede-4xxx9-9exxxxxxxxe
Your server would redirect this Url to:
Code:
https://_/ui/portal/75xxxxbcfa-cede-4xxx9-9exxxxxxxxe
Obviously this is wrong. Because this redirect is generated by your server, the issue would have to be fixed on your server.
The reason why you do not see this problem in Chrome because Chrome automatically uses HTTPS for certain HTTP request. So when Chrome receives the following HTTP request:
Code:
http://cu.savaxxxx.xxx/ui/portal/75xxxxbcfa-cede-4xxx9-9exxxxxxxxe
It automatically replaces it with the HTTPS version:
Code:
https://cu.savaxxxx.xxx/ui/portal/75xxxxbcfa-cede-4xxx9-9exxxxxxxxe
This is the right Url thus it loads correctly. In another word, Chrome never attempted to load the HTTP version as told by your server thus never triggered the incorrect HTTP -> HTTPs redirection your server is attempting to perform.
The same automatic HTTP -> HTTPs replacement does not occur in other browsers, even EO.WebBrowser, so those browsers faithfully follow the incorrect redirection your server issued and end up not able to load the page.
Hope this helps. Please feel free to let us know if you still have any questions.
Thanks!