I am trying to pull information from another site. When I try and do
URL url = new URL(\"theSite\");
url.getContent();
It throws a Conne
It can mean several things:
telnet is your friend, what happens when you:
telnet thesite 80 [or whatever port you require] GET /URL HTTP/1.0 Host: thesite
See if the site is up and running or not by opening it in the browser. The other thing you might want to check is for any firewall stopping java process to connect.