| Author |
Issue in JAXB Boolean Parsing
|
Remya sri
Greenhorn
Joined: Feb 03, 2012
Posts: 3
|
|
JAXB is accepting the value "truce" and return boolean value "true".How this is happening?How does Jaxb Convert boolean Values?
Is this an issue or this is how the conversion happens.
Please have the code fragment written for testing
forgive me for my naming conventions
Below are the XSD and XML
My output is "true"
|
 |
g tsuji
Ranch Hand
Joined: Jan 18, 2011
Posts: 357
|
|
[1] I bet you have never get it to the stage of validating anything at all. And what you observe has nothing to do with the schema. It has everything to do with your class com.pack1.SampleDTO where there is a method isHasNext() returning a boolean. That's all. xsd data typing has no bearing on the problem not to say conversion of anything. You can put truce, ecurt, true or anything there and the result would be the same.
[2] In the case of further development to the stage of validating, suffice it to mention that the schema (xsd) is invalid? It can never get pass the loading stage. What is the problem? I leave it to your own discovering.
|
 |
 |
|
|
subject: Issue in JAXB Boolean Parsing
|
|
|