RE: Re: Security, authentication and authorisation with Struts

2001-08-24 Thread devon . bowen
wouldn't it be better to put this code directly into the action servlet and rebuild struts? That goes against my code-reusability instincts. I strive to use the default struts build and default tag libraries. The other possibility would be to put this in the Action class. Before it checks the

RE: Re: Security, authentication and authorisation with Struts

2001-08-24 Thread devon . bowen
i would prefer not to put the authentication code in the action because it opens the possibility of having authentication logic in each and every action In my case, each action needs a different authentication. For example, some users have read-only access and some have modify access. Devon