You may want to check that SQL Server is configured to listen for client connections over TCP/IP. It may just be configured for named pipes. The simple test from the client side (without disturbing dba
would be smth like this:
try {
System.out.println(“\nTrying to open a socket with host "
+ serverName + " and port " + portNumber + " …”);
Socket socket = new Socket(serverName, portNumber);
socket.close();
} catch (Exception e) {
fail(“Failed to open a socket. Here’s why:\n(Either there is no machine named '” + serverName
+ “’ or\nnothing is listening there on port "
+ portNumber +”)\n");
}
#webMethods#Flow-and-Java-services#Integration-Server-and-ESB