Re: [jexl] Number coercion in assignments and method calls

2012-07-25 Thread henrib
Hi; The easiest solution would be by flanking the problem altogether by adding a 'public void setSomeBigDecimalProperty(Number n)' or 'public void setSomeBigDecimalProperty(double d)' method to your 'someBean' class. The other possible solutions: 1/ derive the Interpreter to override the

[dbcp] prepared statement caching when connections are closed but connection pool still has connection

2012-07-25 Thread Amish Shah
Does the DBCP support prepared statement caching in the following condition 1) connection is opened from connection pool 2) Prepared statement are used 3) Connection is closed but returned to connection pool If we reuse the connection from the connection pool is there a way the prepared

Re: [MATH] Kalman Filter

2012-07-25 Thread Gilles Sadowski
Hi. On Wed, Jul 25, 2012 at 10:56:08AM -0400, Garrett Kane wrote: I am having trouble understanding the output of the Kalman Filter in math 3.0 is there anyone who can explain to me what the various trigonometric, exp, and lp_mant tables in the console output are used for? my eventual

Re: [jexl] Number coercion in assignments and method calls

2012-07-25 Thread Iskander Absalyamov
Thank you, Henri! I'll add: /** Use only in JEXL scripts. */ @Deprecated public void setSomeBigDecimalProperty(Number n) {...} With overriding Interpreter.setAttribute(...), one would also need to override methods instantiating it. I can't use snapshots.

Re: errors parsing soap

2012-07-25 Thread Simone Tripodi
Hi Terry, could you share please your Digester configuration, please? That would be easier for me to provide feedbacks! TIA, all the best, -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ http://twitter.com/simonetripodi http://www.99soft.org/ On Wed, Jul

[net] FTP client fails if a modem connection is used

2012-07-25 Thread Gregor Schmidt
Hello, I use the FTPClient class (API 3.0.1) for FTP file transfers. It works fine as long as the internet connection is fast enough, e. g. 150 kbit/s and above. With a modem connection at 56 kbit/s I can connect the server but I get a read time out after the transfer of the file to the server

InnerClass - get methods, fields etc?

2012-07-25 Thread Sridhar Sarnobat
Following on from what another user posted: http://www.mail-archive.com/bcel-user@jakarta.apache.org/msg00851.html I understand how to get an InnerClass object, but how do I get a list of its methods (or fields)? I was hoping that it would implement a similar interface to JavaClass. Am I