I have a java program(swing) that connects to a remote host. This program was working just fine on my windows 7 box. However, after I installed VirtualBox, it failed to connect to the remote box; On investigation we found it started "binding" itself to the VirtualBox IP address rather than the "Wireless LAN Adapter wireless network connection" that it previously did.
I wrote a test program which connected to the same remote host and this program worked fine despite Virtual Box.
public static void main(String[] args) throws UnknownHostException, IOException {
Socket testSock = new Socket("10.86.149.206", 7547);
System.out.println("connected!");
}
Question : How do I tell the java swing program which IP it should use as the source IP address ?
for what it's worth, we use jdk 1.6
UPDATE :
Eventually, I had to uninstall VirtualBox in order to get the Java Swing program to connect to the remote host :-(
UPDATE 2 :
I was wondering if I could specify a system property so the java program would know what to do.
UPDATE 3:
in case anyone was wondering, I don't have access to the swing program's source code. I would like to regulate its behavior externally, if possible.**