views:

54

answers:

1

I'm using XML::XML2JSON in Perl to convert JSON data to XML, I am passing through the following data (snippet):

{"question":{"isrequired":{"$t":"0"}}}

and when I use the XML:XML2JSON->json2xml function to convert the JSON data into XML, I get the following (snippet):

<isrequired/>

I need to retain the "0" element in the "isrequired" tag, because at times, I will have empty JSON elements, and need the empty XML tag. I think the documentation is a bit vague (either that, or I don't understand it), but is this possible to do with this module?

I would appreciate the help. Thanks.

+1  A: 

Try a "zero but true" value instead of "0":

" 0 "
" 0"
"0E0"
mobrule
Thanks mobrule, I appreciate the help. I'll just need to add some extra code on my part and it'll work! Cheers.
Kevin C