It seems a message from PostGres JDBC Driver, saying that it needs user
and password to connect to DB.. add the following to your
requestinterceptor line ( using the appropiate name & pass for you DB
installation )
connectionName="name"
connectionPassword="password"
You will end with something like :
<RequestInterceptor
className="org.apache.tomcat.request.JDBCRealm"
debug="99"
driverName="org.postgresql.Driver"
connectionURL="jdbc:postgresql://localhost:5432/mysite_userdb"
userTable="users"
userNameCol="user_name"
userCredCol="user_pass"
userRoleTable="user_roles"
roleNameCol="role_name"
connectionName="name"
connectionPassword="password"
/>
( it's slightly documented on
<http://localhost:8080/doc/JDBCRealm-howto.html> and in conf/server.xml
)
Saludos ,
Ignacio J. Ortega
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]