是否可以在 Glassfish 3.1 WebServices 中发布原始 WSDL?

发布于 2024-11-19 01:38:40 字数 173 浏览 4 评论 0原文

我从 WSDL 开始,并使用 wsimport 生成 Java 工件。然后我实现了 WebService 并将其部署到 glassfish 3.1。 glassfish 获取 java 元素并从这些元素重新生成 wsdl。

我可以说服 glassfish 向全世界发布原始的 wsdl,而不是“重新设计的”吗?谢谢!

I started with a WSDL and used wsimport to generate the Java artificats. Then I implemented the WebService and deployed it to a glassfish 3.1. The glassfish takes the java elements and regenerates a wsdl from these elements.

Can I convince the glassfish to publish the original wsdl to the world, instead of the 'reengineered' ones? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲墙角沉默 2024-11-26 01:38:40

实际上这很容易。但对于那些被这个问题绊倒的人,我会亲自回答。

我们使用 wsdlLocation 属性来说服 glassfish 分发原始 wsdl 文件,而不是从 java 类重新生成的文件。

@WebService(name = "wsName", targetNamespace = "http://ws.unknown.com/",
        serviceName="wsServiceName", portName="wsPortName",
        wsdlLocation="wsDefinition.wsdl")

Actually it's pretty easy. But for those, who stumble over this question, I will answer it by myself.

We used the wsdlLocation attribute to convince glassfish to distibute the original wsdl file and not the regenerated one from the java classes.

@WebService(name = "wsName", targetNamespace = "http://ws.unknown.com/",
        serviceName="wsServiceName", portName="wsPortName",
        wsdlLocation="wsDefinition.wsdl")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文