强制避免自封闭标签
我想知道是否有一种方法可以强制肥皂响应即使没有内容也不要使用自封闭标签。
例如,我想要
<xsd:string xsi:type="xsd:string" id="ID_4"></xsd:string>
而不是
<xsd:string id="ID_4" xsi:type="xsd:string" />
任何想法?
I want to know if there is a way to force the soap response not to use self-enclosing tags even if there is no content.
For Example, I want
<xsd:string xsi:type="xsd:string" id="ID_4"></xsd:string>
instead of
<xsd:string id="ID_4" xsi:type="xsd:string" />
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们在语义上是相同的 - 它们的意思完全相同相同的事情。
XML 标准甚至说这两者是可以互换的。
任何符合标准的 XML 解析器都不会关心您使用哪一个 - 为什么会关心呢?
They two are semantically identical - they mean exactly the same thing.
The XML standard even says that these two are interchangeable.
Any conformant XML parser will not care which one you use - why do you?