码迷,mamicode.com
首页 > 其他好文 > 详细

WCF 远程访问的解决

时间:2015-03-05 18:58:46      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:


            Uri uri = new Uri("http://172.16.238.156:8000/");
            ServiceHost host = new ServiceHost(typeof(WcfServer.ChatDuplex), uri);
            WSDualHttpBinding ws = new WSDualHttpBinding();
            ws.Security.Mode = WSDualHttpSecurityMode.None;
            host.AddServiceEndpoint(typeof(IChatDuplex), ws, "Svc");
            host.Open();
            MessageBox.Show("服务启动");

WCF 远程访问的解决

标签:

原文地址:http://www.cnblogs.com/linbl/p/4316329.html

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