Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to java programming. I was trying to send a request to a servlet from a normal Java Class using the URL Connection.But when i run the code i get an error saying..

Exception in thread "main" java.net.ConnectException: Connection refused: connect
    at java.net.DualStackPlainSocketImpl.connect0(Native Method)
    at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:69)
    at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:337)
    at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:198)
    at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:180)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:157)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391)
    at java.net.Socket.connect(Socket.java:579)
    at java.net.Socket.connect(Socket.java:528)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:388)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:483)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:213)
    at sun.net.www.http.HttpClient.New(HttpClient.java:300)
    at sun.net.www.http.HttpClient.New(HttpClient.java:316)
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:992)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:928)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:846)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1296)
    at com.samsung.cloudroid.Reqhandler.sendRequest(Reqhandler.java:34)
    at com.samsung.cloudroid.Reqhandler.main(Reqhandler.java:44)
Java Result: 1

My code is as follows :

public class Reqhandler {
    private String requestURL = "http://localhost:8080/Client-Server/Serverhandler?";
    public Reqhandler(String url) {
        requestURL = url;
    }
    public Reqhandler() {
    }
    public String getRequestURL() {
        return requestURL;
    }
    public void sendRequest() throws Exception {
        StringBuilder queryString = new StringBuilder();;
        URL url = new URL(requestURL);
        queryString.append("param=").append(URLEncoder.encode("value", "UTF-8"));
        url = new URL(requestURL + queryString);
        URLConnection conn = url.openConnection();
        BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String inputLine;
        while ((inputLine = in.readLine()) != null) {
            System.out.println(inputLine);
        }
    }
    public static void main(String[] args) throws Exception {
        Reqhandler handler = new Reqhandler();
        handler.sendRequest();
    }
}

What is the error here ...?What is the point that i am missing...?

Any references/sample code is very welcome... Thank you

share|improve this question
have you tried connecting to another server (like google.com) to check, if your code is working? maybe there is a problem with the server you are connecting to, and it actually refuses the Connection – Simiil Oct 4 '11 at 15:18
Have you tried to open the given URL in a webbrowser, and does this work? – Gandalf Oct 4 '11 at 15:19
solved it..! Instead of using the localhost i used my ip address... – user976390 Oct 4 '11 at 15:24
though i do not know the reason why it is so ... – user976390 Oct 4 '11 at 15:24
This might be du to the fact that your server only listens on certain ips (this case you network ip but not on localhost). This is due to the fact that server are bind to a certain network gateway they listen on (your network ip and localhost are two different gateways).Most but not all server automatically listen on localhost but they don't have to. – Xeno Lupus Oct 4 '11 at 16:29
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.