Replies: 1 comment
-
Here we have a similar issue, but embedded documents are signed xml documents, in this case it is important to treat them differently to prevent serialization/deserialization from somehow invalidating the signature of the document. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working with a funky XML RPC API that will sometimes return embedded XML documents inside other elements, without applying any special encoding. These embedded documents often contain xml comments and processing instructions.
For example, this XML document that embeds a full XML schema inside the
<TypeInfo>
element:For my use cases, I typically want to access/store these embedded documents as text, rather than fully parsed XML nodes, eg:
Is this possible with xsdata? If so what would an example model look like?
Beta Was this translation helpful? Give feedback.
All reactions