-
Notifications
You must be signed in to change notification settings - Fork 100
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 parsing XML with attributes and a string value #5
Comments
ciauri
added a commit
to ciauri/XMLParsing
that referenced
this issue
Mar 15, 2018
- In the presence of attributes and child elements, chardata values will be keyed on a custom value provided by the user via the new property `characterDataToken ` on the XMLDecoder
ciauri
added a commit
to ciauri/XMLParsing
that referenced
this issue
May 18, 2018
- In the presence of attributes and child elements, chardata values will be keyed on a custom value provided by the user via the new property `characterDataToken ` on the XMLDecoder
Please, any solution to this?! |
Any solution for this ? |
This library is apparently no longer maintained. The issue is fixed in my XMLCoder fork with the coding key value intrinsic feature. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<SomeElement SomeAttribute="value">some string value</SomeElement>
ends up only decoding as a string. I would expect to be able to have a struct like:I receive the following error:
"Expected to decode Array<Any> but found a string/data instead."
My xml is structured like this:
And my struct is:
The text was updated successfully, but these errors were encountered: