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

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...