Код: Выделить всё
Socket outSock = null;
try {
// that runs on the port 1600
// create the socket on Baker
outSock = new Socket("baker2.alphatrade.com",1600);
} catch(Exception e) {
out.println("<p align=center><font color=lime size=4> There was an error connecting to Alphatrade's authorize service on baker2.alphatrade.com:1600. Please contact Robert G. Jakabosky <br>");
out.println(e+"</font></p>");
}
Код: Выделить всё
Socket outSock = null;
try {
// that runs on the port 1600
// create the socket on Baker
outSock = new Socket("baker2.alphatrade.com",1600);
} catch(Exception e1) {
try {
// create the socket on Rainier
outSock = new Socket("rainier2.alphatrade.com",1600);
} catch(Exception e2) {
out.println("<p align=center><font color=lime size=4> There was an error connecting to Alphatrade's authorize service on baker2.alphatrade.com:1600 and rainier2.alphatrade.com:1600. Please contact SysAdmin <br>");
out.println(e+"</font></p>");
{
}