RE: request Processor in struts-2.

2005-02-09 Thread mohan.radhakrishnan
Hi, It is not clear to me why CoR would be so special in the new Struts architecture. After reading the proposal it seems that the 3 types of controllers seem to be more interesting. Was CoR chosen to leverage Commons Chain ? Why does a Web application need the flexibility of CoR ? I know

RE: Struts Security

2005-01-26 Thread mohan.radhakrishnan
I think the logic:present tag will allow access to any of the roles mentioned. Mohan -Original Message- From: Tim Christopher [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 9:41 AM To: Struts Users Mailing List Subject: Re: Struts Security Just a quick question... What is

RE: cross application form bean

2005-01-10 Thread mohan.radhakrishnan
JAAS would help but that's not Struts specific. Mohan -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Saturday, January 08, 2005 9:30 AM To: Struts Users Mailing List; Oleg Subject: Re: cross application form bean Sessions are unique to individual application

RE: Form based authentication issue

2004-12-31 Thread mohan.radhakrishnan
Hi, It might not be weird. If your image URL is the last protected request URL then after authentication the container will show that. I mean that the image is the latest protected resource(even later than the original requested URL) I think that if the image is not showing then it is prot

RE: Error in "instantiate TagExtraInfo class"

2004-12-28 Thread mohan.radhakrishnan
Hi, This particular line "To use Struts, you must copy the .tld files that you require into your WEB-INF directory, and copy struts.jar (and all of the commons-*.jar files) into your WEB-INF/lib directory." is not clear. Which .tld files ? Struts' .tld files are inside the META-INF fold

RE: Which tlds/jars I am suppose to make use of ?

2004-12-27 Thread mohan.radhakrishnan
Hi, 1.The TLD's are *usually*(It works) in the META-INF folder in the concerned jar. 2. It seems that it will be found if it is *anywhere*(I haven't tried this) under WEB- INF if your container implements auto-scanning as mentioned in the spec. Mohan -Original Message- From: Manisha Sa

Re: Urgent Helppp needed

2004-12-21 Thread mohan.radhakrishnan
Hi, This looks like the business case for Struts modules. You could check out the doc. related to the support for Struts modules. 1. Support for separate resource files. 2. You could use a single page ( for example a common 'Search' JSP ) across modules if you want. This promotes reusab

Struts converters

2004-12-20 Thread mohan.radhakrishnan
Hi, A new chapter from a Struts book has been posted to TSS. It seems that the solution for automatic conversion and formatting is already there in the form of java bean PropertyEditors. Why isn't Struts ( Shale ? ) proposing the use of PropertyEditors ( like Spring )? Is it too much chan

Re: ServletContext, Initialisation, & Distributed Environments

2004-12-15 Thread mohan.radhakrishnan
Hi, We had to check out some design issues because the client wanted a clustered environment. We never tested it though. I know that if you pick something from the scope and change it you have set it back explicitly. I recall that this is a requirement to enable session replica

PropertyEditor

2004-12-07 Thread mohan.radhakrishnan
Hi, I was looking at the source of Spring and found PropertyEditors used extensively. I remember that conversion of String to various datatypes is done using custom converters in Struts. Can anybody comment on this ? Are we going to use PropertyEditors that we can register in the next versi