Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
385 views

Unable to connect to ftp server java

I should be able to successfully send and receive file to/from FTP server. But then, no changes occurred in the code and I started getting this : Error: java.net.ConnectException: Connection ...
1
vote
2answers
216 views

remote Tomcat server : java.net.ConnectException: Connection refused

I have been trying to find an answer to my question but couldnt. Now, my java web application runs perfectly on my local Tomcat server (6). It connects to a remote mysql database on db4free.net. ...
0
votes
1answer
65 views

Not able to access Cassandra server from Android app. Error : java.net.ConnectException: localhost/127.0.0.1:9160 - Connection refused

My Adnroid app is running on AVD and Cassandra server is running on Windows 7 (same machine) Below is the code snippet I have used for connecting to Cassandra client. TTransport tr = new ...
0
votes
2answers
240 views

Java TCP socket: java.net.ConnectException: connect: Address is invalid on local machine, or port is not valid on remote machine

I am creating socket using socket = new Socket(host, port, InetAddress.getLocalHost(), clientPort);. I want the socket to listen to particular port at client side. But when I use ...
0
votes
1answer
98 views

java.net.ConnectException : Validating Xml against XSD : local machine

I need to validate an XML against a local XSD and I do not have a internet connection on the target machine (on which this process runs). The code look like below : SchemaFactory factory = ...