XMLCoder icon indicating copy to clipboard operation
XMLCoder copied to clipboard

Easy XML parsing using Codable protocols in Swift

Results 65 XMLCoder issues
Sort by recently updated
recently updated
newest added

I have some XML that looks like this: ```xml bar ``` And the corresponding struct: ```swift struct Unit: Codable { var id: String var name: String var note: String? }...

Hi, I have a some simple XML (no namespace features etc) of around 1MB. But it takes around 0.7s to decode a single XML. This is too long for me....

I am using a xml api with a possible nullable date tag. Up to version 0.9.0 it was no problem decoding the data but since 0.10.0, I am getting the...

Currently the project has not been set to build the libraries for distribution. If we set it to "Yes", then XCode will generate the necessary files for different versions of...

Hello there and thanks for providing this great package! I have a 108mb (language dictionary with just under 5 million rows) xml file that takes over an hour to decode....

The xml file I'm working with contains a lot of `` style abbreviations inside the DOCTYPE tag that don't seem to get picked up. Is there any configuration I have...

Hi, Friends, For XML string, ``` 123 Cat in the Hat Kids Wildlife Two bored children have their lives turned upside down when a talking cat comes to visit them....

Hi, I was trying to decode a value which included 2 decodable types: ```swift struct Foo: Codable, DynamicNodeEncoding, DynamicNodeDecoding { let id: Int? let parentid: Int? let name: String? let...

more info needed

How do I handle encoding and decoding an element and attribute with the same name but different types? ``` ``` Example XML ``` ``` Here is what I have done...

I am getting this kind of XML from an ancient SOAP server: ``` <uesb2b:response xmlns:uesb2b="http://services.b2b.ues.ut.uhg.com/types/plans/" xmlns="http://services.b2b.ues.ut.uhg.com/types/plans/">
 <uesb2b:st cd="GA" />
 <uesb2b:obligId val="01" />
 <uesb2b:shrArrangementId val="00" />
 <uesb2b:busInsType val="CG" />
 <uesb2b:metalPlans typ="Array"...

bug