Re: Preserving Login Information

2002-04-29 Thread Martin Cooper
Vivek, Your questions are really generic servlet questions, unrelated to Struts. I would suggest looking for answers in a more generic forum, such as [EMAIL PROTECTED] If you have related questions which are Struts specific, then it would be a good idea for you to ask them on the struts-user lis

RE: tabular radio buttons :(

2002-04-29 Thread James Mitchell
tabular radio buttons :(You'll probably get a quicker response using the strut-user list. JM -Original Message- From: Chakradhar Tallam [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:48 PM To: '[EMAIL PROTECTED]' Subject: tabular radio buttons :( hi guys, i've

tabular radio buttons :(

2002-04-29 Thread Chakradhar Tallam
Title: tabular radio buttons :( hi guys, i've a page with radio buttons in 4 rows & 5 columns = 20 radio buttons. each column's radio button's on/off property comes from a bean = 5 beans. only one radio button in a row can be selected (one of 4 in each row), that means the radio buttons each

RE: "CheckLogon" Tag

2002-04-29 Thread James Mitchell
Are you referring to the that is in the struts-example? If so, This tag library contains functionality specific to the Struts Example Application. .from the app.tld file in the struts-example code base. *** IMPORTANT *** You need to post your questions to the stru

"CheckLogon" Tag

2002-04-29 Thread vivek shrivastava
Hi, I need some help to understand "CheckLogon" tag. could someone please me to understand it prperly" why do we use it? how does it work? please do help me! thanks _ Chat with friends online, try MSN Messenger: http://messenger.

RE: ActionServlet re-populates form upon Actoin => Action call

2002-04-29 Thread Terrence Xavier
Dear Craig (and developers), Thank you very much for addressing our concerns. We think it is important to point out that our forwarding from action to action (action->action) is not in order to share logic between actions, but rather in order to do a form of pre- and post-processi

DO NOT REPLY [Bug 8628] New: - Setter methods not found

2002-04-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Preserving Login Information

2002-04-29 Thread Phase Web and Multimedia
I've never used the checklogon tag in struts. But, checking logon state in a jsp is not a very good idea unless you are checking for specific roles in order to display info. But, it will work to some degree if you want to use you jsp as a controller. Extending the action would be more sufficient

RE: Preserving Login Information

2002-04-29 Thread vivek shrivastava
Hi, Just to let know that i am using Programmatic authentication( one way Encryption ) for my login authentication. what is "Checklogon" tag for in struts? is this the solution for my problem # 1? Please do reply me! thanks >From: "Phase Web and Multimedia" <[EMAIL PROTECTED]> >Reply-To:

RE: Preserving Login Information

2002-04-29 Thread vivek shrivastava
Hi, I am using Programmatic authentication( one way Encryption ) for my login authentication. what is "Checklogon" tag for in struts? is this the solution for my problem # 1? Please do reply me! thanks >From: "Phase Web and Multimedia" <[EMAIL PROTECTED]> >Reply-To: "Struts Developers Li

Re: Preserving Login Information

2002-04-29 Thread vivek shrivastava
Hi, Just to let know that i am using Programmatic authentication( one way Encryption ) for my login authentication. what is "Checklogon" tag for in struts? is this the solution for my problem # 1? Please do reply me! thanks >From: "vivek shrivastava" <[EMAIL PROTECTED]> >Reply-To: "Struts

FW: struts javadoc deadlink

2002-04-29 Thread Pier Fumagalli
NAK... -- Forwarded Message > From: Aurélien Pelletier <[EMAIL PROTECTED]> > Date: Mon, 29 Apr 2002 14:48:42 +0200 > To: [EMAIL PROTECTED] > Subject: struts javadoc deadlink > > Hello, > > All the links about the validator package in the struts javadoc ( > http://jakarta.apache.org/struts/

RE: Struts Improvement Proposal: Logic Extensibility

2002-04-29 Thread mread
Given your example, if you add an Action defined to populate your shopping cart data and an Action defined to populate your dynamic content then why not use templates to bring them together when necessary? That's how I do it in almost exactly the same situation. This way you only create 2 actions

RE: Struts Improvement Proposal: Logic Extensibility

2002-04-29 Thread mread
I've used the following successfully to pass parameters to the actions and obviously each action will have available any POST data passed in a submit. Unfortunately it seems that templates have been abandoned in favour of the much more complex and more difficult to configure struts-tiles

DO NOT REPLY [Bug 8615] New: - Please add us to your consultants list

2002-04-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Preserving Login Information

2002-04-29 Thread Phase Web and Multimedia
Question #1: What security are you using? I am assuming container managed. If so, then you can use the programmatic standard of request.isUserInRole(String role). To find out user or principal identification you can use the request.getRemoteUser() and request.getUserPrincipal(). Another plan is t