Talk:Main Pagessss
From Kasai documentation
hola, alguien sabe como configurar la aplicación web para administración de kasai???
[edit] Installation issue
hi, I just start using kasai, and come across some problems. Do you know what is the issue here?
I want to test UserValidator.java under the sample. I just copy the code to eclipse and I add kasaixxxx.jar to the build path.
public class UserValidator {
public static void main(String args[]){
try {
String login = args[0];
String password = args[1];
KasaiFacade.getInstance().checkPasswordUser(login, password, null);
System.out.println("User successfully validated");
} catch (Exception e){
System.out.println("User could not be validated, reason: " + e.getMessage());
}
}
}
In this line:KasaiFacade.getInstance().checkPasswordUser(login, password, null); I get the following error. The type com.manentia.commons.xml.XMLException cannot be resolved. It is indirectly referenced from required .class files
do you know how to fix this? I guess it may be something related to the configure file, I am not sure. Does any one know about how to set the configure file?
From the error it seems you are missing the Manentia Commons JAR. Check out the dependencies.

