我创建了一个WCF net.tcp服务并使用Net.Tcp监听器适配器托管它,它运行良好 - 我在回调上设置了一些消息,因此服务使用状态更新客户端。现在,我试图通过Windows服务托管来实现它,而我正在做的就是使用与原始版本相同的类来创建ServiceHost:
using System.Diagnostics;
using System.ServiceModel;
using System.ServiceProcess;
using BuilderService;
namespace BuilderWindowsService
{
public class BuilderWindowsService : ServiceBase
{
public ServiceHost ServiceHost = null;
public BuilderWindowsService()
{
ServiceName = ServiceNames.Builder;
}
public static void Main()
{
Run(new BuilderWindowsService());
}
protected override void OnStart(string[] args)
{
if (ServiceHost != null)
ServiceHost.Close();
ServiceHost = new ServiceHost(typeof(Builder));
ServiceHost.Open();
}
protected override void OnStop()
{
if(ServiceHost != null)
{
ServiceHost.Close();
ServiceHost = null;
}
}
}
}
我可以连接到服务并发送请求,但它从不响应也不会超时。我知道我正在使用Windows服务,因为我在另一个端口(8002)上使用它,我可以使用它作为参考添加它。
Windows Service的My App.config与原始的Web.config非常相似。对于我正在使用的客户端也是如此,除了它指向8002端点而不是808.此外,我已经将此工作用于另一个服务,执行完全相同的设置,但由于某种原因,这个从不响应。
更新
我创建了一个小客户端应用程序来测试直接命中Windows服务以排除任何干扰,并生成以下app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="NetTcpBinding_IBuilder"
closeTimeout="00:01:00"
openTimeout="00:01:00"
receiveTimeout="00:10:00"
sendTimeout="00:01:00"
transactionFlow="false"
transferMode="Buffered"
transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard"
listenBacklog="10"
maxBufferPoolSize="2147483647"
maxBufferSize="2147483647"
maxConnections="10"
maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="4096"
maxNameTableCharCount="2147483647" />
<reliableSession ordered="true"
inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows"
protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows"
algorithmSuite="Default" />
</security>
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="net.tcp://localhost:8002/BuilderService/Builder.svc"
binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IBuilder"
contract="RGBRef.IBuilder"
name="NetTcpBinding_IBuilder">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
这对我来说很正常(注意:我手动将缓冲区/字符串长度值上调到最大值)。只有与原始配置不同的东西:
transferMode="Buffered"
transactionProtocol="OleTransactions"
listenBacklog="10"
<transport clientCredentialType="Windows"
protectionLevel="EncryptAndSign" />
不确定服务是否期望这些或某些东西。无论哪种方式,它仍然没有得到任何回复,也没有错误。
答案 0 :(得分:1)
也许该服务出现故障,因为它现在在不同的凭据下作为Windows服务运行。编写一些EventLog条目以跟踪发生故障的位置。我不相信是回调,我怀疑它在服务中失败了。