Hi Chris, "editUser" action is inside admin package (struts.xml). All actions in this package have "admin" prefix. So the exact url of "editUser" action is "http://your.domain.com/admin/editUser.html?...".
All actions are -by default- secure. So you can not access any action without logging into application. If you want to have a public action (an action that guest users can access), you should go to security.xml file and add your action there and make it available to ROLE_ANONYMOUS as below: ... <intercept-url pattern="/index.html*" access="ROLE_ANONYMOUS,ROLE_ADMIN,ROLE_USER"/> ... Ali Behzadian Nejad. -- View this message in context: http://www.nabble.com/Appfuse-Access-denied-error-tp18284246s2369p18291098.html Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
