• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

java.net.ConnectException: Connection refused: connect

 
Ranch Hand
Posts: 246
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I had been using these eclipse indigo, oracle 11, and weblogic 9.2. I upgraded from Eclipse Indigo to Juno. Now my server debugger has started giving the following stack trace and the weblogic crashes:
-
|BL:|TS:8/2/12 9:15:25 AM EDT|LL:FATAL |TM:10.6.220.27-1343912944878|CN:com.techrx.model.service.net.ValidatingConnection|MT:getInputStream|MSG:Error with establishing connection|EX:
Exception 941041217
java.net.ConnectException
at com.techrx.model.service.net.ValidatingConnection.getInputStream(ValidatingConnection.java:236)
at com.techrx.model.service.ServiceThread$Job.run(ServiceThread.java:92)
at com.techrx.util.DefaultThreadPool.run(DefaultThreadPool.java:185)
at java.lang.Thread.run(Thread.java:595)

-
|BL:|TS:8/2/12 9:15:25 AM EDT|LL:SEVERE|TM:10.6.220.27-1343912944878|CN:com.techrx.model.service.ServiceInvocationHandler|MT:handleRunError()|MSG:Exception caught by RemoteHandler|EX:
Exception 376917531
java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.Socket.connect(Socket.java:524)
at sun.net.NetworkClient.doConnect(NetworkClient.java:155)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:388)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:523)
at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:640)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:983)
at sun.net.www.protocol.http.HttpURLConnection.getHeaderField(HttpURLConnection.java:1993)
at java.net.URLConnection.getContentType(URLConnection.java:479)
at com.techrx.model.service.net.ValidatingConnection.getInputStream(ValidatingConnection.java:235)
java.net.ConnectException: Connection refused: connect
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:501)
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1250)
at java.security.AccessController.doPrivileged(Native Method)
at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1244)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:932)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:367)
at com.techrx.model.service.net.ValidatingConnection.getInputStream(ValidatingConnection.java:307)
at com.techrx.model.service.ServiceThread$Job.run(ServiceThread.java:92)
at com.techrx.util.DefaultThreadPool.run(DefaultThreadPool.java:185)
at java.lang.Thread.run(Thread.java:595)

Please help me out to fix this issue.

Thanks for your time,

Naveen Katoch
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's just the same as the thousands of other people who have had that same problem with the identical error message. You're trying to connect to a database server which isn't running, or you didn't get the address or port correct when you tried to connect, or there's a firewall or some other network appliance blocking the connection.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic