Read the following code snippet of a SOAP message:
<s:Envelope
xmlns:s="http://www.w3.org/2001/06/soap-envelope">
<s:Body>
<n:getQuotexmlns:n="urn:QuoteService">
<symbol xsi:type="xsd:string">
Mistristic
</symbol>
</n:getQuote>
<s:Header>
<m:transactionxmlns:m="soap-transaction"
s:mustUnderstand="true">
<transactionID>1234</transactionID>
</m:transaction>
</s:Header>
</s:Envelope>
Identify the error in the code.
Correct Answer: mustUnderstand is not an attribute of the transaction element
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More SOAP MCQ Questions