You could try changing security.xml so the "daoAuthenticationProvider"
bean refers to the inMemoryDaoImpl bean as defined below. You'll need
to modify the userMap to have the correct roles like Roller has. The
current roles are "admin" and "editor".
<bean id="daoAuthenticationProvider"
class="org.acegisecurity.providers.dao.DaoAuthenticationProvider">
<property name="authenticationDao" ref="inMemoryDaoImpl"/>
</bean>
<bean id="inMemoryDaoImpl"
class="org.acegisecurity.providers.dao.memory.InMemoryDaoImpl">
<property name="userMap">
<value>tomcat=tomcat,ROLE_USER</value>
</property>
</bean>
Matt
On 8/18/06, slitzu <[EMAIL PROTECTED]> wrote:
I would really appreciate those instructions so if anyone could please advice
me further?
--
View this message in context:
http://www.nabble.com/Acegi-integration-tf2119583s12275.html#a5860811
Sent from the Roller - User forum at Nabble.com.