c# 4.7.2 asp.net classic webservice, connecting to webserivce using proxy generated by wsdl.exe via winforms.
I have web apps successfully connecting to the webservice, but I have a tool I wrote in c#/winforms, for testing if webservices are alive and working at various levels (dev/prod/etc)
What is the easiest way to call an .asmx webservice via https?
This is what it looks like now, but I'm okay with abandoning the proxy if that's easier
AdStudent.ADStudent ws = new AdStudent.ADStudent();
ws.Url = "https://jcdcadstudent.bob.org/adstudent.asmx";
string str = ws.GetGuidString("Brown.Eric");
(Error = The underlying connection was closed: An unexpected error occurred on a send)
On the web apps, just changing the url works, but not from a winform.