Thursday, August 29, 2013

Docusign Request and Response SOAP Trace

  1. Add the content below to your web.config file.
  2. Create a folder called C:\logs
  3. Start your project
  4. Run your project until you get the error. Look for the messages.svclog file in C:\logs
  5. Send that file to your Account Mgr.
<system.diagnostics>
  <sources>
      <source name="System.ServiceModel.MessageLogging">
        <listeners>
                 <add name="messages"
                 type="System.Diagnostics.XmlWriterTraceListener"
                 initializeData="c:\logs\messages.svclog" />
          </listeners>
      </source>
    </sources>
</system.diagnostics>

<system.serviceModel>
  <diagnostics>
    <messageLogging 
      logEntireMessage="true"
      logMalformedMessages="true" 
      logMessagesAtServiceLevel="true"
      logMessagesAtTransportLevel="true"
      maxMessagesToLog="50"
      maxSizeOfMessageToLog="50000000" />
  </diagnostics>
</system.serviceModel>

No comments:

Post a Comment

How to Create Events Using Microsoft Graph API with Delegated Permissions and MSAL.js

Microsoft Graph API provides powerful capabilities to interact with Microsoft 365 services. In this guide, we’ll explore how to create calen...