This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / 用.net写了个Web Application, 安装在自己的机器上(在这台机上开发的),自己的机器上IE中显示Web Form没问题, 但从同一网内其他机器的IE上输入该地址, 显示 The page cannot be displayed, cannot find server or DNS error. 哪位DX能指点下, 可能是什么问题? 多谢
-burlingtonian(麦子);
2007-2-16
(#3501456@0)
-
what 地址?
-hisgood(just shut up);
2007-2-16
(#3501464@0)
-
http://localhost:8080/myweb :)))))))))))))))
-xinwei_w(dadu);
2007-2-16
(#3501504@0)
-
problem is localhost, localhost=127.0.0.1 which is the machine you are running on. if your application only listen on localhost:8080 ,then no one except the pc you are running on can access it.
-curtwu(清扬);
2007-2-16
(#3501811@0)
-
试过IP或机器名都不行, eg. http://<IP address>/<App name> and http://<Machine Name>/<App Name>. any ideas? thanks.
-burlingtonian(麦子);
2007-2-17
(#3503216@0)
-
try this: http://<IP address>:8080/<App name> and http://<Machine Name>:8080/<App Name>, or change the TCP Port from 8080 to 80 in IIS properties setup.
-marsher(marsher);
2007-3-1
(#3527193@0)
-
firewall
-hail(Back to Toronto);
2007-2-16
(#3501492@0)
-
if you put http://ip address, nothing else, can you see the default web page (something saying "under construction")?
-yr2much(伟大的豪哥的哥);
2007-2-16
(#3501498@0)
-
豪哥啊,试了http://<IP Address>, 同样显示 The page cannot be displayed, 没看到default 的under construction。 可能会是什么原因? 谢谢!
-burlingtonian(麦子);
2007-2-17
(#3503232@0)
-
put a test htm file under root folder, by default it's under c:\inetpub\wwwroot. Can you get it displayed correctly by "http://ip/testPage.htm"? That way we know if it is IIS issue or application issue.
-yr2much(伟大的豪哥的哥);
2007-2-17
(#3503946@0)
-
应该是IIS的问题。在本机type in http://ip/test.html works, 但从其他机器 type in http://ip/test.html to access this page, shows The page cannot be displayed. 而且我的web application同一个setup file, 安装置另一台机器上works fine. any idea? thanks!
-burlingtonian(麦子);
2007-2-19
(#3505521@0)
-
Whether it's pingable is not a requirment for TCP traffic. However if ping is enabled and you still can't ping, then focus on your network connectivity. Is the gateway/routing table correct on both source and destination boxes?can you telnet into port 80?what is the full message on "the page cannot be displayed" page? DNS error? server not found? server internal error?
-yr2much(伟大的豪哥的哥);
2007-2-19
{147}
(#3506613@0)
-
at the bottom of the page, it shows "Cannot find server or DNS Error". I could not telnet my machine, but I cannot telnet the other good machnine either (the one in which I am able to install web application. thanks for your help.
-burlingtonian(麦子);
2007-2-21
(#3509705@0)
-
见内 ==〉
-yr2much(伟大的豪哥的哥);
2007-2-21
{933}
(#3510238@0)
-
thanks a lot. please see the inside for details.
-burlingtonian(麦子);
2007-2-22
{582}
(#3511286@0)
-
"IP routing not enabled" is not related and that is the default setting. what I am asking is the routing table, ip addresses, and gateway address of both boxes. It provided me no information by "hop 0, or hop 1" I need to see the screen output.Besides firewall, some anti-virus and filtering software, such as PeerGuardian, will block certain traffic as well.
-yr2much(伟大的豪哥的哥);
2007-2-22
{115}
(#3511341@0)
-
it is fine now after i reinstall anti-virus software. thanks a lot!
-burlingtonian(麦子);
2007-2-26
(#3520457@0)
-
Off windows firewall on your machine.
-tjhong(TjHong);
2007-2-16
(#3501520@0)
-
在firewall中已设置了允许Port 80, 同时也试过了将 firewall 设成 Off 了, 还是不行. 但装在另一台Windows Server 2003 上就可以. 不知是不是我的是Windows XP Professional的原因? 但以前在 XP Professional 上也装过可以用的.
-burlingtonian(麦子);
2007-2-17
(#3503225@0)
-
可能是IIS的设置问题,或者匿名访问的用户权限问题。
-lmx(流氓兔);
2007-2-17
(#3503245@0)
-
嗯,就是不知道什么地方设置有问题,匿名访问的用户权限已设, 在Authentication Methods 中 Anonymous access, and Integrated Windows authentication 已选。这点设置的和另一台能运行的机器上一样。郁闷中..
-burlingtonian(麦子);
2007-2-17
(#3503341@0)
-
1. can u ping? 2. can u open any static page on that server from another machine?
-sowen(sowen);
2007-2-17
(#3503748@0)
-
1. 试过 Ping, ping 不到。开始也认为一定要ping到才行,不过后来看另一台机器也ping不到, 在那机器上安装了同一个Web Application后,可以运行的。不知是什么原因。2. 没试过static page, 周一上班后去看看。谢谢
-burlingtonian(麦子);
2007-2-17
(#3503921@0)
-
你ping的的是FQDN还是hostname。如果FIREWALL OFF的话,你能用网页访问,就能PING得到。可能是IIS的问题,如果不是DEFAULT WEB SITE的话,检查一下HOST HEADER NAME是什么
-pnpn(双飞雁);
2007-2-28
(#3526460@0)
-
Turn Firewall Off in Control Panel->Administrative Tools->Services->Windows Firewall/Internet Connection Sharing
-radish(radish);
2007-2-19
(#3505199@0)