In a jsp application i want to calculate digested passowrds dynamically According to the Realm How To ... i write this code in a jsp :
<% String digest = org.apache.catalina.realm.RealmBase.Digest(request.getParameter("password"), "MD5"); %>
Here is the result :
org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet error:
[...] package org.apache.catalina.realm does not exist [...]
[javac] String digest = org.apache.catalina.realm.RealmBase.Digest(request.getParameter("password"), "MD5");
[javac]
How can i fix that ? catalina.jar is not in tomcat classpath ?
thks
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
