码迷,mamicode.com
首页 > Windows程序 > 详细

C#测试web服务是否可用(转)

时间:2016-08-06 12:44:02      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

转摘:http://www.cnblogs.com/xienb/p/3443282.html

winform客户端经常需要调用webservice或者WCF进行数据交互,但是远程服务有可能不存在或者服务器不可用,客户端只能通过超时或 者捕获到异常感知服务不可用。其实有一个COM借口可用快速的检测检测将要调用服务的状态。引用COM组件:Microsoft XML,v3.0,代码如下:

  

技术分享
            string url = "http://127.0.0.1/MySrv/MsgService.svc";
            XMLHTTP http = new XMLHTTP();
            try
            {
                http.open("GET", url, false, null, null);
                http.send(url);
                int status = http.status;
                if (status == 200)
                {
                    Console.WriteLine("成功");
                }
                else
                {
                    Console.WriteLine("不可用status:"+status.ToString());
                }
            }
            catch
            {
                Console.WriteLine("不可用");
            }
技术分享

C#测试web服务是否可用(转)

标签:

原文地址:http://www.cnblogs.com/zyhblogs/p/5743610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!