RE: Xdoclet & Struts modules

2005-04-28 Thread Prasad, Kamakshya
Style is the tag for html (BWhile struts implements the same with the name as styleclass (B (B-Original Message- (BFrom: Harsh Panwar [mailto:[EMAIL PROTECTED] (BSent: Thursday, April 28, 2005 6:20 PM (BTo: Struts Users Mailing List (BSubject: RE: Xdoclet & Struts modules (B (

Issues keeping specifc data type in ActionForm instead of string

2005-03-01 Thread Prasad, Kamakshya
Hi, What all issues are there in keeping the data type of the attributes in ActionForm as specific date, double, integer etc. data types instead of string? Regards, KP

RE: How to convert Strings in ActionForm to date, double etc. in VO..

2005-02-28 Thread Prasad, Kamakshya
your needs. (btw: Struts also makes use of BeanUtils for form population so the jar file will already be in your app). Prasad, Kamakshya wrote: > Hi All, > > > > In our application we are keeping all the values as string in actionform > but in value object we are using

How to convert Strings in ActionForm to date, double etc. in VO..

2005-02-28 Thread Prasad, Kamakshya
Hi All, In our application we are keeping all the values as string in actionform but in value object we are using specific data type. Now we are looking for an option which can populate the VO from ActionForm without the developer having to populate for each of the fields. It should also perfor

RE: struts tag extension for dynamic group level security

2005-01-25 Thread Prasad, Kamakshya
+0900, Prasad, Kamakshya <[EMAIL PROTECTED]> wrote: > Hi All, > > Are there any struts tag extension available implementing the dynamic > security? > > We want to drill the security access to each input element fields. > Further, the security groups are also dynamic.

struts tag extension for dynamic group level security

2005-01-25 Thread Prasad, Kamakshya
Hi All, Are there any struts tag extension available implementing the dynamic security? We want to drill the security access to each input element fields. Further, the security groups are also dynamic. We are planning to use xml for storing the mapping. Regards, KP

Navigation framework

2004-10-04 Thread Prasad, Kamakshya
Hi All, We have a web application built on struts. The issue we are having is implementing a solid navigation framework. All the screens are tightly coupled to each other. On click of back button it should always go to the screen which opened it and each screen is getting opened from lot other

RE: Client Side Validation using a pure JSF Only Application

2004-09-28 Thread Prasad, Kamakshya
Hi, Download the sources from this site http://horstmann.com/corejsf/ In ch12 you can find examples for generating the client side javascript code for performing the client side validations. Regards, KP -Original Message- From: babloosony [mailto:[EMAIL PROTECTED] Sent: Wednesday, Sept

Loading log4J properties file

2004-09-28 Thread Prasad, Kamakshya
Hi All, I am newbie in log4j. Please advice me the best option for loading the log4j properties file in a web application. Regards, KP

RE: Switching between HTTP and HTTPS

2004-09-15 Thread Prasad, Kamakshya
Hi, Currently in our system for toggling between HTTP and HTTpS, we are just changing the protocol in the url using the javascript. I don't know its the correct way or not. Why we need a separate implementation for the same? Please advice KP -Original Message- From: Antony Paul [mailto:[

Best load testing tool for Java applications

2004-09-14 Thread Prasad, Kamakshya
Hi, Which is the best load testing tool available for testing java applications? Please suggest. KP - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Single sign-on

2004-09-09 Thread Prasad, Kamakshya
ubject: RE: Single sign-on check out the single sign on valve for your app server. might be your answer. -Original Message----- From: Prasad, Kamakshya [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 3:53 AM To: Struts Users Mailing List Subject: Single sign-on Hi, We have

Single sign-on

2004-09-09 Thread Prasad, Kamakshya
Hi, We have lot of web application built on struts for which we need to provide single sign-on. Please advise me how to implement the same. We are using Weblogic 8.1 as the app server. Regards, KP - To unsubscribe, e-mail: [

JSF-Struts integration

2004-08-13 Thread Prasad, Kamakshya
, Prasad, Kamakshya <[EMAIL PROTECTED]> wrote: > Dear Craig, > > Could you please elaborate more on this? Kindly if possible some code > snippets which may help me understand it better. > As I said in my previous message, the nightly builds of the Struts-Faces integratio

RE: Plugin struts validator framework to JSF

2004-08-12 Thread Prasad, Kamakshya
List Subject: Re: Plugin struts validator framework to JSF On Fri, 13 Aug 2004 14:51:25 +0900, Prasad, Kamakshya <[EMAIL PROTECTED]> wrote: > HI, > > Thanks a lot for the information. > I was looking through the examples of Struts-faces integration library. > What I found wa

RE: Plugin struts validator framework to JSF

2004-08-12 Thread Prasad, Kamakshya
); } Thanks and Regards, KP -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 12:37 AM To: Struts Users Mailing List Subject: Re: Plugin struts validator framework to JSF On Thu, 12 Aug 2004 20:46:33 +0900, Prasad, Kamakshya &

Plugin struts validator framework to JSF

2004-08-12 Thread Prasad, Kamakshya
Hi All, Is it possible to plugin struts validator framework to Javaserver faces web framework? Are there any examples available in the net? Kindly advice me on this. KP - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Multiple File Upload using Struts (number of files dynamic)

2004-07-09 Thread Prasad, Kamakshya
Hi, U don't need to add attribute to form bean class. Keep an arraylist of formfiles in form bean. In the screen use javascript to add a new input tag to the list of file inputs. Then struts will take care of populating the formFiles arraylist with these set of files after the form submission

RE: Multiple File Upload using Struts (number of files dynamic)

2004-07-08 Thread Prasad, Kamakshya
HI, Try this one... Put it in your form bean private ArrayList formFiles = new ArrayList(); public void setTestFile(int iIndex, FormFile formFile) { this.formFiles.add(formFiles); } public FormFile getTestFile(int iIndex) { while(this.formFiles.size() <= iIndex) { this.for

RE: Multiple File Upload using Struts (number of files dynamic)

2004-07-07 Thread Prasad, Kamakshya
Hi, In the form bean keep an array list of FormFile and use it similarly as dynamic list control. KP -Original Message- From: Viral_Thakkar [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 3:01 PM To: Struts Users Mailing List Cc: Ketan_Bhat Subject: Multiple File Upload using St

RE: Theoretical debate

2004-06-17 Thread Prasad, Kamakshya
Hi, This is a very good detail explanation given by Hans Bergsten Looking through all the other threads dealing with this question, I see that most of the points have already been mentioned but let's see if I can give you a more conclusive answer. I describe this in more detail in the book, but

RE: Design Issue - Unchanged data getting submitted

2004-05-24 Thread Prasad, Kamakshya
Hi, We had a similar kind of issues in our last project and we thought about a methodology also. Please let me know if there are any issue with this or somewhere it needs correction or is a performance bottle neck etc etc. I will explain it with an example. We had a screen called Asset Detai

RE: Struts and Data/Presentation Separation

2004-05-23 Thread Prasad, Kamakshya
Hi, This might help u.. http://www.onjava.com/pub/a/onjava/excerpt/java_xslt_ch5/index.html KP -Original Message- From: Josh Holtzman [mailto:[EMAIL PROTECTED] Sent: Monday, May 24, 2004 8:08 AM To: [EMAIL PROTECTED] Subject: Struts and Data/Presentation Separation Hello all, We a

Struts & Reports - Performance issue

2004-05-15 Thread Prasad, Kamakshya
Hi All, I believe Struts uses reflection api for populating the jsp from form bean. Therefore, if jsp is generating a csv containing a big table with lots of rows (like generating reports), then form bean properties has to be called in a loop (using logic-iterate). Will this be a performance issu

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Prasad, Kamakshya
Hi, It can as well be done in struts using this   [] KP -Original Message- From: PADALA, SANDHYA (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 5:28 AM To: Struts Users Mailing List Subject: RE: struts logic-iterate and accessing nested index properties Thank you T

RE: Split web.xml into multiple files

2004-05-03 Thread Prasad, Kamakshya
ct: Re: Split web.xml into multiple files Prasad, Kamakshya wrote: >Hi, > >We are using the container managed security and we have lot of action >mapping and roles. Specifying them in one web.xml making it too huge. We >want it to split into separate logical files > > > If your

RE: Split web.xml into multiple files

2004-05-02 Thread Prasad, Kamakshya
, 2004 10:20 PM To: [EMAIL PROTECTED] Subject: Re: Split web.xml into multiple files Prasad, Kamakshya wrote: > Hi, > > Is it possible to split web.xml into multiple files? > > KP > AFAIK the web.xml cannot be split. Most containers, however, do utilize a container-specific

RE: Multiple file uploads

2004-04-16 Thread Prasad, Kamakshya
Use indexed properties. Link for the same http://jakarta.apache.org/struts/faqs/indexedprops.html -Original Message- From: Andrew Stevens [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 2:37 PM To: '[EMAIL PROTECTED]' Subject: Multiple file uploads Hi, I've read various threa

Better peformance: Using static variables or application context object

2004-04-13 Thread Prasad, Kamakshya
Hi All, Performance wise which will be the better way of caching for a web application, using static variables or embedding the object to be cached in the application context object. KP

JSPs path for new module

2004-04-13 Thread Prasad, Kamakshya
Hi, We are adding a new module to our application called "admin". All our jsps where kept just below the "web" (web context) folder in a folder named "jsp". This folder again is having subdirectories for each sub module. The issue is if we are adding the "admin" as a new module the system is sear

Displaying an in-progress page while navigating from one page to another

2004-04-11 Thread Prasad, Kamakshya
Hi All, In our system we have some pages which take lot of time to process because of the complicated back end logic. So, sometimes the navigation from one page to another page is very slow. What our client wants is to show an intermediate revolving gif with some informative text in it before th

RE: Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
PM Prasad, Kamakshya wrote: > Hi, > > I am using 1.1 version. > > KP > > -Original Message- > From: Adam Hardy [mailto:[EMAIL PROTECTED] > Sent: Friday, April 09, 2004 7:48 PM > To: Struts Users Mailing List > Subject: Re: Validation.xml form name pa

RE: Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
? Adam On 04/09/2004 10:08 AM Prasad, Kamakshya wrote: > HI, > > Is it a bug or has been intentionally done like that? > > I have a form with lots of CRUD buttons. The action path is > "/maintainEmployeeDetails". I am using DispatchAction class for the > same.

Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
HI, Is it a bug or has been intentionally done like that? I have a form with lots of CRUD buttons. The action path is "/maintainEmployeeDetails". I am using DispatchAction class for the same. But each of these buttons has specific javascript validations. So in the validation.xml insted of givi

RE: "No bean specified" error

2004-04-07 Thread Prasad, Kamakshya
Hi, I have this line in my jsp When I am submitting the form it gives me the error java.lang.IllegalArgumentException: No bean specified Could anyone please help me on this? The EmployeeDetailsForm has this code public class EmployeeDe

"No bean specified" error

2004-04-07 Thread Prasad, Kamakshya
Hi, I have this line in my jsp When I am submitting the form it gives me the error java.lang.IllegalArgumentException: No bean specified Could anyone please help me on this? The EmployeeDetailsForm has this code public class EmployeeDe

"No bean specified" error

2004-04-07 Thread Prasad, Kamakshya
Hi, I have this line in my jsp When I am submitting the form it gives me the error java.lang.IllegalArgumentException: No bean specified Could anyone please help me on this? The EmployeeDetailsForm has this code public class EmployeeDetailsF

"No bean specified" error

2004-04-07 Thread Prasad, Kamakshya
Hi, I have this line in my jsp When I am submitting the form it gives me the error java.lang.IllegalArgumentException: No bean specified Could anyone please help me on this? The EmployeeDetailsForm has this code public class EmployeeDetailsF

Help: logic:iterate error : Cannot find bean ... in any scope

2004-04-06 Thread Prasad, Kamakshya
HI, I have these lines in my jsp when the jsp is executed, it throws an error "Cannot find bean courseDetailsLocal in any scope." Why is it happening so? I have imported taglib in my jsp. The setter/getter methods for courseDetails in EmployeeDetails

Help: logic:iterate error : Cannot find bean ... in any scope

2004-04-06 Thread Prasad, Kamakshya
HI, I have these lines in my jsp when the jsp is executed, it throws an error "Cannot find bean courseDetailsLocal in any scope." Why is it happening so? I have imported taglib in my jsp. The setter/getter methods for courseDetails in EmployeeDetails

RE: TokenProcesor and synchronization

2004-04-04 Thread Prasad, Kamakshya
Prasad, Kamakshya wrote: >Hi, > >It might be a silly question... but curiosity... > >Why we need to synchronize at all? Each user session will be unique in the server and so the extracted variables from that session. > >KP > > It's not a silly question ... this i

Javascript event on click of Stop button

2004-04-02 Thread Prasad, Kamakshya
Hi All, It's not exactly struts related but regarding javascript function. We have a requirement where after submission of form if user clicks on "Stop" button of the browser we have to display a message. Is it possible to capture this event? KP

RE: TokenProcesor and synchronization

2004-04-02 Thread Prasad, Kamakshya
Hi Actually I downloaded the code from the given link http://www.javaworld.com/javatips/jw-javatip136_p.html and deployed in my server...there is one issue... If I submit a page and then refresh it, it works as mentioned in the document But while submitting if I click 2-3 times with quick suc

RE: TokenProcesor and synchronization

2004-04-02 Thread Prasad, Kamakshya
Hi, It might be a silly question... but curiosity... Why we need to synchronize at all? Each user session will be unique in the server and so the extracted variables from that session. KP -Original Message- From: Jose Ramon Diaz [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 4