piyush shirke

Greenhorn
+ Follow
since Aug 19, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by piyush shirke

Hi,

I have the following piece of code
InetAddress addr = InetAddress.getByName(server.getHost());
int port = Integer.parseInt(server.getPort());
SocketAddress sockaddr = new InetSocketAddress(addr, port);
socket = new Socket();
socket.connect(sockaddr, 5000);


When I run it as standalone java application(jar) trying to connect to the server(down). It throws IO Exception with message "connect timed out" . The exception is thrown after 5 secs.

When the application(jar) is loaded from jvm.dll(native code) trying to connect to the server(down). It throws IOException with message "Connection refused: connect"
The issue with this is exception is thrown immediately within a second.

The whole logic is based on the timeout parameter. Does anyone have idea what could be the reason of different behavior Or How to resolve this issue ?