xmlutil icon indicating copy to clipboard operation
xmlutil copied to clipboard

XML Serialization library for Kotlin

Results 52 xmlutil issues
Sort by recently updated
recently updated
newest added
trafficstars

I know that we now have instructions to create dynamic tags based on variables but overall this requires a lot of boilerplate code. I was wondering if there could be...

enhancement

Currently I can't use the serialization plugin in jlink due to split package problem. It could be fixed by package renaming.

enhancement
help wanted

Hi Fist of all, thank your work, I love. I have a problem serialization a map, from Kotlin to XML. I don't know if I am wrong or is a...

enhancement
indev

Like kotlinx.serialization.json, it would be helpful to include the content when decoding, ideally the attribute/element (including its namespace) that failed. Given class: ```kotlin @Serializable data class A(val a: String, val...

enhancement

Hey, I expect the order of the encoded elements would be the same as the order of the declaration: ```kotlin @Serializable @XmlSerialName("Foo") data class Foo( @XmlElement @XmlSerialName("ServiceName") val serviceName: String?...

indev

I'm trying to simply parse a format like this: ``` this is the text value for fieldA this is the text value for fieldB this is the text value for...

Hi @pdvrieze. Thanks for this util. We have a need in our project to continue supporting 1.8.10 but running serialisation version 1.5.1. It should be v0.85.1, I believe. We can...

``` @Test fun testXmlMapSerialization() { @Serializable data class Container( @XmlOtherAttributes val attributes: Map ) val container = Container( mapOf( "key1" to "value1", "key2" to "value2", ), ) println("Original object: $container")...

bug
indev

The latest release of kotlin serialization 1.5.0 added a new interace called ChunkedDecoder which support decoding large data with the help of okio in smaller chunks. This prevents OutOfMemory Exceptions...

Hello! First of all all thanks for this amazing library! I was wondering if it's possible to have multiple names during parsing? Like `@JsonNames` in Kotlin.Serialization. Currently `@XmlSerialName` is not...