We are using Umbraco 4.7 and recently we switched over to using https and everything was running smothly. However, we ran into a problem when the notifcations went out to users. Previously the links looked similar to www.abc.com:80/umbraco... Now they were looking like www.abc.com:443/umbraco... This would come across to the web server as http://www.abc.com:443/umbrcao... and the browser would hang or timeout. I found that if in the browser I typed in https://www.abc.com:443/umbraco... everything was fine. The solution to fix this was to change souce code.
File: Umbraco.cms -> workflow -> Notification.cs
I replaced http:// with HttpContext.Current.Request.Url.Scheme + "://".
Sending Notifications Using HTTPS
We are using Umbraco 4.7 and recently we switched over to using https and everything was running smothly. However, we ran into a problem when the notifcations went out to users. Previously the links looked similar to www.abc.com:80/umbraco... Now they were looking like www.abc.com:443/umbraco... This would come across to the web server as http://www.abc.com:443/umbrcao... and the browser would hang or timeout. I found that if in the browser I typed in https://www.abc.com:443/umbraco... everything was fine. The solution to fix this was to change souce code.
File: Umbraco.cms -> workflow -> Notification.cs
I replaced http:// with HttpContext.Current.Request.Url.Scheme + "://".
private static void sendNotification
is working on a reply...