我没有 IIS,我使用 Visual Studio 附带的本地主机,如果我使用本地主机,我不确定如何进行服务调用。它告诉我“无法连接到远程服务器”,有没有办法可以使用 localhost 进行 Web 服务调用?这是我的代码:
public void CallService()
{
WebRequest requestweb = WebRequest.Create("http://localhost/WebServices/MyTestService/HelloWorld");
requestweb.Method = "GET";
//Line below returns "Unable to connect to remote server"
WebResponse response = requestweb.GetResponse();
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
Stream data = response.GetResponseStream();
response.Close();
}
真的很感激这方面的建议。谢谢