怎样实现我在这台电脑去调用别人电脑上webservice发布的函数?
我在我自己的电脑上的项目里怎样去调用别人电脑上的webservice的函数?
求大神贴个客户端,服务端的代码例子 非常感谢!!!!!!!!!!!!!!我没多少豆子了
让别人发布到一个测试地址上,然后把地址给你,你再添加服务
别人要把webservice挂到iis上,这样你才能通过对方电脑ip去访问
怎样挂IIS上?
@珍是唯一: 就想发布网站一样,百度下iis发布网站吧
1.首先在妳的项目中添加目标Webservice的引用
这里填写妳要使用的webservice的地址
2.然后
在文件中添加引用,引用刚才加好的webservice;
using MyFirstWebServiceConsumerApp.MyFirstWebServiceReference;
3.在代码中使用的例子:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using MyFirstWebServiceConsumerApp.MyFirstWebServiceReference; namespace MyFirstWebServiceConsumerApp { class Program { static void Main(string[] args) { Service1 webService = new Service1(); Console.WriteLine(webService.MyFirstWebMethod("Bradd", "Pitt")); Console.ReadLine(); } } }
这个我会 ,不过还是谢谢你