Re: DBCP sample configuration parameters? (pool connections failing)

2007-07-02 Thread Phil Steitz
On 7/1/07, Bennett McElwee [EMAIL PROTECTED] wrote: What is a good conservative set of configuration parameters for DBCP? We are having some problems with a web app using DBCP. It looks as if the problems are with the connection pool, but it's not easy to find much discussion of basic or

[Fwd: File Upload COde in IFRAME doesn't work]

2007-07-02 Thread Raghuveer
Is there any special handling for Using File Upload in a jsp page in IFRAME. Because my upload code works every where in applicatuion but when used in iFRAME it doesn't work and get NULL pointer exception when using file object -- Thanks and Regards, Raghuveer

Re: Can we optimize HashCodeBuilder.append(Object)?

2007-07-02 Thread Stephen Colebourne
Hi, Have you got figures to show what difference the code change makes? If so, perhaps you could raise a JIRA call so we can process this for [lang]. thanks Stephen Venkatesh Prasad Ranganath wrote: Hi, I am using HashCodeBuilder and I found that the use of Class.isArray() method in

Re: Can we optimize HashCodeBuilder.append(Object)?

2007-07-02 Thread Venkatesh Prasad Ranganath
On Jul 2, 2007, at 2:49 AM, Stephen Colebourne wrote: Hi, Have you got figures to show what difference the code change makes? In the profiling data mentioned in my earlier mail (and below), the execution of java.lang.Class.isArray() (triggered via run1()) takes up 45% of the total

Steve Birnie is out of the office.

2007-07-02 Thread steve . birnie
I will be Out of the Office Start Date: 7/1/2007. End Date: 7/4/2007. I will respond to your message when I return. Please contact Bryan Hall with any questions or issues. Thank you.

Re: [SCXML] Querying if an event would cause a transition

2007-07-02 Thread Nestor Urquiza
Hi Rahul, In Action States you do have custom actions with side effects and they result in variables part of guard transitions that will decide the final stable state. I am talking about SCXML used as WEB Controller of course, in other domains it could be like you just said but not in WEB

Re: [SCXML] Querying if an event would cause a transition

2007-07-02 Thread Rahul Akolkar
On 7/2/07, Nestor Urquiza [EMAIL PROTECTED] wrote: Hi Rahul, In Action States you do have custom actions with side effects and they result in variables part of guard transitions that will decide the final stable state. I am talking about SCXML used as WEB Controller of course, in other

About ValueSuppressionStrategy (process same attribute with different default value)

2007-07-02 Thread zhou software
Hi I have two beans and each of them has one same name property with different default value, for example: bean1{ public static final String PROP1_DEFAULT = ; String prop1; } bean2{ public static final String PROP1_DEFAULT = ; String prop1; } Could I suppressing

FTP issue

2007-07-02 Thread Vikas Kumar
Hi I am getting this problem: DefaultFileSystemManager fsManager; fileName = fileName.replace( ( char ) 0xA0, ( char ) 0x20 ); try{ fsManager = getManager(); FileSystemOptions fileSystemOptions = new FileSystemOptions();

Validation Reg ex of ( ).

2007-07-02 Thread Bakul Kumar
Hi, I want to validate the telephone number. I want to allow 0-9, *, +,-,(, SPACE and ). That means it should allow : (240) 643-9325 For that I tried : var var-namemask/var-name var-value^[0-9()x+. -]*$/var-value /var This is