帮助在 WSDL 中定义条件参数

发布于 2024-11-05 17:06:57 字数 430 浏览 1 评论 0原文

我正在定义 WSDL,它在操作中有 i/p 参数。 WSDL 将由 SOATest 进行测试。

查询: 我有一个有条件的参数,需要帮助定义。

我想要这样的东西.. 如果选择了“名称”,那么它应该强制用户选择“姓氏”,否则两者都将为空

Dummy Ex:

 <xs:simpleType name="FullName">
    <xs:restriction base="xs:string">
      <xs:enumeration value="Name" />
      <xs:enumeration value="LastName" />
    </xs:restriction>
  </xs:simpleType>

I am working on defining WSDL and it has i/p param in the operation.
WSDL will be tested by SOATest.

Query:
I have a param which is conditional and need help in defining.

I want something like this..
if Name is selected then it should force user to select LastName, else both will be null

Dummy Ex:

 <xs:simpleType name="FullName">
    <xs:restriction base="xs:string">
      <xs:enumeration value="Name" />
      <xs:enumeration value="LastName" />
    </xs:restriction>
  </xs:simpleType>

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

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

发布评论

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

评论(1

猥︴琐丶欲为 2024-11-12 17:06:57

使用 WSDL 或 XSD(WSDL 所依赖的)无法做到这一点。

有时您可以使用一些技巧,但它们比其他选择更糟糕。另一种方法是简单地在代码中验证是否选择了“名称”,则必须提供“姓氏”。

There is no way to do this using WSDL or XSD (which WSDL depends on).

There are sometimes hacks you can use, but they're worse than the alternative. The alternative is to simply verify in code that if Name is selected then Lastname must be supplied.

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