> I have an user in my database as catalina.patiño, notice the ñ character, and > my CAS server seem not to authenticate it. Does anybody know what do I have > to make in order for CAS server to really authenticate it.
I imagine you will have to make the encoding in CAS match that of your database. CAS uses UTF-8 encoding on the JSP views, including the login form (casLoginView.jsp), so you might try changing that to match your database: <%@ page contentType="text/html; charset=YOUR_DATABASE_ENCODING" %> Let us know whether that solves the problem. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
