Once again - any third-party JS?
You previously mentioned that the ResultSet appeared to be crashing while "creating an auto-operation" - actually there's no indication of this - this log:
.. is the normal last log you would see from a ResultSet.
To disambiguate where the crash is:
1. java.lang.Exception.printStackTrace() prints the stack to stderr, you could find this log in JBoss or do the following silly dance that all Java programmers eventually write:
public static String getStackTrace(Throwable t)
{
StringWriter sw = new StringWriter();
t.printStackTrace(new PrintWriter(sw));
try { sw.close(); } catch (Exception e) {}
return sw.toString();
}
2. just add another logWarn() after the getRange() to call in the else case to clarify whether it returns successfully
You previously mentioned that the ResultSet appeared to be crashing while "creating an auto-operation" - actually there's no indication of this - this log:
15:01:36.086:TMR8:INFO:ResultSet:isc_ResultSet_0 (created by: undefined):creating auto-operation for operationType: fetch
To disambiguate where the crash is:
1. java.lang.Exception.printStackTrace() prints the stack to stderr, you could find this log in JBoss or do the following silly dance that all Java programmers eventually write:
public static String getStackTrace(Throwable t)
{
StringWriter sw = new StringWriter();
t.printStackTrace(new PrintWriter(sw));
try { sw.close(); } catch (Exception e) {}
return sw.toString();
}
2. just add another logWarn() after the getRange() to call in the else case to clarify whether it returns successfully
Comment