Ran Giri

Greenhorn
+ Follow
since Oct 09, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ran Giri

Do you recommend this for Java developers/ I mean How easily this integrate with Java apps?
I am wondering is there any way I can load log4j propery file using commons logging API.

My cases:

** We had a logging component which used to initialize the properties file, using init(RESOURCE_BUNDLE) provided by that component. now I am planning to replace that with the commons logging.

** I am using property file name different than log4j.properties say xyz.properties.
** I know that PropertyConfigurator.configure(which is from log4j API) can do the loading but I do not want to use it, as I am not sure the clients of my application will use log4j or not. That is to provide clients the freedom to chose any logging component.

** I wonder if commons logging provides some init method to initialize and load/configure the properties file.

Please let me know - if there are any other alternatives around this???

I appreciate your reply.
Thanks Very much. I really appreciate your help. I have the custom validation working.

Thanks
17 years ago
I cannot use action forms validate method, as I would lose the consistancy of developement. I was thinking to use Validwhen- The expression just bloats and gets confusing.. Any sudgestion on this really appreciated!!!

Thanks
17 years ago
I have three dependent fields, with the following condition. I am trying to do it using validwhen, but not able to satisfy all the conditions listed here... Any help is really appreciated.

Condition::::
If (1st contact ==null & 2nd contact ==null & 3rd contact==null)then please select atleast one.
Else if(1st=null && 2nd !=null && 3rd !=null) then 2nd != 3rd
Else if(2st=null && 1st !=null && 3rd !=null) then1st != 3rd
Else if(3rd =null && 1st !=null && 2nd !=null) then 1st != 2nd
Else if (1st !=null &&2nd!=null &&3rd!=null)then
(1st != 2nd && 2nd != 3rd && 3rd != 1st)
[ June 09, 2006: Message edited by: Ranjani Giri ]
17 years ago
I am working to find a better solution for this problem:

I have a drop down list of username's: that is displayed using:

<html ptions collection="Contacts" property="value" labelProperty="description" />

I want to display the value selected in the select box.

Thanks
17 years ago
JSP
I am thinking its because of the column you are trying to access must be not null.