如何使用 JBoss 公开 wsdl 文件
我的本地硬盘中有一个 wsdl 文件。我想使用 JBoss 服务器公开它,以便可以将它提供的 url 提供给打算使用公开方法的客户端。 我怎样才能做到这一点?
如果有人可以分享有关如何公开方法(使用 JBoss Server)的示例,我将不胜感激。
谢谢 -Aj
I have a wsdl file in my local hard disk. I would like to expose that using the JBoss Server so that the url which it gives can be given to clients who intend to use the exposed methods.
How can I achieve this ?
I would appreciate if anyone can share an example on how to expose methods(using JBoss Server).
Thanks
-Aj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将 WSDL 放置在 Tomcat Web 目录中,它将通过 HTTP(S) 公开。在 JBoss 4.x 上 - 该目录为/server//deploy/jboss-web.deployer/ROOT.war
If you place the WSDL in Tomcat web directory, it will be exposed over HTTP(S). On JBoss 4.x - that directory is
<jboss_home>/server/<your-instance-name>/deploy/jboss-web.deployer/ROOT.war
当我试图运行jboss。好吧,通过将最新的 jaxrpc(替换我拥有的)包含在认可的文件夹(lib)中解决了这个问题。
I was getting java.lang.NoSuchMethodError: javax.xml.namespace.QName.(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V error when I was trying to run the jboss. Well this was solved on including the latest jaxrpc(replacing the one which I had) in endorsed folder(of lib).