wcf 以winform当宿主 本地测试Ok.局域网访问有问题,求教
1个回答
展开全部
您好,(1)在类文件中,添加using语句来导入下面的名字空间:
·System.ServiceModel
·System.Configuration
·DerivativesCalculatorService
(2)代码看起来应该如下所示:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.ServiceModel; using DerivativesCalculatorService; namespace Host { class Program { static void Main(string[] args) { } } }
(3)在Main方法中添加下面的代码:
static void Main(string[] args) { Type serviceType = typeof(Calculator); using (ServiceHost host = new ServiceHost(serviceType)) { } }
第一行WCF服务宿主程序的代码得到一个类型引用,这个类型就是具体实现WCF服务的那个类,也是我们将要在宿主程序中运行的类。
using语句用来对ServiceHost实例进行初始化,在作用域结束时ServiceHost的Dispose()会被自动调用。
(4)在using语句内部,我们先启动ServiceHost,然后通过等待用户输入的方式来阻止应用程序退出。
(5)下面是完整的WCF服务宿主程序代码,新增的代码加亮显示。
namespace Host { class Program { static void Main(string[] args) { Type serviceType = typeof(Calculator); using (ServiceHost host = new ServiceHost(serviceType)) { host.Open(); Console.WriteLine("The calculator service is available."); Console.ReadKey(); } } } }
(6)选择File | Save All菜单项。
(7)在进入下一个任务之前请确保解决方案能够编译通过(按CTRL+Shift+B快捷键)。
·System.ServiceModel
·System.Configuration
·DerivativesCalculatorService
(2)代码看起来应该如下所示:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.ServiceModel; using DerivativesCalculatorService; namespace Host { class Program { static void Main(string[] args) { } } }
(3)在Main方法中添加下面的代码:
static void Main(string[] args) { Type serviceType = typeof(Calculator); using (ServiceHost host = new ServiceHost(serviceType)) { } }
第一行WCF服务宿主程序的代码得到一个类型引用,这个类型就是具体实现WCF服务的那个类,也是我们将要在宿主程序中运行的类。
using语句用来对ServiceHost实例进行初始化,在作用域结束时ServiceHost的Dispose()会被自动调用。
(4)在using语句内部,我们先启动ServiceHost,然后通过等待用户输入的方式来阻止应用程序退出。
(5)下面是完整的WCF服务宿主程序代码,新增的代码加亮显示。
namespace Host { class Program { static void Main(string[] args) { Type serviceType = typeof(Calculator); using (ServiceHost host = new ServiceHost(serviceType)) { host.Open(); Console.WriteLine("The calculator service is available."); Console.ReadKey(); } } } }
(6)选择File | Save All菜单项。
(7)在进入下一个任务之前请确保解决方案能够编译通过(按CTRL+Shift+B快捷键)。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询