当前位置:  开发笔记 > 编程语言 > 正文

WCF跟踪代码

如何解决《WCF跟踪代码》经验,为你挑选了1个好方法。

我的所有连接都是从我的代码中设置的,而不是使用我的配置文件.如何在从代码构建的连接上设置WCF跟踪.我尝试添加跟踪到配置文件,如解释在这里,但是无论如何不会产生日志.

我需要知道如何使用配置文件使其工作在代码中设置的连接,或者如果有人有任何信息,如何在代码中手动配置它.谢谢!

编辑:添加更多信息:

该应用程序是一个C#Console应用程序,我的绑定声明为:

private Binding getBinding()
{
    NetTcpBinding tcp = new NetTcpBinding();
    tcp.ReaderQuotas.MaxArrayLength = 65535;
    tcp.TransferMode = TransferMode.Streamed;
    tcp.ReaderQuotas.MaxArrayLength = int.MaxValue;
    tcp.ReaderQuotas.MaxDepth = int.MaxValue;
    tcp.ReaderQuotas.MaxStringContentLength = int.MaxValue;
    tcp.ReaderQuotas.MaxBytesPerRead = int.MaxValue;
    tcp.ReaderQuotas.MaxNameTableCharCount = int.MaxValue;
    tcp.MaxReceivedMessageSize = int.MaxValue;
    return tcp;
}

然后我使用通用函数向我的应用添加服务:

private List m_Hosts = new List();
private static List m_Services = new List();

public void AddHost(string uri)
    where T1 : class
    where T2 : class
{
    m_Services.Add("net.tcp://:/" + uri);
    m_Hosts.Add(new ServiceHost(typeof(T1)));
    m_Hosts[m_Hosts.Count - 1].AddServiceEndpoint(typeof(T2), getBinding(), m_Services[m_Services.Count - 1]);
}

显然有一些代码可以使这一切工作,但这应该给出任何相关的部分.



1> Daniel Vassa..:

以下是.config启用跟踪的示例,如果您想再次尝试.确保该.config文件位于WCF服务主机的同一文件夹中.


  
    
      
        
          
        
      

      
        
          
        
      
    

    
      
    

  

Microsoft提供了一个服务跟踪查看器工具来读取.svclog文件.

确保保存.svclog的路径具有必要的写入权限.

推荐阅读
依然-狠幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有