CreateStatement() doesn't detect conn reset by peer

Hi to all. Well... it's almost explained in the subject. I am trying to recycle bad connections in a connection pool, so I use createStaement() in order to detect if the connection is valid (I previously tried with isClosed(), but it catches even less bad connections). The problem is that eventually the createStatement() doesn't fail while testing, although the connection is closed, so wen I try to use it... boom. This occurs (sometimes, not always) after the database is shut down and restarted by night for maintainance purposes. But notice that when the db is shutting down, or restarting, then I receive the corresponding SQLException, but it seems that when it is working again, createStatement() is ok (I check it every 60 seconds), but some condition may have occur that makes the connection JUST OPENED by the pool to be bad. The error I receive when using the conn is Connection reset by peer. I guess that the error is related to communications, but can't identify it, because it seems to be random.
Anybody can help me?
Thanks in advance
PS: I know there are other topics in the forum related to Connection reset by peer error, but I have not found my problem.

A blast-from-the-past thread...
I have my own connection pool implementation; I don't know how easy this is to add on to an existing pool. (Which is a big reason why I have my own pool code.) You'll need some way to get each connection from the pool in turn; a basic pool may not support that. You'll need to be suitably careful to synchronize so that you don't ping the connection while another thread is using the same connection.
I have a background thread ("PoolManager") which does in pseudocode:
    while (true) {
        sleep 10 minutes;
        foreach pool {
            log pool statistics, e.g. pool size, number of open connections, number of fetched connections;
            foreach connection in the pool {
                synchronize (connection) {
                    log connection's last use time, how many times used, etc;
                    if (connection not currently in use) {
                        if (auto-close old connections configured &&
                            now > last use time + 20 minutes) {
                             close connection;
                             continue;
                        if (now > last use time + 10 minutes)
                            // To make auto-close work, this  execute doesn't update the last use time.
                            // Exceptions during this close the connection.
                            execute "select 42 from dual" on the connection;
   }"long last_use_time" is stored for each connection, and set to currentTimeMillis() when the connection is fetched from the pool. The "10 minutes" etc times are configurable, and the dummy ping statement is per-pool configurable.

Similar Messages

  • Supress Conn Reset by Peer in Logs

    Hi Guys
    Coldfusion 6.1MX updater 1
    Does anyone know if it is possible to suppress the
    "Connection reset by peer: socket write error" messages in the
    logs?
    I'd like to keep the JDBC/SQL messages but the http ones are
    driving me nuts as it fills the logs up quite quickly.
    Thanks

    Hi,
    this could be temporary problem  due to congestion in network (or)
    when the log data from one of the instance is sent to central log monitor system, the central system is busy to accept the communication.
    check the SAP Note 1098447 and execute command specified to find if any of rslg ports are busy.
    regards
    raju

  • Finger doesn't detect. Don't say reset it. That doesnt work.

    Finger doesn't detect. Don't say reset it. That doesnt work.

    - Reset the iOS device. Nothing will be lost       
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Connection reset by peer, broken pipe...

    This part of sockets is just needlessly confusing. Perhaps someone can shed some light on this?
    Sometimes I get an IOException with as message "Connection reset by peer". Other times, it's "broken pipe". What is the difference? Why isn't there a way other than parsing the exception message text to figure out if it's a client 'hanging up on you' unexpectedly or something else?
    Secondly, in my NIO server, all webbrowsers, but for some reason firefox especially, really likes to make a full request, than grab 0 to 99 bytes (the full return HTTP message size is much larger than that), and then silently hang up and immediately re-request the same resource again. Sometimes 10 to 15 times in a row. Firefox shows no errors of any kind when it does this. the read() operation on the socket returns -1 which is what ends up causing the close.
    Is this because '-1' doesn't really mean: The socket is closed, it actually just means: the socket INPUT is closed but you can still send?
    And if it is the latter, how the heck do I detect a connection in lockdown state in a non-blocking environment?

    Sometimes I get an IOException with as message
    "Connection reset by peer". Other times, it's "broken
    pipe". What is the difference? Why isn't there a way
    other than parsing the exception message text to
    figure out if it's a client 'hanging up on you'
    unexpectedly or something else?I agree: I would love there to be a ConnectionResetException. Anyway, practically any IOException on a socket operation means you should close it (and forget about it if you're a server).
    Secondly, in my NIO server, all webbrowsers, but for
    some reason firefox especially, really likes to make
    a full request, than grab 0 to 99 bytes (the full
    return HTTP message size is much larger than that),
    and then silently hang up and immediately re-request
    the same resource again.Maybe it is doing a HEAD request?
    Is this because '-1' doesn't really mean: The socket
    is closed, it actually just means: the socket INPUT
    is closed but you can still send?It actually means a one-way close originating from the other end, which could be the result of either a close or a shutdownOutput() by the peer. If it was a shutdownOutput() you can indeed still send.
    And if it is the latter, how the heck do I detect a
    connection in lockdown state in a non-blocking
    environment?What do you mean by 'lockdown state'? If you mean how do you detect when the peer finally closes after a shutdown, the answer is that you eventually get a connection reset when writing, which is where we came in. If you have a socket channel which has detected EOS as above and you don't have any more data to send to it, close it.

  • My MacBook Pro 13.3inch (Late 2011) doesn't detect earphones.

    My MacBook Pro 13.3inch (Late 2011) doesn't detect earphones being plugged in after I installed Mountain Lion. If I reboot, it works but after a few unpluggings and more plugins, it doesn't detect them anymore until I reboot. Help please.

    This may or may not fix your problem.
    Try a NVRAM reset.
    Try a SMC reset.
    If neither work, you're just going to have to take your unit into your local Apple Store or AASP and see if you've a hardware issue.
    Good luck,
    Clinton

  • JCO - Connection reset by peer - after 5 minute timeout

    Hello
    We're using SUP with the JCO Connector. This has been working flawlessly since project inception. Now, after switching to a new data center (Windows Server 2008 Server Enterprise Edition, SP2 on VMWare) we're observing a mysterious behavior with timeouts of idle connections. I hope someone in this forum knows what this might be.
    JCO connections originate from SUP servers. When such connections are idle for more than 5 minutes they get disconnected from SAP -- this is in agreement with SAP timeout parameter of 300 seconds.
    On our new systems we noticed that requests sent 5min+ (after timeout) show following error:
    Thread-8 [22:08:55:343]: [JNI-LAYER] RFC.nativeExecute() before RfcCallReceive(2,"Z_U_ONEMOBILE_SWO_SEARCH",0000000010CDC850,0000000000000000,0000000010C81530,000000000C79CA88)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeExecute() after  RfcCallReceive(2,"Z_U_ONEMOBILE_SWO_SEARCH",0000000010CDC850,0000000000000000,0000000010C81530,000000000C79CA88) = RFC_SYS_EXCEPTION
    Thread-8 [22:08:55:344]: [JAV-LAYER] JCO.Client.execute (Z_U_ONEMOBILE_SWO_SEARCH) threw a NON-ABAP exception: com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: CPIC-CALL: 'CMRCV : rc=20
    ERROR       connection to partner '---removed!---:3299'
                broken
    TIME        Fri Feb 11 18:08:55 201
    RELEASE     710
    COMPONENT   NI (network interface)
    VERSION     39
    RC          -6
    MODULE      nixxi.cpp
    LINE        4448
    DETAIL      NiIWrite: P=161.88.23.170:3299; L=0.0.0.0:49730
    SYSTEM CALL WSASend
    ERRNO       10054
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer
    COUNTER     3
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect()                                       enter, [SUCCESS]
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect() before RfcClose(2)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect() after  RfcClose(2)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect()                   with rc = RFC_OK   leave, [SUCCESS]
    Our suspicion is that the JCO client doesn't notice the fact that it gets disconnected. We used Network Monitor 3.4 to look at network traffic. Indeed, after 5 minutes the client gets a single frame (with reset flag) and no acknowledgement goes back.
    What could this be?
    We use
    JCO 2.1.8 AMD 64-bit (contains librfc 6.40) and
    JCO 2.1.9 AMD 64-bit (contains librfc 6.40) but replaced this with librfc 7.10 (after seeing Note 825494). Behavior was exactly the same. We did confirm in jco/rfc trace that those versions were actually used.
    Any ideas?
    Thanks and regards
    Edited by: B. Gottipati on Feb 14, 2011 9:17 PM

    Hello
    We're using SUP with the JCO Connector. This has been working flawlessly since project inception. Now, after switching to a new data center (Windows Server 2008 Server Enterprise Edition, SP2 on VMWare) we're observing a mysterious behavior with timeouts of idle connections. I hope someone in this forum knows what this might be.
    JCO connections originate from SUP servers. When such connections are idle for more than 5 minutes they get disconnected from SAP -- this is in agreement with SAP timeout parameter of 300 seconds.
    On our new systems we noticed that requests sent 5min+ (after timeout) show following error:
    Thread-8 [22:08:55:343]: [JNI-LAYER] RFC.nativeExecute() before RfcCallReceive(2,"Z_U_ONEMOBILE_SWO_SEARCH",0000000010CDC850,0000000000000000,0000000010C81530,000000000C79CA88)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeExecute() after  RfcCallReceive(2,"Z_U_ONEMOBILE_SWO_SEARCH",0000000010CDC850,0000000000000000,0000000010C81530,000000000C79CA88) = RFC_SYS_EXCEPTION
    Thread-8 [22:08:55:344]: [JAV-LAYER] JCO.Client.execute (Z_U_ONEMOBILE_SWO_SEARCH) threw a NON-ABAP exception: com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: CPIC-CALL: 'CMRCV : rc=20
    ERROR       connection to partner '---removed!---:3299'
                broken
    TIME        Fri Feb 11 18:08:55 201
    RELEASE     710
    COMPONENT   NI (network interface)
    VERSION     39
    RC          -6
    MODULE      nixxi.cpp
    LINE        4448
    DETAIL      NiIWrite: P=161.88.23.170:3299; L=0.0.0.0:49730
    SYSTEM CALL WSASend
    ERRNO       10054
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer
    COUNTER     3
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect()                                       enter, [SUCCESS]
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect() before RfcClose(2)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect() after  RfcClose(2)
    Thread-8 [22:08:55:344]: [JNI-LAYER] RFC.nativeDisconnect()                   with rc = RFC_OK   leave, [SUCCESS]
    Our suspicion is that the JCO client doesn't notice the fact that it gets disconnected. We used Network Monitor 3.4 to look at network traffic. Indeed, after 5 minutes the client gets a single frame (with reset flag) and no acknowledgement goes back.
    What could this be?
    We use
    JCO 2.1.8 AMD 64-bit (contains librfc 6.40) and
    JCO 2.1.9 AMD 64-bit (contains librfc 6.40) but replaced this with librfc 7.10 (after seeing Note 825494). Behavior was exactly the same. We did confirm in jco/rfc trace that those versions were actually used.
    Any ideas?
    Thanks and regards
    Edited by: B. Gottipati on Feb 14, 2011 9:17 PM

  • IMac Doesn't Detect Headphones

    I have a ~year old 24" iMac (2.8 GHz Core 2 Duo) that I just suddenly started having a problem with. I use headphones pretty regularly and they are almost always plugged into the headphone jack. Recently, I lent my headphones to someone and, when I plugged them back in, the machine doesn't detect them. The audio works just fine coming out of the internal speakers, it's just that it always comes out of the internal speakers, no matter if the headphones are plugged in or not (the headphones also work fine when plugged in somewhere else). I took a look at the Sound Preferences panel and, sure enough, it doesn't detect the headphones as plugged in. Does anyone have any suggestions on troubleshooting?
    I'm not sure it matters, but I did just recently upgraded to 10.5.6. The headphones worked after the upgrade, but it may be that this is the first time they were replugged in after the upgrade.

    It sounds like the head phone jack has been damaged. If they were connected to a port they weren't meant for, that can happen. And that in turn, can damage your audio output port.
    Try disconnecting everything but the keyboard and mouse and reboot the iMac. See if that makes a difference.
    Resetting the SMC only provides this kind of support:
    -Telling the computer when to turn on, turn off, sleep, wake, idle, and so forth.
    -Handling system resets from various commands.
    -Controlling the fans. so I doubt it can fix the audio issue.
    Check the headphone port really close, make sure there isn't any dust or link or anything that might keep the jack from connecting properly.
    Carolyn

  • Since updating to iOS 8.1 my Bluetooth doesn't detect any devices

    Since updating to iOS 8.1 my Bluetooth doesn't detect any devices

    Good Morning Denise -
    Sorry to hear you are having issues connecting to your Wi-Fi network.  I'll include a few more things that you can try to troubleshoot this below.  The first thing that I'm wondering is if you cannot connect to your Wi-Fi at home -- are you able to connect to a different Wi-Fi network (at work, a local coffee shop, etc.)?  That would be one of the first things to try.
    Turning the modem and router in your house of and then on is also a common step as it "reinitializes" everything.  Hopefully, one of the steps below will help you with this.
    If your iPhone, iPad, or iPod touch won’t connect to a Wi-Fi network - Apple Support
    http://support.apple.com/en-us/HT204051
    Restart.
    For more help, try restarting your device, router, or cable/DSL modem. After each step, check to see if you fixed the issue.
      • Restart your iOS device.
      • Unplug your router and plug it back in.
      • Unplug your cable or DSL modem and plug it back in.
    Still can’t connect?
    Reset your Network Settings. Tap Settings > General > Reset > Reset Network Settings. This also resets Wi-Fi networks and passwords, cellular settings, and VPN and APN settings that you’ve used before.
    Get more help
    Try connecting to a Wi-Fi network in a different location. If your device can connect, you’ll need to get help with your Wi-Fi network. If it can’t connect to any Wi-Fi networks, contact Apple.
    iOS and OS X: Recommended settings for Wi-Fi routers and access points - Apple Support
    http://support.apple.com/en-us/HT202068
    All the best,
    - Judy

  • My iMac 20"/Intel C2D 2.4 Doesn't Detect my Sanyo Xacti FH1A.

    My iMac 20"/Intel C2D 2.4 Doesn't Detect my *_+Sanyo Xacti FH1A+_* (1920x1080 60p/60i/MPEG-4 AVC/H.264) Camcorder.
    I followed exactly my Xacti manual, but nothing happens.
    From Mini USB (Xacti Camcoder) to USB (iMac)...nothing!
    After connecting the USB, In my Camcoder's screen, it says, *"Hard disk is not Connected."* & *"Disconnect USB converter cable if not using XACTI Library."*
    Is this an Apple issue or a Sanyo issue?
    Thanks!
    Frank S.
    SHOCKPROOFX.COM™ ESA
    Message was edited by: SHOCKPROOF

    Hi, first thing I would do is try connecting the Sanyo to another Mac.
    On your Mac try going the SMC route:- http://macosx.com/forums/howto-faqs/302002-reset-system-management-controller-sm c.html
    Try another connecting cable - Look on the FAQ (Sanyo Site)->http://sanyo.com/xacti/english/products/vpc_fh1a/index.html..........L
    Message was edited by: elmac

  • My computer doesn't detect my Vision M 30

    It started with my player working however the screen was scrambled. I couldn't read anything. So I did the clean-up, format and reset the firmware but now my Vision M turns on and says there is a firmware problem and it says to reload the firmware. The screen is also still scrambled. So I hook it up to my computer but it doesn't detect it. Where is this firmware and How do I get the firmware on my player when my computer doesn't detect it's? I'm lost and don't want to send it in, if I don't have to. Please help!

    When you "reset" the firmware, you actually erased it. You can download the firmware from the Creative downloads page. You should check Windows Device Manager to confirm that it is connected, as the Creative programs, like MediaSource won't detect the player if it hasn't booted to an operational mode. As for the screen, something has probably gone bad in either the screen or the main logic board sending the image to the screen, but of course that also brings up the question as to how you were able to read the "Firmware Problem" message.

  • Remote Desktop on Mac connecting to 2008 R2 Server produces "Connection Reset by Peer" error when idle 20 mins

    Mac Clients are running 10.9.2 Mavericks. 
    Client is Microsoft Remote Desktop 8.05.
    Clients are mixed in how they connect to the Windows 2008 R2 server, some
    are on Wifi some are on Wired Ethernet.
    If you connect to the Server through the RD Client, and get on you work 
    and if you then say go idle  ( still connected but not doing anything such as 
    printing from the Server or in an Application on the Server) then after 20 mins it
    (the client) throws up a "Connection reset by Peer" error.
    You click OK, and then it breaks connection. You can however reconnect without issue.
    We have currently about six users who are using the RD Connection to access QuickBooks on
    this 2008 R2 server. Four are on Macs and get the errors. Two are on PCs and do not get the errors.
    Here is the log file from one of the Macs that had the error:
    [2014-Apr-07 10:34:07] RDP (0): Server shows cursor
    [2014-Apr-07 10:34:09] RDP (0): Server hides cursor
    [2014-Apr-07 10:34:21] RDP (0): Server shows cursor
    [2014-Apr-07 10:34:22] RDP (0): Server hides cursor
    [2014-Apr-07 10:34:25] RDP (0): Server shows cursor
    [2014-Apr-07 11:00:29] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 11:00:29] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 11:00:29] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 11:02:35] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 11:02:35] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 11:02:35] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 11:02:35] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 11:02:35] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 11:02:35] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 11:02:35] RDP (0): client version: 8.0.24428
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 11:02:35] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 11:02:35] RDP (0): Server supports RAIL
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 11:02:35] RDP (0): Server supports RAIL
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 12:16:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 12:16:31] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 12:16:31] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 12:21:42] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 12:21:42] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 12:21:42] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 12:21:42] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 12:21:42] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 12:21:42] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 12:21:42] RDP (0): client version: 8.0.24428
    [2014-Apr-07 12:21:42] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 12:21:42] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 12:21:42] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 12:21:43] RDP (0): Server supports RAIL
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 12:21:43] RDP (0): Server supports RAIL
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 15:30:19] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 15:30:19] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 15:30:19] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 15:30:22] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 15:30:22] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 15:30:22] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 15:30:22] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 15:30:22] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 15:30:22] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 15:30:22] RDP (0): client version: 8.0.24428
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 15:30:22] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 15:30:22] RDP (0): Server supports RAIL
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 15:30:23] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 15:30:23] RDP (0): Server supports RAIL
    [2014-Apr-07 15:30:23] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:24] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 16:52:24] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 16:52:24] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 16:52:27] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 16:52:27] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 16:52:27] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 16:52:27] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-07 16:52:27] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 16:52:27] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 16:52:27] RDP (0): client version: 8.0.24428
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 16:52:27] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:28] RDP (0): Server supports RAIL
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:28] RDP (0): Server supports RAIL
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:40] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:40] RDP (0): Disconnect initiated by server
    [2014-Apr-07 16:52:45] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 16:52:45] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 16:52:45] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 16:58:19] RDP (0): *** Application terminated ***
    [2014-Apr-08 10:00:23] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 10:00:23] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:00:23] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:00:23] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 10:00:23] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 10:00:23] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 10:00:23] RDP (0): client version: 8.0.24428
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 10:00:23] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:00:23] RDP (0): Server supports RAIL
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 10:00:38] RDP (0): Server hides cursor
    [2014-Apr-08 10:00:40] RDP (0): Server shows cursor
    [2014-Apr-08 10:08:35] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 10:08:35] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 10:08:35] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 10:08:39] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 10:08:39] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:08:39] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:08:39] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-08 10:08:39] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 10:08:39] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 10:08:39] RDP (0): client version: 8.0.24428
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 10:08:39] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:08:39] RDP (0): Server supports RAIL
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 10:08:40] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:08:40] RDP (0): Server supports RAIL
    [2014-Apr-08 10:08:40] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:02:36] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 11:02:36] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 11:02:36] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 11:04:38] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.25
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 11:04:38] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:04:38] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:04:38] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 11:04:38] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 11:04:38] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 11:04:38] RDP (0): client version: 8.0.24428
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 11:04:38] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:04:38] RDP (0): Server supports RAIL
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:04:39] RDP (0): Server supports RAIL
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:04:49] RDP (0): Server hides cursor
    [2014-Apr-08 11:04:50] RDP (0): Server shows cursor
    [2014-Apr-08 11:04:51] RDP (0): Server hides cursor
    [2014-Apr-08 11:04:55] RDP (0): Server shows cursor
    [2014-Apr-08 11:05:09] RDP (0): Server hides cursor
    [2014-Apr-08 11:05:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:33] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:44] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:49] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:50] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:02] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:06] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:14] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:26] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:32] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:38] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:38] RDP (0): Server shows cursor
    [2014-Apr-08 11:17:05] RDP (0): Server hides cursor
    [2014-Apr-08 11:17:08] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:53] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:58] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:58] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:58] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:58] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:05] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:06] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:15] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:15] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:15] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:15] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:17] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:17] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:22] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:22] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:23] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:25] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:25] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:25] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:25] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:26] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:31] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:31] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:32] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:29:50] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 11:29:50] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 11:29:50] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 11:30:04] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 11:30:04] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:30:04] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:30:04] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 11:30:04] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 11:30:04] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 11:30:04] RDP (0): client version: 8.0.24428
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 11:30:04] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:30:04] RDP (0): Server supports RAIL
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:30:05] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:30:05] RDP (0): Server supports RAIL
    [2014-Apr-08 11:30:05] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:30:11] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:11] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:11] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:11] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:30] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:31] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:31] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:31] RDP (0): Server shows cursor
    [2014-Apr-08 14:45:21] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 14:45:21] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 14:45:21] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 15:11:03] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 15:11:03] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 15:11:03] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 15:11:03] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 15:11:03] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 15:11:03] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 15:11:03] RDP (0): client version: 8.0.24428
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 15:11:03] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:11:03] RDP (0): Server supports RAIL
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 15:11:04] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:11:04] RDP (0): Server supports RAIL
    [2014-Apr-08 15:11:04] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 15:22:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:22:36] RDP (0): Disconnect initiated by server
    [2014-Apr-08 15:22:41] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 15:22:41] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 15:22:41] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 16:29:11] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 16:29:11] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 16:29:11] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 16:29:11] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-08 16:29:11] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 16:29:11] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 16:29:11] RDP (0): client version: 8.0.24428
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 16:29:11] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 16:29:12] RDP (0): Server supports RAIL
    [2014-Apr-08 16:29:12] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 16:29:51] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 16:29:51] RDP (0): Disconnect initiated by server
    [2014-Apr-08 16:29:56] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 16:29:56] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 16:29:56] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 16:37:07] RDP (0): *** Application terminated ***
    [2014-Apr-09 09:24:29] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 09:24:29] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 09:24:29] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 09:24:29] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-09 09:24:29] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 09:24:29] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 09:24:29] RDP (0): client version: 8.0.24428
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 09:24:29] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 09:24:29] RDP (0): Server supports RAIL
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 09:24:45] RDP (0): Server hides cursor
    [2014-Apr-09 09:24:46] RDP (0): Server shows cursor
    [2014-Apr-09 09:24:46] RDP (0): Server hides cursor
    [2014-Apr-09 09:24:49] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:08] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:10] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:15] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:27] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:30] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:31] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:33] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:34] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:38] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:48] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:50] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:41] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:41] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:53] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:53] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:53] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:53] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:58] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:58] RDP (0): Server shows cursor
    [2014-Apr-09 09:27:20] RDP (0): Server hides cursor
    [2014-Apr-09 09:27:22] RDP (0): Server shows cursor
    [2014-Apr-09 09:27:23] RDP (0): Server hides cursor
    [2014-Apr-09 09:27:23] RDP (0): Server shows cursor
    [2014-Apr-09 10:10:53] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:10:53] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 10:10:53] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 10:10:56] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:10:56] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:10:56] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:10:56] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:10:56] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:10:56] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:10:56] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:10:56] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:10:56] RDP (0): Server supports RAIL
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:10:56] RDP (0): Server supports RAIL
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:12:00] RDP (0): Server hides cursor
    [2014-Apr-09 10:12:01] RDP (0): Server shows cursor
    [2014-Apr-09 10:16:50] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:16:50] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 10:16:50] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 10:22:22] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:22:22] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:22:22] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en1 af=30 (AF_INET6) addr=fe80::ee35:86ff:fe3b:e3d8%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:22:22] RDP (0): en1 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:22:22] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:22:22] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:22:22] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:22:22] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:22:22] RDP (0): Server supports RAIL
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:22:22] RDP (0): Server supports RAIL
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:26:40] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Apr-09 10:26:40] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:26:40] RDP (0): *** Application terminated ***
    [2014-Apr-09 10:27:28] RDP (0): *** Application terminated ***
    [2014-Apr-09 10:28:36] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:28:36] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:28:36] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:28:36] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:28:36] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:28:36] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:28:36] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:28:36] RDP (0): Resolved '192.168.16.25' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:28:36] RDP (0): Server supports RAIL
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:28:36] RDP (0): Server supports RAIL
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:11] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 11:33:11] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 11:33:11] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 11:33:18] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 11:33:18] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 11:33:18] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 11:33:18] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-09 11:33:18] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 11:33:18] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 11:33:18] RDP (0): client version: 8.0.24428
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 11:33:18] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 11:33:19] RDP (0): Server supports RAIL
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 11:33:19] RDP (0): Server supports RAIL
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:34] RDP (0): Server hides cursor
    [2014-Apr-09 11:33:38] RDP (0): Server shows cursor
    Any help would be appreciated.

    Hi,
    A connection was forcibly closed by a peer. This normally results from a loss of the connection on the remote socket due to a timeout or a restart. On a datastream socket, the
    connection was reset. This reset could be generated locally by the network system when it detects a connection failure, or it might be received from the remote host (in TCP terms, the remote host sent an RST packet). This error is also possible on a datagram
    socket; for instance, this error could result if your application sends a UDP datagram to a host, which rejects it by responding with an ICMP Port Unreachable.
    Please check the following:
    1. Ping the remote host you were connected to. If it does respond, this problem might have been a transient one (so you can reconnect now), or the server application you were
    connected to might have terminated (so you might not be able to connect again).
    2. Type tracert at the command prompt to determine the path to the host you were connected to. This won't reveal too much unless you know the router addresses at the remote end,
    but it might help to identify if the problem is somewhere along the way.
    3. Check if there is any related error log in the server side.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Hi, my computer is not detecting any display, i'd been having this problem since i connected my computer to a tv, the tv burned up, and after that my port doesn't detect anything at all?? Was that the problem can I fix it.I have the lion 10.7.5.

    Hi, my computer is not detecting any display, i'd been having this problem since i connected my computer to a tv, the tv burned up, and after that my port doesn't detect anything at all?? Was that the problem can I fix it.I have the lion 10.7.5. Dont know if I changed settings or something.

    Hello,
    It isn't the fw in Network you want o use or look at, that's for something completely different.
    My first suspect is the Power Adapter on the LaCie has gone.
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware>Firewire, what is listed there?
    Reset the Firewire bus
    If your Firewire or USB isn't recognizing any device.  A solution which has worked for some whose hard drive became invisible in 10.4 was simply to follow these four steps to reset the Firewire/USB bus:
    1. Shut the machine down.
    2. UNPLUG the power lead to the computer and any firewire/USB drive or devices.
    3. leave it for 10 minutes.
    4. Connect back up and reboot.
    http://www.macmaps.com/firewirebug2.html

  • HT1941 trying to connect time  apsule to macbook air with the ethernet cable in the WAN port the airport utility doesn't detect it

    trying to connect time  capsule to macbook air with the ethernet cable in the WAN port but the airport utility doesn't detect it but when i put it in the LAN one it does but it doesn't let me configure
    any ideas?

    Isn't it fun trying to do things without an ethernet cable direct to the computer.. Apple sell a usb to ethernet adapter cable fairly cheap.. makes life a lot easier having something to do hard connections.. or as hard as usb can manage.
    Since you have to access the TC by wireless .. press and hold the reset button on the TC for about 10sec until front led flashes rapidly.. don't worry about the ethernet cable.. leave it disconnected.
    Now click on the airport symbol and join another network. The TC should revert to its home name.. which will be a combo of Time Capsule and its MAC address. There is no wireless security and you can do the setup.

  • ERROR disp+work.exe WSAECONNRESET: Connection reset by peer

    Hi,
    I've a Netweaver 2004s installed on Windows 2003 Server and SQL Server. The name of the amchine is solution and the domain where it's on is grupotec.local, so when I start it from SAP MMC, the dispatcher appears with yellow colour. When I read the trace, an error appears:
    Wed Apr 16 18:10:18 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4361]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1484
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1460) [nixxi.cpp    4361]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4912)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    ***LOG Q0I=> NiPGetHostByName: hostname 'solution.gruposap.local' not found: gethostbyname (11004: WSANO_DATA: Valid name, no data record of requested type) [ninti.c 320]
    Wed Apr 16 18:10:19 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Wed Apr 16 18:10:20 2008
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Wed Apr 16 18:10:21 2008
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Wed Apr 16 18:10:22 2008
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Wed Apr 16 18:10:23 2008
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    WARNING => DpRqServiceQueue: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    The abap stack works fine, I'm able to logon and work with the system BUT the java stack doesn't work. I've looking for this error in SAP Notes page, SDN portal,... also I've revised:
    -file host, located C:\WINDOWS\system32\drivers\etc contains a line 192.168.100.42     solution.grupotec.local     SAPTRANSHOST and the last line of this file is in blank
       this machine was in domain         'solution.gruposap.local'   and now is in the domain solution.grupotec.local
    In order to solve it, I've chequed:
    -SQL Server 2003 is up and running
    -I've taken out and in the machine from the domain
    -I've turned off the machine in order it refresh the new domain(solution.grupotec.local )
    -Filesystem has enough free space
    -I've updated SAP Kernel
    Please could you help me?
    Thanks and regards

    Hi,
    full computer name:solution.grupotec.local
    domain:grupotec.local
    SID:SOL
    DBSID:SOLUTION
    number SOL instances:
          C:\usr\sap\SOL\DVEBMGS01
          C:\usr\sap\SOL\SCS00
    DEFAULT.PFL:
    j2ee/dbtype                                 mss
    j2ee/dbhost                                 SOLUTION
    j2ee/dbname                                 SOL
    SAPSYSTEMNAME                               SOL
    SAPGLOBALHOST                               SOLUTION
    j2ee/scs/host                               SOLUTION
    j2ee/scs/system                             00
    j2ee/ms/host                                SOLUTION
    j2ee/ms/port                                3900
    rdisp/bufrefmode                            sendoff,exeoff
    rdisp/mshost                                SOLUTION
    rdisp/msserv                                sapmsSOL
    rdisp/msserv_internal                       3901
    login/system_client                         001
    SAPDBHOST                                   SOLUTION
    dbms/type                                   mss
    dbs/mss/server                              SOLUTION
    dbs/mss/dbname                              SOL
    dbs/mss/schema                              sol
    About message server:
    in the file services(C:\WINDOWS\system32\drivers\etc):
    sapmsSOL     3601/tcp     # SAP System Messaging Service Port
    and when I type command netstat:
    C:\Documents and Settings\soladm.SOLUTION>netstat -a
    Active Connections
      Proto  Local Address          Foreign Address        State
      TCP    solution:epmap         solution.grupotec.local:0  LISTENING
      TCP    solution:microsoft-ds  solution.grupotec.local:0  LISTENING
      TCP    solution:1031          solution.grupotec.local:0  LISTENING
      TCP    solution:ms-sql-s      solution.grupotec.local:0  LISTENING
      TCP    solution:sapdp00       solution.grupotec.local:0  LISTENING
    TCP    solution:sapmsSOL      solution.grupotec.local:0  LISTENING
    TCP    solution:3901          solution.grupotec.local:0  LISTENING
    and log for message server, the file C:\usr\sap\SOL\DVEBMGS01\work\dev_ms:
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 3528] Fri Apr 18 12:28:32 2008
    [Thr 3528] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    133
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        144
    [Thr 3528] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 144) [msxxserv.c   1824]
    [Thr 3528] load acl file = C:\usr\sap\SOL\SYS\global\ms_acl_info.DAT
    [Thr 3528] MsGetOwnIpAddr: my host addresses are :
    [Thr 3528]   1 : [192.168.100.42] solution.grupotec.local (HOSTNAME)
    [Thr 3528]   2 : [127.0.0.1] solution.grupotec.local (LOCALHOST)
    [Thr 3528] MsHttpInit: full qualified hostname = solution.grupotec.local
    [Thr 3528] HTTP logging is switch off
    [Thr 3528] set HTTP state to LISTEN
    [Thr 3528] MsHttpOwnDomain: own domain[1] = grupotec.local
    [Thr 3528] ms/icf_info_server : deleted
    [Thr 3528] *** I listen to port sapmsSOL (3601) ***
    [Thr 3528] *** I listen to internal port 3901 (3901) ***
    [Thr 3528] *** HTTP port 8101 state LISTEN ***
    [Thr 3528] CUSTOMER KEY: >M0059840091<
    [Thr 3528] Fri Apr 18 12:28:55 2008
    [Thr 3528] MsHttpReadUrl2: H-1 url = /sap/public/icf_info/logon_groups (403 Forbidden)
    [Thr 3528] MsHttpReadUrl2: H-1 url = /sap/public/icf_info/urlprefix (403 Forbidden)
    Edited by: Raul Aguilar on Apr 18, 2008 1:21 PM

  • Javax.servlet.ServletException: Connection reset by peer....Help needed..

    Initially, when I clicked on my JSPs, everything was fine. I was able to retrieve data successfully from all the JSPs. However, after much clicking through the JSPs. I was not able to access the JSPs and the Internal Servlet Error was shown.
    Below is my Tomcat.log:
    Context log: path="/Aedge" Error in jsp service() : Connection reset by peer: socket write error
    javax.servlet.ServletException: Connection reset by peer: socket write error
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:375)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:163)
         at org.apache.tomcat.servlets.DefaultServlet.doGet(DefaultServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:160)
         at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
         at java.lang.Thread.run(Unknown Source)
    Context log: path="/Aedge" <b>Internal Servlet Error:</b><br>.....
    What is the problem here? How can I solve this as I had to restart my Tomcat once a while due to this problem.

    ok.. I have db classes where all my sql statements methods are being displayed.. In each db class, there will be a getInstance() method to create the connection. Below is one of my db class.. How to I modified the things you had mentioned in my codes..
    package aedgeSoft.access;
    import aedgeSoft.business.*;
    import java.sql.*;
    import java.util.*;
    import java.util.Date;
    import java.io.*;
    public class DBMemberType
         private Connection con;
         private static DBMemberType instance = null;
         public static DBMemberType getInstance()
              try
                   if(instance==null)
                        instance = new DBMemberType();
              catch(SQLException e)
                   System.out.println("Problems with loading database in DBMemberType");
              catch(ClassNotFoundException e)
                   System.out.println("Problems with loading db driver in DBMemberType");
              finally
                   return instance;
         private DBMemberType() throws SQLException, ClassNotFoundException
              try{
              Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
              con = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;user=username;password=password;DatabaseName=db");
              catch(InstantiationException e)
                   e.printStackTrace();
              catch(IllegalAccessException e)
                   e.printStackTrace();
         //add memberType
         public boolean addMemberType(MemberType mt)
    ..........

Maybe you are looking for