[OT] ConvertUtils Mess

2005-08-16 Thread Nitish Kumar
any one ever came across such a scenario and if yes, what is the solution? Thanks and Regards, Nitish Kumar

Custom Tag release() method not being called

2005-07-23 Thread Nitish Kumar
se on all the child tags, is it not so? In any case, is there a workaround to achieve this? Thanks and Regards, Nitish Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Hibernate vs. iBatis vs. POJO

2005-07-21 Thread Nitish Kumar
have a look at Spring's DAO support classes, it can really help at times. I am not an architect by the way. -:) So, I guess I do have freedom to fool around with the technologies. Thanks and Regards, Nitish Kumar -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED]

RE: Hi-New to this group

2005-07-20 Thread Nitish Kumar
, is a good substitute for EJB, if you want EJB features, without paying for the expense of remote look up, or you can use EJB with local interfaces (I believe that using local instead of remote removes a big performance overhead). Thanks and Regards, Nitish Kumar -Original Message

RE: hi

2005-07-15 Thread Nitish Kumar
You can use MappingDispatchAction or LookupDispatchAction, but I think what you want can be better achieved by MappingDispatchAction. PS: Please use a better subject than Hi, it doesnt give much clue about what your problem is.. Thanks and Regards, Nitish Kumar -Original Message

RE: Validation framework

2005-07-14 Thread Nitish Kumar
nd Regards, Nitish Kumar -Original Message- From: Borislav Sabev [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 3:34 PM To: Struts Users Mailing List Subject: Re: Validation framework Rafael Taboada wrote: >Hi folks I'm using validation framework in order to valid

RE: Handling VOs

2005-07-12 Thread Nitish Kumar
Craig's earlier mail) As for the type conversion, the default converter just changes the values to default preset values in case of exception, (read Rick Reumann's earlier mail) Thanks and Regards, Nitish Kumar -Original Message- From: Larry Meadors [mailto:[EMAIL PROTE

Re: Using struts forms as Value Objects: your opinion? BeanUtil C onverter

2005-07-11 Thread Nitish Kumar
, for some application I want all java.util.Long types to be appended with "$" symbol, it becomes much easier with a converter. what do you say? Thanks and Regards, Nitish Kumar -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Monday, July 11, 2005 11:17 PM To:

RE: Using struts forms as Value Objects: your opinion?

2005-07-11 Thread Nitish Kumar
I think raghavendra is right. Rivka, your code is working because you are using primitive type int and not the wrapper type Integer. In case of primitive type in case of any exception, it gives you a default value. Thanks and Regards, Nitish Kumar -Original Message- From: Rivka

RE: Struts vs .NET???

2005-07-02 Thread Nitish Kumar
without any intelligence, a programmer. Unfortunately in java, we still have a long way to go before we promote idiots to the coder level.. We are progressing in that direction, but I guess we still have some time before that..till then I hope to retire.. :) Thanks and Regards, Nitish Kumar

RE: javascript html:fprm and getElementById

2005-06-26 Thread Nitish Kumar
Sorry for getting mixed up with terms, I didnt mean casting as in terms of Java, :) document.getElementById always returns object and then if we start treating it as frames or forms. It some times doesnt work.. Thanks and Regards, Nitish Kumar -Original Message- From: Frank W

RE: javascript html:fprm and getElementById

2005-06-26 Thread Nitish Kumar
always better to use document.forms[i].action . Thanks and Regards, Nitish Kumar -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, June 27, 2005 3:05 AM To: Struts Users Mailing List Subject: Re: javascript html:fprm and getElementById Why do you

varying targets

2005-06-24 Thread Nitish Kumar
ver? Thanks and Regards, Nitish Kumar

RE: Validation while using LookupDispatchAction

2005-06-23 Thread Nitish Kumar
s* != null) ) Thanks and Regards, Nitish Kumar -Original Message- From: Vicky [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 7:55 PM To: Struts Users Mailing List Subject: Validation while using LookupDispatchAction My action class extends LookupDispatchAction, which has different

RE: [OT] Find missing property file keys?

2005-06-23 Thread Nitish Kumar
if(!props1.containsKey(key)) { System.out.println(key); } } Thanks and Regards, Nitish Kumar Tavant Technologies Ltd Bangalore -Original Message- From: Emmanouil Batsis [mailto:[E

RE: ApplicationResources.properties vs Validator framework

2005-06-23 Thread Nitish Kumar
>From the log, it seems that struts is finding "application.resources" from your config file. Just check if you have a "." in the config.. Thanks and Regards, Nitish Kumar -Original Message- From: Gilbert, Antoine [mailto:[EMAIL PROTECTED] Sent: Thursday, J

RE: ApplicationResources.properties vs Validator framework

2005-06-23 Thread Nitish Kumar
To me it seems, due to a different locale, your application is looking for ApplicationResources_fr_CA.properties you can try renaming your properties file to "ApplicationResources_fr_CA.properties" and then deploying the application. Thanks and Regards, Nitish Kumar Tavant Techno

[OT] Hidden Fields V/S session scope

2005-06-20 Thread Nitish Kumar
client. I just wanted to know, how much of impact would be in terms of performance, if I put the data in session compared to passing the data in hidden fields. Thanks and Regards, Nitish Kumar

RE: html:option

2005-06-14 Thread Nitish Kumar
use tag along with the or print XXX using Thanks and Regards, Nitish Kumar Tavant Technologies Ltd Bangalore -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14

RE: Test whether an application resource is empty

2005-06-12 Thread Nitish Kumar
misleading.. Thanks and Regards, Nitish Kumar Tavant Technologies Ltd Bangalore -Original Message- From: Laurie Harper [mailto:[EMAIL PROTECTED] Sent: Sunday, June 12, 2005 6:30 AM To: user@struts.apache.org Subject: Re: Test whether an application resource is empty Doh, I'm an id

RE: How to run an action automatically like thread ?

2005-05-26 Thread Nitish Kumar
Cant you put an auto refresh of 10 min on a jsp which calls the action class.. Thanks and Regards, Nitish Kumar Tavant Technologies Ltd Bangalore -Original Message- From: Paul McCulloch [mailto:[EMAIL PROTECTED] Sent: Thursday, May 26, 2005 2:23 PM To: 'Struts Users Mailing

RE: Populating growing List

2005-05-23 Thread Nitish Kumar
eption } return super.get(index); } } obviously this is simplified form of that class. Thanks and Regards, Nitish Kumar -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Monday, May 23, 2005 7:27 PM To: Struts Users Mailing List Subject: Re: Populating growing List

RE: Populating growing List

2005-05-23 Thread Nitish Kumar
Even I had to do the same in quite a few of my application, personally I would have loved to have a standard solution for this problem from apache group in future releases of struts. Thanks and Regards, Nitish Kumar -Original Message- From: Sachin Bhutada [mailto:[EMAIL PROTECTED

RE: Populating growing List

2005-05-23 Thread Nitish Kumar
dont think its a great idea, If I start putting beans in session , every time I have a collection in form bean, I am not sure how long my application is going to run. Thanks and Regards, Nitish Kumar -Original Message- From: Nils Liebelt [mailto:[EMAIL PROTECTED] Sent: Monday, May 23