Re: accessing Actionform properties from javascript

2004-12-24 Thread Jitender K Chukkavenkata
Hi, Your action form is nothing more than ur HTML form at client. just checkout which part of ur HTML elements is populating that property. U can access that element using form.element in ur javascript.. Are you looking into something else? Thanks, Jitender.

Maven with Struts

2004-09-29 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Error Message

2004-09-24 Thread Jitender K Chukkavenkata
Hi Priya, Check your struts-config.xml whether you have given an appropriate value for input attribute in the action tag. This becomes mandatory when you set the validation to true. Jitender Kumar C.V. IBM Global Services India (Pvt.) Ltd., O2 Companion UK, Desk No.SA2-*1-215, No.12, Phase II, S

Re: Is there any free Application for Bug Tracking Software in Java or JSP

2004-09-21 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Is there any free Application for Bug Tracking Software in Java or JSP

2004-09-21 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: [FRIDAY] GMail invites

2004-09-21 Thread Jitender K Chukkavenkata
Hi Sailesh, Can I have one? Jitender Kumar C.V.

Re: [FRIDAY] GMail invites

2004-09-21 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Assigning a DataSource to a Business Delegate on startup

2004-09-21 Thread Jitender K Chukkavenkata
Sorry, My assumption about your problem is different I guess... Jitender Kumar C.V.

Re: Where to put the business logics?

2004-09-21 Thread Jitender K Chukkavenkata
hi, Action classes must be delegates to the actual business logic. Make business logic available in a different layer (say helper classes) and let the action class to invoke the actual business logic. Jitender Kumar C.V.

Re: Assigning a DataSource to a Business Delegate on startup

2004-09-21 Thread Jitender K Chukkavenkata
org.apache.struts.config.DataSourceConfig holds a getKey() method that returns you the DataSource key underwhich the Datasource object is stored in the servlet Context...just find it out and try making use of it... Thanks, Jitender Kumar C.V.

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
yeah...It might be the problem because... also expects any one of the properties. Anyways...nice to c ur problem solved... Cheers... :-) Jitender Kumar C.V. Be passionate at what ever you do.

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
I was just wondering that I couldnt find any mapping in JSP for the method nextController(). Iam sorry I was actually expecting the value of action attribute of but not URL. Jitender Kumar C.V.

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
Hi, I need the url that you are giving for and also the mapping of the same in struts-config.xml...The error might be like you are using some conflicting properties because, "forward", "href", "page" or "action" are exclusive properties. Any combination of these properties for a tag generate

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
Which part of your code generated this? Can I have a look over it? Thanks, Jitender Kumar C.V.

Re: bean missing after validation

2004-09-20 Thread Jitender K Chukkavenkata
Hi Sebastian, I would suggest you to manually call validate method and let your data still remains in the request scope incase of validation being failed. I feel this to be a better solution for your scenario. Jitender Kumar C.V.

RE: bean missing after validation

2004-09-20 Thread Jitender K Chukkavenkata
I dont think this is right solution.. Jitender Kumar C.V.

Re: bean missing after validation

2004-09-20 Thread Jitender K Chukkavenkata
Could you be little bit clear at your JSP? Thanks. Jitender Kumar C.V.

Re: Invalidating the session

2004-09-17 Thread Jitender K Chukkavenkata
Use javascript to load a function on window event close. Let that javascript pass a request to an action (like InvalidateSessionAction that holds the logic to manage the same). thats it. Jitender Kumar C.V.

Re: Hello Friends

2004-09-17 Thread Jitender K Chukkavenkata
Let us respect group values...No personals pleasesend a personal mail if curious of knowing... Jitender Kumar C.V.

Re: Hello Friends

2004-09-17 Thread Jitender K Chukkavenkata
Waaarm welcome Kranti...Have funn... Jitender Kumar C.V.

Re: DynaActionForm and previous request attributes (no answer found in archives for similar problems)

2004-09-17 Thread Jitender K Chukkavenkata
I would agree with him. I can suggest you the same. Jitender Kumar C.V.

Re: Accessing ActionMessages in a jsp-File!

2004-09-17 Thread Jitender K Chukkavenkata
hei just check this :+ Are you setting attribute message="true" ? Thanks. Jitender Kumar C.V.

Re: Accessing ActionMessages in a jsp-File!

2004-09-17 Thread Jitender K Chukkavenkata
Please tell me Y are you using the shaded code when the classes being used are depricated. If i use this: i get no message in my jsp file. Once Again my Actionclass says: ActionMessages messages = new ActionMessages(); errors.a

Re: Accessing ActionMessages in a jsp-File!

2004-09-17 Thread Jitender K Chukkavenkata
U can use First method: Or, you can place specific messages at different locations

Re: Accessing ActionMessages in a jsp-File!

2004-09-17 Thread Jitender K Chukkavenkata
use tag or tag for accessing messages in the same way as you use tag. Jitender Kumar C.V.

RE: Problem going to my Next JSP by Href tag

2004-09-16 Thread Jitender K Chukkavenkata
Hi Priya, I dont think that the action (not being actually a struts action) should have a corresponding mapping in struts-config.xml in your case. Use html:link tag instead of tag. I think this will solve your problem. Jitender Kumar C.V.

suggestion needed.

2004-09-16 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

problem in db access

2004-09-16 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

RE: Validation in struts

2004-09-15 Thread Jitender K Chukkavenkata
Divya, if your problem is just to display an error message box instead of the message. use the tag inside validator-rules.xml for your validation and map it with appropriate message key that you want to display. :) Jitender Kumar C.V.

RE: Validation in struts

2004-09-15 Thread Jitender K Chukkavenkata
Hi Divya, I think you need to extend your form class with org.apache.struts.validator.action.ValidatorForm or ValidatorActionFrom instead of org.apache.struts.action.ActionForm. have u done it? Regards, Jitender.

Re: Global Forward x Action Mapping

2004-09-15 Thread Jitender K Chukkavenkata
A practical example of this is like: there exists a home page link or any link common to all in every pages that you navigate. Use the global forward instead of using a local forward in such scenario. Jitender Kumar C.V.

Re: Validation in struts

2004-09-14 Thread Jitender K Chukkavenkata
U can use struts validations framework as well go thru struts validation framework.. Jitender Kumar C.V. IBM Global Services India (Pvt.) Ltd., Embassy Golf Links Business Park, Block C, Bangalore - 560 071. Phone : + 91 (80) 51056320 Mobile: + 91 9886219429 Location : EGC-3*-058.

Re: Re: Re: [Gmail] - All gone,

2004-09-14 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Re: Re: [Gmail] - All gone,

2004-09-13 Thread Jitender K Chukkavenkata
Hi Hari, Thanks for sending me the gmail invitation. Jitender Kumar C.V.

Re: SPAM-LOW: Re: Re: [Gmail] - All gone,

2004-09-13 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: SPAM-LOW: [OT] Gmail invites, 2 available.

2004-09-13 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Exception Handler Help!

2004-08-24 Thread Jitender K Chukkavenkata
Hei Keith, Could you be little detail regarding struts-config.xml...what is errors.do?? Jitender Kumar C.V.

Re: Validating Dynamically Creating Rows

2004-08-23 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Validating Dynamically Creating Rows

2004-08-23 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

How to do validation for dynamically creating Multiple Fields

2004-08-22 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

need help on format attribute of bean:write

2004-08-22 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

RE: Action Servlet not getting called.

2004-08-16 Thread Jitender K Chukkavenkata
Hi Veera, You have used an identifier called employees for logic:iterate name attribute. The name should be a valid bean name defined in any scope. I guess you are giving a wrong reference. Try giving a valid bean reference that exist in any scope. Regards, Jitender Kumar C.V.

submit and listbox

2004-08-15 Thread Jitender K Chukkavenkata
: was Jitender K Chukkavenkata/India/IBM received by

Re: Nested tags...

2004-08-13 Thread Jitender K Chukkavenkata
Where did you terminate tag. Close the Jitender Kumar C.V.

Struts - JUnit Testclass- WSAD

2004-08-04 Thread Jitender K Chukkavenkata
Hi, I have a struts application and a couple of JUnit testclasses for the same developed in WSAD Environment(Windows). The same need to be deployed in Unix box. I need an option of executing the remote JUnit Testcase class(deployed in Unix box) from WSAD and trace the results thru the JUni