Cannot get NLogViewer to receive msgs from local machine
        Posted  
        
            by slolife
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by slolife
        
        
        
        Published on 2010-04-13T19:27:22Z
        Indexed on 
            2010/04/13
            19:33 UTC
        
        
        Read the original article
        Hit count: 727
        
I cannot get NLogViewer to receive msgs from local machine.
My machine is Windows 7.
I am able to get a remote machine to send NLog messages to my local box and NLogViewer on my local box shows the message fine.
But, if I run an app locally, and config NLog to spit messages to my local box, NLogViewer doesn't get the messages.
Here's my config:
<targets>
  <target name="viewer" xsi:type="NLogViewer" address="udp://localhost:4050"/>
</targets>
<rules>
 <logger name="*" minlevel="Info" writeTo="viewer" />
<rules>
Is it Windows 7 security? I have config'd Windows Firewall to allow UDP port 4050 inbound and outbound.
My apps are an ASP.NET site and a few windows services.
© Stack Overflow or respective owner