在vs2013中使用经典的asp.net Web服务

时间:2015-05-15 15:32:51

标签: c# asp.net web-services wcf visual-studio-2013

我很久以前就创建了一个旧的Webservice(.asmx)。 我想在vs2013 c#winforms app中使用它。

在过去,我添加了一个网络参考,即" TheService" 并创建并添加了一个代理对象,并使用了它myApp.TheService

旧守则:

private ADStudent GetStudentWebService()
        {
            AdStudent.ADStudent ws = new AdStudent.ADStudent();
            ws.Url = comboBox_WebServiceUrl.SelectedItem.ToString();
            return ws;
        }

2013年我添加了服务引用,但没有创建代理对象,所以我如何调用服务上的方法,我可以找到调用wcf数据服务的示例,但不是旧学校Soap(.asmx)webserivce

是否有示例代码?

0 个答案:

没有答案