Community Services use HTTPS #21

This commit is contained in:
Gary Sharp
2013-10-17 11:34:22 +11:00
parent fdb5d37ec8
commit d6859dcde4
8 changed files with 42 additions and 42 deletions
@@ -50,13 +50,13 @@ namespace Disco.Web.Models.InitialConfig
}
#endregion
#region Communicate with http://discoict.com.au/
#region Communicate with https://discoict.com.au/
try
{
Dns.GetHostEntry("discoict.com.au");
try
{
HttpWebRequest wReq = (HttpWebRequest)HttpWebRequest.Create("http://discoict.com.au/");
HttpWebRequest wReq = (HttpWebRequest)HttpWebRequest.Create("https://discoict.com.au/");
// Added: 2013-02-08 G#
// Fix for Proxy Servers which dont support KeepAlive
wReq.KeepAlive = false;