WCF如何綁定netTcpBinding寄宿到控制臺(tái)應(yīng)用程序詳解
契約
新建一個(gè)WCF服務(wù)類庫項(xiàng)目,在其中添加兩個(gè)WCF服務(wù):GameService,PlayerService
代碼如下:
[ServiceContract]
public interface IGameService
{
[OperationContract]
Task<string> DoWork(string arg);
}
public class GameService : IGameService
{
public async Task<string> DoWork(string arg)
{
return await Task.FromResult($"Hello {arg}, I am the GameService.");
}
}
[ServiceContract]
public interface IPlayerService
{
[OperationContract]
Task<string> DoWork(string arg);
}
public class PlayerService : IPlayerService
{
public async Task<string> DoWork(string arg)
{
return await Task.FromResult($"Hello {arg}, I am the PlayerService.");
}
}
服務(wù)端
新建一個(gè)控制臺(tái)應(yīng)用程序,添加一個(gè)類 ServiceHostManager
public interface IServiceHostManager : IDisposable
{
void Start();
void Stop();
}
public class ServiceHostManager<TService> : IServiceHostManager
where TService : class
{
ServiceHost _host;
public ServiceHostManager()
{
_host = new ServiceHost(typeof(TService));
_host.Opened += (s, a) => {
Console.WriteLine("WCF監(jiān)聽已啟動(dòng)!{0}", _host.Description.Endpoints[0].Address);
};
_host.Closed += (s, a) =>
{
Console.WriteLine("WCF服務(wù)已終止!{0}", _host.Description.Endpoints[0].Name);
};
}
public void Start()
{
Console.WriteLine("正在開啟WCF服務(wù)...{0}", _host.Description.Endpoints[0].Name);
_host.Open();
}
public void Stop()
{
if (_host != null && _host.State == CommunicationState.Opened)
{
Console.WriteLine("正在關(guān)閉WCF服務(wù)...{0}", _host.Description.Endpoints[0].Name);
_host.Close();
}
}
public void Dispose()
{
Stop();
}
public static Task StartNew(CancellationTokenSource cancelTokenSource)
{
var theTask = Task.Factory.StartNew(() =>
{
IServiceHostManager shs = null;
try
{
shs = new ServiceHostManager<TService>();
shs.Start();
while (true)
{
if (cancelTokenSource.IsCancellationRequested && shs != null)
{
shs.Stop();
break;
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
if (shs != null)
shs.Stop();
}
}, cancelTokenSource.Token);
return theTask;
}
}
在Main方法中啟動(dòng)WCF主機(jī)
class Program
{
static Program()
{
Console.WriteLine("初始化...");
Console.WriteLine("服務(wù)運(yùn)行期間,請不要關(guān)閉窗口。");
Console.WriteLine();
}
static void Main(string[] args)
{
Console.Title = "WCF主機(jī) x64.(按 [Esc] 鍵停止服務(wù))";
var cancelTokenSource = new CancellationTokenSource();
ServiceHostManager<WcfContract.Services.GameService>.StartNew(cancelTokenSource);
ServiceHostManager<WcfContract.Services.PlayerService>.StartNew(cancelTokenSource);
while (true)
{
if (Console.ReadKey().Key == ConsoleKey.Escape)
{
Console.WriteLine();
cancelTokenSource.Cancel();
break;
}
}
Console.ReadLine();
}
}
服務(wù)端配置
在控制臺(tái)應(yīng)用程序的App.config中配置system.serviceModel
<system.serviceModel> <services> <service name="Wettery.WcfContract.Services.GameService" behaviorConfiguration="gameMetadataBehavior"> <endpoint address="net.tcp://localhost:19998/Wettery/GameService" binding="netTcpBinding" contract="Wettery.WcfContract.Services.IGameService" bindingConfiguration="netTcpBindingConfig"> <identity> <dns value="localhost" /> </identity> </endpoint> </service> <service name="Wettery.WcfContract.Services.PlayerService" behaviorConfiguration="playerMetadataBehavior"> <endpoint address="net.tcp://localhost:19998/Wettery/PlayerService" binding="netTcpBinding" contract="Wettery.WcfContract.Services.IPlayerService" bindingConfiguration="netTcpBindingConfig"> <identity> <dns value="localhost" /> </identity> </endpoint> </service> </services> <bindings> <netTcpBinding> <binding name="netTcpBindingConfig" closeTimeout="00:30:00" openTimeout="00:30:00" receiveTimeout="00:30:00" sendTimeout="00:30:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="100" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="100" maxReceivedMessageSize="2147483647"> <readerQuotas maxDepth="64" maxStringContentLength="2147483647" maxArrayLength="2147483647 " maxBytesPerRead="4096" maxNameTableCharCount="16384" /> <reliableSession ordered="true" inactivityTimeout="00:30:00" enabled="false" /> <security mode="Transport"> <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" /> </security> </binding> </netTcpBinding> </bindings> <behaviors> <serviceBehaviors> <behavior name="gameMetadataBehavior"> <serviceMetadata httpGetEnabled="True" httpGetUrl="http://localhost:8081/Wettery/GameService/MetaData" /> <serviceDebug includeExceptionDetailInFaults="True" /> <serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="1000" maxConcurrentSessions="1000" /> </behavior> <behavior name="playerMetadataBehavior"> <serviceMetadata httpGetEnabled="True" httpGetUrl="http://localhost:8081/Wettery/PlayerService/MetaData" /> <serviceDebug includeExceptionDetailInFaults="True" /> <serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="1000" maxConcurrentSessions="1000" /> </behavior> </serviceBehaviors> </behaviors> </system.serviceModel>
未避免元數(shù)據(jù)泄露,部署時(shí)將HttpGetEnable設(shè)為False
運(yùn)行控制臺(tái)應(yīng)用程序
按[ESC]鍵終止服務(wù)
客戶端測試
服務(wù)端運(yùn)行后,用wcftestclient工具測試,服務(wù)地址即behavior中配置的元數(shù)據(jù)GET地址
http://localhost:8081/Wettery/GameService/MetaData
http://localhost:8081/Wettery/PlayerService/MetaData
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對我們的支持。
上一篇:ASP.NET Core中間件計(jì)算Http請求時(shí)間示例詳解
欄 目:ASP.NET
下一篇:Asp.net core利用MediatR進(jìn)程內(nèi)發(fā)布/訂閱詳解
本文標(biāo)題:WCF如何綁定netTcpBinding寄宿到控制臺(tái)應(yīng)用程序詳解
本文地址:http://www.jygsgssxh.com/a1/ASP_NET/10914.html
您可能感興趣的文章
- 01-11如何給asp.net core寫個(gè)簡單的健康檢查
- 01-11.net core高吞吐遠(yuǎn)程方法如何調(diào)用組件XRPC詳解
- 01-11WCF中使用nettcp協(xié)議進(jìn)行通訊的方法
- 01-11ASP.NET如何自定義項(xiàng)目模板詳解
- 01-11如何給asp.net core寫個(gè)中間件記錄接口耗時(shí)
- 01-11ASP.NET Core中如何利用Csp標(biāo)頭對抗Xss攻擊
- 01-11詳解在ASP.NET Core中如何編寫合格的中間件
- 01-11.NET core 3.0如何使用Jwt保護(hù)api詳解
- 01-11ASP.NET Core如何自定義配置源示例詳解
- 01-113分鐘快速學(xué)會(huì)在ASP.NET Core MVC中如何使用Cookie


閱讀排行
本欄相關(guān)
- 01-11vscode extension插件開發(fā)詳解
- 01-11VsCode插件開發(fā)之插件初步通信的方法
- 01-11如何給asp.net core寫個(gè)簡單的健康檢查
- 01-11.net core高吞吐遠(yuǎn)程方法如何調(diào)用組件
- 01-11淺析.Net Core中Json配置的自動(dòng)更新
- 01-11.NET開發(fā)人員關(guān)于ML.NET的入門學(xué)習(xí)
- 01-11.NET Core 遷移躺坑記續(xù)集之Win下莫名其
- 01-11.net core webapi jwt 更為清爽的認(rèn)證詳解
- 01-11docker部署Asp.net core應(yīng)用的完整步驟
- 01-11ASP.NET Core靜態(tài)文件的使用方法
隨機(jī)閱讀
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-11ajax實(shí)現(xiàn)頁面的局部加載
- 04-02jquery與jsp,用jquery
- 01-10delphi制作wav文件的方法
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-10C#中split用法實(shí)例總結(jié)
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 08-05織夢dedecms什么時(shí)候用欄目交叉功能?


