Penrose 1.1 Migration
Engine Configuration
Previously conf/server.xml contains the following adapter configuration:
<engine/>
The above configuration has been replaced by the following configuration:
<engine>
<engine-name>DEFAULT</engine-name>
<engine-class>org.safehaus.penrose.engine.DefaultEngine</engine-class>
</engine>
<engine>
<engine-name>PROXY</engine-name>
<engine-class>org.safehaus.penrose.engine.ProxyEngine</engine-class>
</engine>
Adapter Configuration
Previously conf/server.xml contains the following adapter configuration:
<adapter name="JDBC"> <adapter-class>org.safehaus.penrose.connector.JDBCAdapter</adapter-class> </adapter> <adapter name="JNDI"> <adapter-class>org.safehaus.penrose.connector.JNDIAdapter</adapter-class> </adapter>
The above configuration has been replaced by the following configuration:
<adapter name="JDBC"> <adapter-class>org.safehaus.penrose.jdbc.JDBCAdapter</adapter-class> </adapter> <adapter name="LDAP"> <adapter-class>org.safehaus.penrose.ldap.LDAPAdapter</adapter-class> </adapter>