Wrapping Arbitrary XML within XML

后端 未结 6 672
感动是毒
感动是毒 2021-01-05 07:53

I need to embed arbitrary (syntactically valid) XML documents within a wrapper XML document. The embedded documents are to be regarded as mere text, they do not need to be p

6条回答
  •  自闭症患者
    2021-01-05 08:31

    Consider using XInclude instead of trying to embed an XML document inside another. The XInclude parse="text" attribute will force the XML to be treated as text, not markup.

提交回复
热议问题