-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with .
in tag names
#50
Comments
The strange thing is the I've debuged even further and looked at the |
Ok for anyone that is running into the same issue a wrokaround is to use
instead of
|
I know what is going on. This is related to the mechanism that turns This mechanism is implemented purely in the policy that you configure the format with. The default basically sees a You can override this in The default implementation of Unfortunately it is invisible to formats whether the |
As this is basically an edge case in a (best effort) heuristic to resolve a design limitation of the serialization framework I'm not sure what I can do, except suggesting to use the available mechanisms to either provide your own naming policy, or provide annotations where appropriate. What I have done is to split |
issue #50 in that it makes it a bit easier to override the naming heuristics.
Maybe this can be added to the documentation? |
issue #50 in that it makes it a bit easier to override the naming heuristics.
issue #50 in that it makes it a bit easier to override the naming heuristics.
I recently run into an issue where the XML I am consuming has tags like this:
DISPLAYCONTACT.FIRSTNAME
My entity defines them like this:
in the same entity class all XML elements that do not have a
.
work fine and getting deserialized accordingly but all the once with.
just getting ignored/skipped.The text was updated successfully, but these errors were encountered: