Re: Need more comprehensive AJAX Implementation Instructions

2007-03-09 Thread abpicol
I have to agree with stanlick with this. I have abandoned in my project the more complex themes of struts and kept it in the "simple" theme (with customized tag templates here and there) because of these "" tags coming out of nowhere. If you imply a deduction that a tag implies in the presence

Re: NoSuchMethodException: $Proxy18.find()

2007-03-06 Thread abpicol
Another way to grant this to work is make the Action implement an interface that has the desired method. So, ... create an interface ... interface I1 { String find(); } ... in your Action class declaration ... class MyStrutsAction implements I1 extends ActionSupport { ... } WHY TH

Re: how to set role for JAASRealm

2007-03-05 Thread abpicol
The configuration of jaas realm needs two things: 1) Have the environment variable java.security.auth.login.config defined to a file that contains some definitions... 2) Have the so called file in a place accessible to tomcat, with the jaas configuration. The solution I've used in my tom

Re: [S2] Single quote in package.properties

2007-02-27 Thread abpicol
It really is, Eric. package.properties is nothing more than a standard java.util.Properties file. See the javadoc for this class and you get this question answered, and will see many more "interesting" things ;-) Alexander Eric Rank <[EMAIL PROTECTED]> 27/02/2007 19:32 Please respond to "

Re: [S2] LoginAction - Best approach feedback?

2007-02-27 Thread abpicol
Are you working on this "for fun" or you are really intending to do this on an production environment? If you are considering a "real world" solution, maybe it would be interesting to use web-container-based authorization: I use this throughout my intranet site and I like it very much, because