Hi, nice topic:rolleyes:
I made the same mistake to retrieve the model into the onSubmit method. I corrected it to:
Map model = errors.getModel()
Now I would like to preserve the model...
Type: Posts; User: Stef-âne; Keyword(s):
Hi, nice topic:rolleyes:
I made the same mistake to retrieve the model into the onSubmit method. I corrected it to:
Map model = errors.getModel()
Now I would like to preserve the model...
Hi, When I start my server a warning message said:
Unable to locate MessageSource with name 'messageSource':
INFO [org.springframework.web.context.support.XmlWebApplicationContext] - Unable to...
A look inside the framework : AbstractProcessingFilter.java shows a property:
/**
* If <code>true</code>, will always redirect to the value of {@link #getDefaultTargetUrl} upon...
Hi,
I would like to perform custom message for acegi exception like bad authentification: user unknown, password incorrect.
Acegi doc describe mecanisme to configure the message properties. I...
Hi, when users log to the application, I initialise in my UserDetailsJdbcDaoImpl some variable into the UserAcegi object.
the UserDetailsJdbcDaoImpl extends the Spring's JdbcDaoImpl.java, I...
To logout, I implement this code:
applicationContext-security.xml
<!-- Start logout config -->
<bean id="logoutFilter" class="org.acegisecurity.ui.logout.LogoutFilter">
<constructor-arg...
Hi, Mdeinum
You said correctly: The default PermissionsAdapter (included with StrutsMenu) uses container-managed security
If you look up inside the code from the struts-menu; the method ...
Hi, thank for the response.
I look about the org.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter but the struts-menu tag does'nt work.
I observe something strange about the...
Hi I would like to know how to configure ageci for the struts menu roles tag.
Acegi is working perfectly in my web application but the menu items are allways visible even the restrict acces is...
Hi,
I would like to configure if a url is allowed/denied not in the xml file but rather in an database.
It's possible?
Thanks
Hi, I believe that I'm in the relative same situation.
My POJO include a Business method that requieres a JTA transaction.
The JTA transaction include one DAO:
- the first DAO call:...
Hi, I found my mistake, I forgot to configure my driver server correctly: the driver must be compatible XA and the DataSource enable the global Transaction.
Sorry
Hi ,I would like use the WebLogicJtaTransactionManager in my POJO model class.
This one has a methode that call 2 DAOs who persist via hibernate to the data base.
The POJO is encapsulated in an...