Weblogic错误403 - 禁止 [英] Weblogic Error 403--Forbidden

查看:982
本文介绍了Weblogic错误403 - 禁止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在weblogic上运行Java EE应用程序。该应用程序在Tomcat上运行正常。我已经定义了war文件以包含weblogic.xml。此文件包含以下代码: -

I am trying to run a Java EE application on weblogic. The application works fine on Tomcat. I have customized the war file to include weblogic.xml. This file includes the following code:-

<container-descriptor>
    <show-archived-real-path-enabled>true</show-archived-real-path-enabled>
</container-descriptor>

我还更改了应用程序属性文件中的配置,以反映容器正在侦听的端口。
server.port = 7001
server.modjk.enabled = false

I have also changed the configuration in properties file of the application to reflect the port on which container is listening. server.port=7001 server.modjk.enabled=false

我的web.xml文件包含以下代码: -

My web.xml file includes the following code:-

<servlet>
    <servlet-name>olatservlet</servlet-name>
    <servlet-class>org.olat.core.servlets.OLATServlet</servlet-class>

    <!-- Set the load order -->
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>olatservlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>olatservlet</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

当我最初在weblogic 11g上运行war文件时,我得到了一个nullpointer异常。但是,当我从lib文件夹中删除XerceImpl.jar时,我可以部署该文件。现在我能够成功部署应用程序。我将weblogic中的上下文根命名为war文件的名称。当我尝试在其测试选项卡中打开weblogic生成的链接时,出现以下错误: -

When I was initially running the war file on weblogic 11g, I was getting a nullpointer exception. However, I could deploy the file when I removed XerceImpl.jar from the lib folder. Now I am able to deploy the application successfully. I name the context root in the weblogic as the name of the war file. When I try to open the link generated by weblogic in its testing tab, I get the following error:-

错误403 - 禁止

Error 403--Forbidden

来自RFC 2068超文本传输​​协议 - HTTP / 1.1:

From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:

10.4.4 403禁止

10.4.4 403 Forbidden

服务器理解请求,但拒绝履行请求。授权无效,请求不应重复。如果请求方法不是HEAD并且服务器希望公开为什么请求没有得到满足,那么它应该描述实体中拒绝的原因。当服务器不希望明确拒绝请求的原因,或者没有其他响应适用时,通常会使用此状态代码。

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.

我想知道是否有人可以告诉我如何解决这个问题。

I was wondering if someone could tell me how to resolve this issue.

推荐答案

我知道回答这个问题已经很晚了。但我正在回答我的小知识,希望能帮助那里的人。

I know it is very late to answer this question. But I am answering with my little knowledge in the hope it will help someone out there.

你应该在web.xml文件的welcome-file-list中定义起始页面例如,如果client.jsp是运行项目时要显示的页面,则web.xml文件中welcome-file-list中的第一行应该是

You should define the starting page in welcome-file-list in web.xml file.For eg, if client.jsp is the page to be displayed when you run your project, the first line in welcome-file-list in web.xml file should be

<welcome-file-list>
    <welcome-file>client.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
 </welcome-file-list>

这篇关于Weblogic错误403 - 禁止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆