微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

发布webservice接口时报错-HTTP Status 500 - File "/axis2-web/listSingleService.jsp" not found

报错内容如下所示:

HTTP Status 500 - File "/axis2-web/listSingleService.jsp" not found


type Exception report

message File "/axis2-web/listSingleService.jsp" not found

description The server encountered an internal error that prevented it from fulfilling this request.

exception

javax.servlet.servletexception: File "/axis2-web/listSingleService.jsp" not found
	org.apache.jasper.servlet.JspServlet.handleMissingResource(JspServlet.java:412)
	org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379)
	org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
	org.apache.axis2.transport.http.AbstractAgent.renderView(AbstractAgent.java:119)
	org.apache.axis2.transport.http.ListingAgent.processListService(ListingAgent.java:200)
	org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:260)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:728)

note The full stack trace of the root cause is available in the Apache Tomcat/7.0.37 logs.


一开始总以为是找不到axis2-web文件之类的错误,但是经过仔细排查是发布的路径出错。

正确路径为:http://servername:port/projectname/services/interfaceMethod?wsdl


PS:

servername: 本地为:127.0.0.1 或公网IP

port: Tomcat认为:8080 或因修改而异,如果为80可忽略不写

services: 为Meta-INT下新建services.xml,的名字

interfaceMethod:接口方法,根据services.xml中发布的方法正确填写即可。

欢迎拍砖。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐