weblogic 部署后出现Error 404–Not Found
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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错误首先明确方向,是请求路劲错误。
以上是关于weblogic 部署后出现Error 404–Not Found的主要内容,如果未能解决你的问题,请参考以下文章
weblogic部署struts2项目訪问action404错误
Node.js前端程序通过Nginx部署后刷新出现404问题的解决办法