You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
i am getting same error. I think this is because flask service is not running on local machine. i.e the urls in the MatplotlibCS.cs are not working
/// Python web service URL
private string _serviceUrlCheckAliveMethod = "http://127.0.0.1:57123/";
/// Python web service URL
private string _serviceUrlPlotMethod = "http://127.0.0.1:57123/plot";
/// Kill web service url
private string _serviceUrlKillMethod = "http://127.0.0.1:57123/kill";
the flask service is setup in the matplotlib_cs.py which should run through c# but it is not executing successfully.
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
The text was updated successfully, but these errors were encountered: