Axis2 在耳朵中部署时看不到任何服务
我已经用 axis2 (1.4.1) 创建了简单的 Web 服务,没有 aar 文件,我在正确的目录中只有“services.xml”(WEB-INF/services/MyService/META-INF )。在 Weblogic 8.1 上部署 WAR 后,服务工作正常,没有任何问题,并且在 /listServices 上可见。当我使用相同的 WAR 作为 EAR 的一部分时,我收到下一个错误:
“找不到该服务 端点参考(EPR)”
且 /listServices 为空。WAR 中包含的其他 servlet 不受影响,并且在部署为 WAR 或 EAR 时以相同方式工作。
I have crated simple webservice with axis2 (1.4.1), without aar files, i have just "services.xml" in proper directory (WEB-INF/services/MyService/META-INF). After deploying WAR on Weblogic 8.1 service works without any issues and is visible on /listServices. When I use same WAR as a part of EAR I get next error:
"The service cannot be found for the
endpoint reference (EPR)"
and /listServices is empty. Other servlets contained in WAR aren't affected and work same way when deployed as WAR or EAR.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
轴需要在 EAR 中展开 WAR。但是,这不适用于 WL 8.1,它会在部署期间引发异常。我最终修改了 axis,以便它在开始搜索服务之前提取战争 - 丑陋的黑客,但工作完美。
Axis requires exploded WAR in EAR. However that won't work with WL 8.1, it throws an exception during deployment. I ended up modifying axis so it extracts war just before it starts searching for services - ugly hack but works flawlessly.