Info log at Glassfish 4

ejb, glassfish, java, sql-server

Solution

This error is a hint that either the DB server or the corresponding driver doesn't support the method `setClientInfo`. It seems that this method is called everytime a connection is closed.

This behaviour is described in GLASSFISH-17061 and according to that it should be fixed in Glassfish 4.0 and 3.1.2.2 but some of the comments seem to show that it still can occur. You may try a different JDBC driver (if there is any).

Problem

I am developing an EJB Application which needs to query an sql server db every 10 seconds o get some data. I notice that in log i have these two lines: ``` INFO: RAR7114: Unable to get ClientInfo for connection INFO: RAR7115: Unable to set ClientInfo for connection ``` Although the applications works perfectly without any problem i would like to undesrtand why i receive this info every time i query my DB. Below is the software i use in this application: I use netbeans 7.3.1 Sql Server 2012 Java 6 jtds 1.3.1

Original source