我刚刚遇到这个肥皂故障的例子,我对价值部分中名称空间的存在感到好奇,显然是为了强化这里存在的价值对应于某些命名空间/域。
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap='http://schemas.xmlsoap.org/soap/envelope'>
<soap:Body>
<soap:Fault>
<faultcode>soap:VersionMismatch</faultcode>
<faultstring, xml:lang='en">
Message was not SOAP 1.1 compliant
</faultstring>
<faultactor>
http://sample.org.ocm/jws/authnticator
</faultactor>
</soap:Fault>
</soap:Body>
</soap:Envelope>
请注意<faultcode>soap:VersionMismatch</faultcode>
部分。
该构造实际上是否适用于节点值?如果确实如此,是否有任何规则来管理其使用?
谢谢。