Hey I have this configuration in my web.config
Also after some hours, I figured out why it wasn't working for me...
i had:
public static class Program
{
private static CommunicationManager _bcScanner = new CommunicationManager();
private static ILog _log = LogManager.GetLogger(typeof(Program));
private static SocketServer socketListener;
but it should be:
public static class Program
{
private static ILog _log = LogManager.GetLogger(typeof(Program));
private static CommunicationManager _bcScanner = new CommunicationManager();
private static SocketServer socketListener;
So make sure the ILog is on the first line....