帮助在 WSDL 中定义条件参数
我正在定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.