gpt4 book ai didi

WCF 缓慢的 ServiceHost.Open() 调用

转载 作者:行者123 更新时间:2023-12-04 14:40:16 25 4
gpt4 key购买 nike

这是一个与这个类似的问题: Win32Exception @ ServiceHost.Open() for WCF service .

我有一台机器在下面的 ServiceHost.Open 调用上非常慢。每次打开服务都需要 7 秒左右的时间。这台机器是我的家庭机器,它是域的一部分。

我可以在另一个框(我的工作框)上运行相同的代码,该框域的一部分并且服务主机在第一次调用时大约 3-4 秒内打开,但如果我运行该程序将在大约 1 秒或更短的时间内再次打开服务主机。

我已经与 MS 支持人员合作解决了这个问题,我们生成了跟踪日志,它卡在其中的部分是出去并尝试连接到域,即使是在不属于域的机器上也是如此。它得到“指定的域不存在或无法联系”。跟踪日志中的异常,这就是所有时间都被耗尽的地方。

但真正奇怪的是,即使在我的工作机器上,如果我没有连接到域(比如如果我不在我的工作网络上并且只是在家里运行)我仍然 获取延迟。

我使用 Windows 7 64 位重建了我的机器,并且出现了相同的行为(运行的是 XP SP3,当 Windows 7 似乎无法解决问题时我恢复了它)。

我只是想知道是否有人对导致这种情况的原因有任何想法。顺便说一句,如果我禁用“Microsoft 网络客户端”,打开 ServiceHost 的时间大约为 4 秒,但这仍然不如这台机器过去能够打开服务的速度快。不知何故,它认为它应该是域或其他东西的一部分。

    static void RunServiceWithinEXE()
{
Uri baseAddress = new Uri("http://localhost:11111/Demo");
ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress);

try
{
// Add a service endpoint
serviceHost.AddServiceEndpoint(
typeof(ICalculator),
new WSHttpBinding(),
"CalculatorService");

// Enable metadata exchange
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
serviceHost.Description.Behaviors.Add(smb);
serviceHost.Opening += new EventHandler(serviceHost_Opening);
serviceHost.Opened += new EventHandler(serviceHost_Opened);
serviceHost.Open();
Console.WriteLine("The service is ready.");

// Close the ServiceHostBase to shutdown the service.
serviceHost.Close();
}
catch (CommunicationException ce)
{
Console.WriteLine("An exception occured: {0}", ce.Message);
serviceHost.Abort();
}
}

static void serviceHost_Opened(object sender, EventArgs e)
{
TimeSpan timeToOpen = DateTime.Now - shOpening;
Console.WriteLine("Time To Open: :" + timeToOpen.Seconds);
}

static void serviceHost_Opening(object sender, EventArgs e)
{
shOpening = DateTime.Now;
}

这是我的 app.config,但我没有为其中的服务设置任何特殊的安全配置设置,只有一些用于启用 WCF 跟踪的诊断设置。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<diagnostics>
<messageLogging maxMessagesToLog="30000"
logEntireMessage="true"
logMessagesAtServiceLevel="false"
logMalformedMessages="true"
logMessagesAtTransportLevel="true">
<filters>
<clear/>
</filters>
</messageLogging>
</diagnostics>
</system.serviceModel>

<system.diagnostics>
<sources>
<source name="System.ServiceModel" switchValue="Warning, ActivityTracing" propagateActivity="true" >
<listeners>
<add name="xml" />
</listeners>
</source>
<source name="System.ServiceModel.MessageLogging" switchValue="Warning">
<listeners>
<add name="xml" />
</listeners>
</source>
</sources>
<sharedListeners>
<add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="C:\Temp\Server.svclog" />
</sharedListeners>
<trace autoflush="true" indentsize="4">
<listeners>
<remove name="Default" />
<add name="ScottsConsoleListener" type="System.Diagnostics.ConsoleTraceListener" />
<add name="ScottsTextListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="C:\Temp\DebugLog.txt" />
</listeners>
</trace>
</system.diagnostics>
</configuration>

另请注意,我的服务定义需要 SessionMode(见下文)。如果我去掉 SessionMode 要求,我就不会得到延迟。

using System;
using System.ServiceModel;
using System.ServiceModel.Description;

namespace Microsoft.ServiceModel.Samples
{
// Define a service contract.
[ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples", SessionMode = SessionMode.Required)]
public interface ICalculator
{
[OperationContract]
double Add(double n1, double n2);

[OperationContract]
double Subtract(double n1, double n2);

[OperationContract]
double Multiply(double n1, double n2);

[OperationContract]
double Divide(double n1, double n2);

[OperationContract]
string PrintName(string firstName, string lastName);

[OperationContract]
Point MakePoint(double x, double y);

}
}

最佳答案

好吧,我怀疑您使用的绑定(bind) (WsHttpBinding) 默认使用 Windows 凭据验证其调用者,除非您明确告诉它不要这样做。

在您的服务托管代码中,您只是实例化一个默认的 WsHttpBinding 实例 - 在这种情况下,配置或代码中没有设置来更改默认的安全行为。

仅用于测试目的:尝试将您的服务托管代码更改为:

 // Add a service endpoint
serviceHost.AddServiceEndpoint(
typeof(ICalculator),
new WSHttpBinding(SecurityMode.None), // pass in SecurityMode.None
"CalculatorService");

这将有效地取消所有安全设置,例如ServiceHost 甚至不应再尝试查找 Windows 域来对调用者进行身份验证。

这会改变您的任何观察结果吗?

关于WCF 缓慢的 ServiceHost.Open() 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4739546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com