在 wsdl 中哪里放置版本信息?

发布于 2024-11-19 03:22:32 字数 389 浏览 1 评论 0原文

我有一个 Web 服务,其中定义位于 wsdl 文件中,架构位于外部 xsd 文件中。

在 xsd 文件中,有 schema 标记,它提供了一个属性“version”,我可以用它来记录当前版本。 wsdl 格式(WSDL 1.1)有类似的东西吗?如果不是,出于文档目的存储通用版本属性的最佳位置是什么?

请记住,我不想实现向后兼容性,就像 http://blogs.iona.com/sos/20070410-WSDL-Versioning-Best-Practise.pdf。我只想记录 wsdl 中的版本。

I have a web service where the definitions are located in the wsdl-file and the schema in an external xsd-file.

In the xsd file, there is the schema tag, which provides an attribute 'version' that I can use to document the current version. Is there something similar in the wsdl format (WSDL 1.1)? If not, what is the best place to store a general version attribute for documentation purposes?

Please keep in mind that I do not want to achieve backward compatibility, like it is described in http://blogs.iona.com/sos/20070410-WSDL-Versioning-Best-Practise.pdf. I just want to document the version in the wsdl.

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

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

发布评论

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

评论(1

眼趣 2024-11-26 03:22:32

我不知道用于指定版本的专用 WSDL 构造。相反,您可以使用 documentation 元素来实现此目的,可能采用如下结构化形式:

<wsdl:service name="MyService1" ...>
  <wsdl:documentation>
    A service for ...

    Author: John Doe

    Version: 1.2

    History: 1.2 2011-07-07 Added operation foo()
             1.1 2011-15-04 Added optional attribute bar
             1.0 2011-10-02 Initial release

  </wsdl:documentation>
  ...
</wsdl:service>

I'm not aware of a dedicated WSDL construct for specifying the version. Instead you could use the documentation element for this, maybe in a structured form like this:

<wsdl:service name="MyService1" ...>
  <wsdl:documentation>
    A service for ...

    Author: John Doe

    Version: 1.2

    History: 1.2 2011-07-07 Added operation foo()
             1.1 2011-15-04 Added optional attribute bar
             1.0 2011-10-02 Initial release

  </wsdl:documentation>
  ...
</wsdl:service>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文