[Simple-support] how to limit deserialization depth?
Brought to you by:
niallg
|
From: Alain D. <ade...@gm...> - 2011-03-12 15:39:29
|
Hi
I'd like to limit the deserialization depth.
My XML looks like:
<content>
<elementA>valueA</elementA
<elementB>
<elementC>valueC</elementC>
</elementB>
</content>
I'd like to declare elementB as String and get <elementC>valueC</elementC>
as its value.
Is it possible and how do I manage this?
Alain
|