Throws at 馃憤
private bool CheckIfWebServiceIsUpAndRunning()
{
try
{
_log.Info("Check if python web-service is already running");
//Creating the HttpWebRequest
var request = WebRequest.Create(_serviceUrlCheckAliveMethod) as HttpWebRequest;
//Setting the Request method HEAD, you can also use GET too.
request.Method = "GET";
//Getting the Web Response.
var response = request.GetResponse() as HttpWebResponse; <<<<<
No connection could be made because the target machine actively refused it No connection could be made because the target machine actively refused it
Throws at 馃憤
No connection could be made because the target machine actively refused it No connection could be made because the target machine actively refused it