我使用 Windows 服务托管来托管我的 WCF 服务......现在当我调用我的服务时,我无法调试它!我可以调试我的服务吗?
问问题
3684 次
4 回答
7
此外,请考虑在开发期间不要将其托管在 Windows SERVICE 中。每当我有服务时,我都有一个替代代码路径来将其作为命令行程序启动(如果可能使用 /interactive 命令行参数等),因此我不必处理服务调试的细节(需要停止更换组件等)。
我只转向“服务”进行部署等。调试总是在非服务模式下完成。
于 2012-04-04T10:56:14.633 回答
3
- 在管理模式下运行 VS
- 从调试菜单中选择附加到进程...
- 选择您的服务流程
- 在您的服务中设置断点
于 2012-04-04T10:54:37.363 回答
0
Debugger.Launch()一直为我工作。
于 2012-04-04T11:16:46.533 回答
0
我在这里找到了一个演练。它建议向服务添加两个方法 OnDebugMode_Start 和 OnDebugMode_Stop(实际上暴露了 OnStart 和 OnStop 受保护的方法),因此 Service1 类将如下所示:
public partial class Service1 : ServiceBase
{
ServiceHost _host;
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
Type serviceType = typeof(MyWcfService.Service1);
_host = new ServiceHost(serviceType);
_host.Open();
}
protected override void OnStop()
{
_host.Close();
}
public void OnDebugMode_Start()
{
OnStart(null);
}
public void OnDebugMode_Stop()
{
OnStop();
}
}
并在这样的程序中启动它:
static void Main()
{
try
{
#if DEBUG
// Run as interactive exe in debug mode to allow easy debugging.
var service = new Service1();
service.OnDebugMode_Start();
// Sleep the main thread indefinitely while the service code runs in OnStart()
System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
service.OnDebugMode_Stop();
#else
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service1()
};
ServiceBase.Run(ServicesToRun);
#endif
}
catch (Exception ex)
{
throw ex;
}
}
在 app.config 中配置服务:
<configuration>
<system.serviceModel>
<services>
<service name="MyWcfService.Service1">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration=""
contract="MyWcfService.IService1">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" bindingConfiguration=""
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8732/Design_Time_Addresses/MyWcfService/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="True" policyVersion="Policy15"/>
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>
你都准备好了。
于 2015-04-27T11:26:24.090 回答