| Author |
Regarding the BeatBox Server IP Address - Head First Java
|
Dinesh Kumar Tadepalli
Greenhorn
Joined: Jun 17, 2009
Posts: 15
|
|
Hi, I have coded (and learned) the BeatBox with (chat) program from Head First Java. If I want to give the beat box program to my friends in other locations, should I change the IP address and the send the code to them. or can i just send the code which I am using.
I feel we cant use 127.0.0.1 IP address to send it to others.. Please clarify.
thanks
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16817
|
|
I feel we cant use 127.0.0.1 IP address to send it to others.. Please clarify.
127.0.0.1 is the loopback address. From any machine, you can get to the same machine using that address.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
Dinesh Kumar Tadepalli
Greenhorn
Joined: Jun 17, 2009
Posts: 15
|
|
I have one more basic question!? Do my friends whom I send the Beatbox code should run the music server tooo? or is it just me who will run the music server?
thanks
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16817
|
|
Dinesh Kumar Tadepalli wrote:I have one more basic question!? Do my friends whom I send the Beatbox code should run the music server tooo? or is it just me who will run the music server?
thanks
If your friends will be using 127.0.0.1 as the connection address, then your friend's server can only connect to your friend's server. They won't be connecting to your server. They won't be connecting to each others server. The client can only connect to the same server as the client.
That's why the address is a loopback address.
Henry
|
 |
Kalabaw moo
Ranch Hand
Joined: May 26, 2009
Posts: 61
|
|
|
You need to ask your friend's WAN IP address and use that IP address in your beatbox program to connect to your friend. Your friend should have the client for the beatbox.
|
 |
 |
|
|
subject: Regarding the BeatBox Server IP Address - Head First Java
|
|
|