You are debugging a Web service application that uses Web Services Enhancements (WSE) 3.0.
When you attempt to view tracing information for the Web service requests, you discover that the log file is not being updated as expected.
You need to ensure that the log file is updated.
What should you do?
A.
Add the following XML to the configuration section of the Web.config file.
<microsoft.web.services3>
<diagnostics>
<trace enabled=”true” input=”InputTrace.webinfo” />
</diagnostics>
</microsoft.web.services3>
B.
Add the following XML to the configuration section of the Web.config file.
<system.diagnostics>
<switches>
<add name=”WseTracing” value=”InputTrace.webinfo”/>
</switches>
</system.diagnostics>
C.
Add the following XML to the system.web section of the Web.config file.
<trace enabled=”true” configSource=”InputTrace.webinfo” writeToDiagnosticsTrace=”true”/>
D.
Add the following XML to the configuration section of the Web.config file.
<microsoft.web.services3>
<trace enabled=”true” input=”InputTrace.webinfo” />
</microsoft.web.services3>