My entire app is working fine with AjaxSwing! Hasn't been an easy process, but wow this is amazing! Thanks a lot and keep up the great work

However, one last little bug. I added a login to my swing app, and upon running the login page in AjaxSwing, it doesn't appear to be reading the XML file that contains the password; thus not allowing the login. It should be working, so I am not sure what the issue is. Does Ajaxswing not permit such I/O processing?
Please see the snippets below. Full java file is attached. Note: the XML file "<user>.xml" is located in the folder "AjaxSwing/wcapps/res/"
[tt][tt]String user = username.getText(); // Grab user name from text field
String fileName = "res/"+user+".xml"; // Process into a file name
if ( (name.equalsIgnoreCase("password")) && (password.getText().equals(value))) {
EE4913App.launch2();
this.setVisible(false);
}
catch (FileNotFoundException e) {
// could not find user
wronguser.setText("** WRONG USER **");
}[/tt][/tt]