Web服务EndpointNotFoundException

时间:2016-10-21 09:50:44

标签: c# web-services

当我尝试从db检索数据时,我得到了这个例外。

主机web.config文件,在代码中我打开监听器。

private void ReadAllBtn_Click(object sender, EventArgs e)
    {

        Uri httpAddress = new 
Uri("http://localhost:8090/MyService/NORTHWIND");
        EndpointAddress endpoint = new EndpointAddress(httpAddress);

        IMyService proxy = ChannelFactory<IMyService>.CreateChannel(new 
BasicHttpBinding(), endpoint);
        dataGridView.DataSource = proxy.ReadPerson();

    }

客户端代码。

{{1}}

有人知道会出现什么问题吗?

0 个答案:

没有答案