zoukankan      html  css  js  c++  java
  • WCF异常跟踪调试

    以前服务器端有异常,老是提示

    The server was unable to process the request due to an internal error. For more information about the error,
    either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or 
    from the <serviceDebug> configuration behavior) on the server in order to send the exception information 
    back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and 
    inspect the server trace logs.

    这个等于没有说,一方面这是为了安全,但是在开发阶段,这个就太痛苦了。

    如下的文件

      <behavior name="calculatorServiceBehavior">
                      <serviceDebug includeExceptionDetailInFaults="true" />
              </behavior>

    添加serviceDebug ,可以使异常抛到客户端来,直接查看就可以了。

    服务器端有个异常折腾了我一天,原来是文件找不到,要是能看到这个技巧,几分种就搞定了。

    另外,还有一个技巧,直接用Attach To Process 附加进程的办法,把服务器进程加进来,也可以调试,不知道怎么的,今天的自己真是太聪明了,这个办法也能想到。

    大部分工作的时候,精力集中,大脑缺氧,反应迟钝,看来还是要好好休息才行。

    工作累了就要好好休息,把工作时间缩短,提高效率。但是,老板在你身边,你还是要老实的干活,没法缩短工作时间。要是在家里,估计8个小时的活,4个小时可以搞定,

  • 相关阅读:
    说说Java中的代理模式
    一个奇怪的异常
    JDBC第二次学习
    浅谈事务
    JDBC第一次学习
    Firebug & Chrome Console 控制台使用指南
    js 事件创建发布
    vue ui之 iview 事件拦截
    fetch获取json的正确姿势
    js对象通过属性路径获取属性值
  • 原文地址:https://www.cnblogs.com/JamesLi2015/p/1658745.html
Copyright © 2011-2022 走看看