mvc 4连接到外部Web服务

时间:2013-05-24 13:48:42

标签: c# web-services asp.net-mvc-4

我正在使用mvc 4从头开发一个asp.net应用程序。 给我的一个要求是连接到Web服务, 从它调用2个搜索方法,但它们只提供了我的.svc路由 网络服务。

http://server/servicefolder/service.svc

我已经在这里和那里进行了一些搜索,但还没有想到它,在哪里 我必须开始或任何事情。

我想如果有人可以给我一些帮助,可以从哪里开始寻找,做,任何提示 或推荐也很好。

1 个答案:

答案 0 :(得分:4)

只需将服务引用添加到http://server/servicefolder/service.svc

即可

enter image description here

添加引用后,初始化客户端代理,例如

var client = new YourServiceName.YourServiceNameClient(); // Look for the client object.

client.YourClientMethod(...);  // Call the method defined in the client.