only works in my browser
Hi! I've just deployed my first (a hello world) application, it's only a "hello" jsp page for testing the steps for building it and it works fine, I start my web browser and open the URL http://localhost:8080/hello and there it is. If I change the localhost for my PC name (mymachine) it also works, but this works in my browser in my PC where I've installed the AS, If I open thehttp://mymachine:8080/hello URL in another PC I get the usual IE error can't find the server, why's that? excuses for this question...
[526 byte] By [
drholiday] at [2007-11-26 6:46:27]

# 1
This simply means that the other PC is unable to resolve the name of your PC (where appserver is installed). One thing you can try is to use the IP address of your PC instead of the name in the URL, something similar to this:
http://129.145.133.208:8080/hello
You should be able to get the IP address of your PC by running ipconfig command in command prompt Window (on your PC, of course).
Full "fix" would be to tweak the network configuration of the other PC in such a way that it can resolve system names into IP addresses properly, but that's likely to be non-trivial task.