无法通过实时服务器发送请求

时间:2014-12-26 06:54:55

标签: jboss server

当我向http://localhost:8080/..发送请求时,它完美无缺

但是当我向http://10.68.5.39:8080/..

发送请求时

我收到错误..

IP地址10.68.5.39在Intranet中工作,端口8080正在打开

请参阅..

1 个答案:

答案 0 :(得分:3)

在standalone.xml文件中尝试将别名从 localhost 更改为 IP地址

<server name="default-server">
   <http-listener name="default" socket-binding="http"/>
       <host name="default-host" alias="localhost">
           <location name="/" handler="welcome-content"/>
           <filter-ref name="server-header"/>
           <filter-ref name="x-powered-by-header"/>
       </host>
</server>

它对我有用。