学习WCF时,你可能会遇到WCF自托管宿主问题,这里将介绍WCF自托管宿主问题的解决方法,在这里拿出来和大家分享一下。利用WCF提供的ServiceHost<T>提供的Open()和Close()方法,可以便于开发者在控制台应用程序,Windows应用程序乃至于ASP.NET应用程序中托管服务。不管自宿主的环境是何种应用程序,实质上托管服务的方式都是一致的。例如在控制台应用程序中:
- using (ServiceHost host = new ServiceHost(typeof(DocumentsExplorerService)))
- {
- host.Open();
- Console.WriteLine("The Service had been launched.");
- Console.Read();
- }
#T#ServiceHost实例是被创建在应用程序域中,因此我们必须保证宿主进程在调用服务期间不会被关闭,因此我们利用Console.Read() 来阻塞进程,以使得控制台应用程序能够一直运行,直到认为地关闭应用程序。如果是Windows应用程序,则可以将创建ServiceHost实例的代码放在主窗体的相关代码中,保证服务WCF自托管宿主不会被关闭。相应地,我们需要配置应用程序的app.config配置文件:
- <configuration>
- <system.serviceModel>
- <services>
- <service name="BruceZhang.WCF.DocumentsExplorerServiceImplementation.DocumentsExplorerService" behaviorConfiguration="DocumentExplorerServiceBehavior">
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:8008/DocumentExplorerService"/>
- </baseAddresses>
- </host>
- <endpoint
- address=""
- binding="basicHttpBinding"
- bindingConfiguration="DocumentExplorerServiceBinding"
- contract="BruceZhang.WCF.DocumentsExplorerServiceContract.IDocumentsExplorerService"/>
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
- </service>
- </services>
- <bindings>
- <basicHttpBinding>
- <binding name="DocumentExplorerServiceBinding" sendTimeout="00:10:00" transferMode="Streamed"
- messageEncoding="Text" textEncoding="utf-8" maxReceivedMessageSize="9223372036854775807">
- </binding>
- </basicHttpBinding>
- </bindings>
- <behaviors>
- <serviceBehaviors>
- <behavior name="DocumentExplorerServiceBehavior">
- <serviceMetadata httpGetEnabled="true"/>
- </behavior>
- </serviceBehaviors>
- </behaviors>
- </system.serviceModel>
- </configuration>
注意,配置文件中的服务名必须包含服务契约以及服务类的命名空间。此外,在配置文件中我通过<baseAddresses>标签为服务添加了基地址,因此在endpoint中,address为""。