i am able to install db2 v8.1 on my window 2000 machine. and use
type 4 driver which come with installation com.ibm.db2.jcc.DB2Driver,
i have a client try to start an app server on his machine and
connection to my machine which is db server to retrive data with
coding
Class.forName(jdbcDriver);
catalogConn = DriverManager.getConnection(Url, username, password);
the url is jdbc:db2://172.16.4.86:50000/hd1100pd, but got below error,
CLI0616E Error opening socket.
Explanation: Cannot open the socket to server, server may be down.
but if i using the same coding and start the app server on my machine,
i have no problem connect to database. why is that?