I have a request body that is being converted from JSON to XML.
The ObjectRootElementName I am trying to use has a colon in it (something:another).
It's throwing an invalid XML structural format. Is there any way around this? What I am trying to create is an XML format of:
<something:another>
<data>
</data>
</something:another>
Thanks.