I have an application with a REST style inerface that takes XML documents via POST from clients. This application is written in Java and uses XML beans to process the posted message.
Now, the XML schema definition for a field in the message looks like this:
<xs:element name="value" type="xs:string" nillable="true" / >
How do I send a null value that meets this spec?
I sent <value xsi:nil="true" /> but this caused the CML parser to barf.