Hi, I have a problem with the prompt property when I try to connect to the AS/400 with com.ibm.as400.access.AS400JDBCDriver(). Im running a java based web application which retreives data from a AS/400. The operation system in the AS/400 is 4.4.0 and security lvl is 30. If I connect with a JDBC connection and have the prompt property set to "false", like: java.sql.DriverManager.registerDriver(new com.ibm.as400.access.AS400JDBCDriver()); systemConnectInit = java.sql.DriverManager.getConnection("jdbc:as400://" + system + "/" + defaultLib + ";" + "prompt=false;.......", userId, password); the user profile get status *disabled, if I leave a incorrect password. The prompt propery have to be "false", cause I'm running one a web server when I make the connection. Still, I want to have 3 attempts before the user profile gets *disabled. Do anyone know how to solve this? Thanks in advance / Leif Sandvik

Reply With Quote