How to find source IP address in WCF trace file using (Microsoft Service Trace Viewer)?

I have a WCF web service with tracing enabled (following these guidelines http://msdn.microsoft.com/en-us/library/aa702726.aspx ).
The problem is that I cannot find the IP source address (incoming client request) anywhere in the trace file.
Also, the documentation on this topic is rather vague, so if you can provide any links to some useful resources, I would be grateful.

+3
source share
1 answer

The logging protocol IP address is probably not enabled by default as it is a privacy issue .

This link talks about some logging switches that let you track things like the client’s IP address and when they are logged. I have not set these flags before, so I can’t tell you if this will work. But go ahead.

+3
source

Source: https://habr.com/ru/post/1725036/


All Articles