weblogic 部署后出现Error 404–Not Found

建站服务器

Error 404–Not Found 错误

From RFC 2068 Hypertext Transfer Protocol — HTTP/1.1:

10.4.5 404 Not Found

The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.

If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.

遇到一个问题,就是将一个webservice工程发布到linux下weblogic中,

1) 发布在本地tomcat中:http://localhost:8080/npmService/services可以正确的得到wsdl文件一览

2) 发布Weblogic后,修改web.xml文件

< !DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">后weblogic能够正常启动

3) 通过:http://localhost:8080/console,能够正常登录到weblogic控制台

4) 输入http://localhost:8080/npmService/services出现上面404错误

5) 解决方法

添加weblogic.xml文件到web.xml同级目录,内容为:

http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">

 

< jsp-descriptor>

< jsp-param>

< param-name>pageCheckSeconds

< param-value>0

< /jsp-param>

< /jsp-descriptor>

< context-root>/npmService< /context-root>

 

6) 总结:404错误首先明确方向,是请求路劲错误。

新网虚拟主机

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注