Can anyone help me out? I have a small utility application that uses Jt400-6.7.jar to connect to the AS400 server.
See the following code
private Connection buildConnection(String url, String userName, String password) throws ClassNotFoundException, SQLException { Connection connection = null; Class.forName("com.ibm.as400.access.AS400JDBCDriver"); DriverManager.setLoginTimeout(10000);
The above code works, but if the username or password is incorrect, the application creates the following login screen. This happens when DriverManager.getConnection () is executed.
It is not possible to post an image, but it looks something like this.
Signon to the system X System: AS400Server User ID: User ID Password: ******** O Default User ID O Save Password OK Cancel
Can someone tell me how to disable this feature?
source share