HostingWCFService-创新互联

There are some ways to hosting WCF service as below:

创新互联是一家专业的成都网站建设公司,我们专注网站设计、成都网站建设、网络营销、企业网站建设,买链接广告投放为企业客户提供一站式建站解决方案,能带给客户新的互联网理念。从网站结构的规划UI设计到用户体验提高,创新互联力求做到尽善尽美。

1. IIS; 2. Console App; 3. Window Service

Using Console Application to host WCF service:

Step 1:

 

Step 2: Add a Class Library project : 'Contract'

Step 3: Add a Interface : 'IHelloWorld'

using System.ServiceModel;

namespace Contract
{
    [ServiceContract(Name= "HelloWorldService")]
public interface IHelloWorld
    {
        [OperationContract]
string SayHello();
    }
}

Step 4: Add a Class : 'HelloWorld'

namespace Contract
{
public class HelloWorld : IHelloWorld
    {
public string SayHello()
        {
return "Hello World. I'm WCF Service.";
        }
    }
}

Step 5: Add a Console Application : 'Host'

Step 6:
Use WCF Service Configuration Editor to generate the server config.

                                        

Step 7:
Set up server host

using System;
using System.ServiceModel;
using Contract;

namespace Host
{
class Program
    {
static void Main(string[] args)
        {
using (var host = new ServiceHost(typeof(HelloWorld)))
            {
                host.Opened+= delegate
                                   {
                                       Console.WriteLine("CalculaorService已经启动,按任意键终止服务!");
                                   };
                host.Open();  
                Console.Read();
            }
        }
    }
}

当前名称:HostingWCFService-创新互联
本文路径:http://bzwzjz.com/article/djohip.html

其他资讯

Copyright © 2007-2020 广东宝晨空调科技有限公司 All Rights Reserved 粤ICP备2022107769号
友情链接: 定制网站建设多少钱 四川成都网站制作 成都网站建设 营销型网站建设 成都网站建设 移动网站建设 成都网站制作公司 成都网站制作 阿坝网站设计 专业网站设计 高端网站设计 外贸网站设计方案 成都定制网站建设 古蔺网站建设 企业网站设计 网站建设方案 重庆手机网站建设 app网站建设 攀枝花网站设计 成都网站建设公司 网站设计公司 移动手机网站制作