访问我的简单Web应用程序时遇到问题 . 我已经开发了一个在index.html里面的hello world应用程序 . 这在web.xml文件的welcome-file-list中定义 . 在通过eclipse将我的Web应用程序部署到weblogic 12C中时,它已部署 . 我能够看到使用weblogic admin gui console部署我的应用程序 . 但是当我尝试访问应用程序(即)helloworld页面时,我在网页中显示以下错误 .

错误403 - 禁止从RFC 2068超文本传输协议 - HTTP / 1.1:10.4.4 403禁止服务器理解请求,但拒绝履行请求 . 授权无效,请求不应重复 . 如果请求方法不是HEAD并且服务器希望公开为什么请求没有得到满足,那么它应该描述实体中拒绝的原因 . 当服务器不希望确切地说明请求被拒绝的原因,或者没有其他响应适用时,通常会使用此状态代码 .

<?xml version="1.0" encoding="UTF-8"?>
   <web-app xmlns:xsi="w3.org/2001/XMLSchema-instance"; 
       xmlns="java.sun.com/xml/ns/javaee";  
       xmlns:web="java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
       xsi:schemaLocation="java.sun.com/xml/ns/javaee java.sun.com/xml/ns/javaee/web-app_3_0.xsd"; id="WebApp_ID" version="3.0"> 
  <display-name>ExtJSTestProject</display-name>
  <welcome-file-list> 
     <welcome-file>index.html</welcome-file>
  </welcome-file-list> 
</web-app>

请帮助我 . 谢谢 .