This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Sockets and Internet Protocols and the fly likes SocketException:socket closed Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Sockets and Internet Protocols
Reply Bookmark "SocketException:socket closed" Watch "SocketException:socket closed" New topic
Author

SocketException:socket closed

Nimish Patel
Ranch Hand

Joined: Jun 29, 2005
Posts: 84
Hi,
I am using HttpClient API.I have pasted part of some code below.
I am getting this SocketException:socket closed on "client.executeMethod(getMethod)".How can I handle this exception ? Could you please help me ?



HttpClient client = new HttpClient();
GetMethod getMethod = new GetMethod(url);
getMethod.setFollowRedirects(true);
startTime = System.currentTimeMillis();
byte[] responseBody = null;
String response = null;

try {
int statusCode = client.executeMethod(getMethod);
}
catch(Exception e) {
}

I would be really greatful for it.Thanks....


Regards
Nimish PATEL
Nimish Patel
Ranch Hand

Joined: Jun 29, 2005
Posts: 84
Please help me.What is cause of socket closed exception ???
Joe Ess
Bartender

Joined: Oct 29, 2001
Posts: 8264

I tried your code, what there is of it, and it works fine.
according to the HttpClient Documentation:
Transport exceptions are those caused by input/output failures such as an unreliable connection or an inability to complete the execution of an HTTP method within the given time constraint (socket timeout). Generally transport exceptions are non-fatal and may be recovered from by retrying the failed method. . .
Generic transport exceptions in HttpClient are represented by the standard Java java.io.IOException class or its sub classes such as java.net.SocketException and java.net.InterruptedIOException.

So it sounds as if HttpClient can't connect to the URL you are specifying. Can you connect with a browser? Can you use HttpClient on other URL's? Have you tried reading the User's Guide (especially the troubleshooting guide), the Wiki and the mailing lists?


"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
Nimish Patel
Ranch Hand

Joined: Jun 29, 2005
Posts: 84
Thanks a lot for your giving valuable time.I will greatful for it.

I can access this site using browser.It is intranet site.It is working fine in browser.Other sites,It is working fine, but only one intranet site,It is giving this exception.Continue last three days I am trying,but I am not successful.I can't understand.

Thanks joe,

Regards
NIMISH PATEL
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: SocketException:socket closed
 
Similar Threads
How to access a page with Windows Integrated security?
org.apache.commons.httpclient response not getting
Trying to figure out why Im getting "cannot be resolved" error
Calling IIS web page from java (that is deployed in Weblogic) using Windows security
Http Connection