URL for accessing 1.4 server remotely

I want to access my newly installed 1.4 Enterprise Server. It is running on Windows 2000 Pro. I currently have to use //localhost:8080/ at my IE browser.Thanks.Tinh.
[186 byte] By [forum_for_tinh] at [2007-9-30 21:02:12]
# 1
Not sure what you want to do - you can use http://127.0.0.1:8080/ instead of what you showed.
ChuckBing at 2007-7-7 2:34:15 > top of Java-index,Desktop,Deploying...
# 2
What I want to do is I'd to allow other users on the web to access my server using the browser. Thanks
forum_for_tinhn at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 3

If you allow external access to your server, a user can access your computer at port 8080, using your URL (or IP), while the server is running.

If you don't have a static IP, of course that makes it more difficult, since your address can change. There are services that can be purchased that allow a user to access one if their static addresses, and then reroutes to you. Search for them on Google.

ChuckBing at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 4
Ok, Instead of using my IP number and port number, I want to use a URL like www.sda.com for users to access my server, where do I make this change on my server?Thanks.
forum_for_tinhn at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 5

You shouldn't need to make any change if it's working now with localhost and you are allowing external users to access the server. They would access using "http://www.sda.com:8080/". You have to specify the port since it's not listening on the http/html default (80).

If you have problems, then the server is probably misconfigured. Refer to server documentation for information on how to use it. You might also use Google to search for "server tutorial".

ChuckBing at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 6
ChuckBing, My question could be more simple. How do I make it " http://www.sda.com:8080" instead of localhost:8080? Thanks.
forum_for_tinhn at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 7

Your computer recognizes "localhost" as a term (a URL) that points to an IP number, "127.0.0.1" These are only valid in the local machine.

The same 2 things, IP and URL, identify your machine to other machines and the Internet, but they have different values. These values are usually assigned by the Internet provider you use. They are the values that are used by someone wanting to send information to you.

For you (at your machine) to access the server that's running on the same machine, you use localhost or 127.0.0.1

For someone at another machine to access the server that's running on your machine, they needs to use the URL or IP that identifies your machine to the Internet.

ChuckBing at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...
# 8
Ok, I do not know Amazon.com IP number. How did I get access to Amazon using by typing www.amazon.com at my browser? Tinh.
forum_for_tinhn at 2007-7-7 2:34:16 > top of Java-index,Desktop,Deploying...