Skip to content

CheckIfWebServiceIsUpAndRunning throws an Exception #17

@foxmalderalex

Description

@foxmalderalex

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions