I'm getting the following error in my catalina log, while trying to set up the app for the first time:
DatabaseUtils-> ERROR(1), line: 2 message: The server's client_encoding parameter was changed to UTF8. The JDBC driver requires client_encoding to be UNICODE for correct operation.
I've checked the available encodings on the same system, and a few others and "UNICODE" is not an available encoding although "UTF8" is. Everything I've read in the Postgres docs implies that UTF8 /is/ Unicode, though I admit I'm not familiar enough with unicode to know for sure...
I've tested a couple different OS+Postgres combinations and I get the same error using either:
Team Elements 3.1.1
Debian Testing + Postgres 8.1.3
Gentoo 2006.1 + Postgres 8.1.4
Is this perhaps a simple string comparison where it is expecting "UNICODE" but getting "UTF8" or is there something else wrong?
-Mike