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

I am facing an issue, which I'm not sure whether it is caused by a bug/missing options or by misconfiguration or other user error. I need to deserialize XML files...

Hello. I use your library in one of my projects and have faced with an interesting issue. In my case I have files with DTD declaration with wrong Url. I...

I want to migrate to the new version, but I get this exception: `e: file:///Users/sol/IdeaProjects/xmpcore/src/commonMain/kotlin/com/ashampoo/xmp/internal/DomParser.kt:47:27 This function is internal to the XmlUtil modules. No api stability is guaranteed` The `target`...

``` FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':radio-sdk'. > Could not create task ':radio-sdk:obfuscateJar'. > Could not resolve all files for...

I'm trying to parse XML for Android string files, here's an example: ``` Test with argument %1s here test 2 ``` NOTE - the XML value within each tag is...

I have some XML ```xml Entry ``` Which notably has NO namespace definitions (or other `lang`s) and a corresponding data class ```kt @Serializable @XmlElement(value = true) @SerialName(value = "entry") data...

indev

By default, empty elements output both a start and end tag: ```kotlin @Serializable class Foo( @XmlElement val bar: String ) xml.encodeToString(Foo("")) ``` Result: ```xml ``` Is it possible to output...

indev

On a few projects now, I've been forced to extend `DefaultXmlSerializationPolicy` just to change the value of `defaultPrimitiveOutputKind`. I think it would be a bit nicer to allow users to...

indev

https://github.com/pdvrieze/xmlutil/blob/master/examples/JACKSON.md The deprecation message is clear - "Don't use or implement this, use the 3 parameter version".

i am using the library in a compose-desktop application and i am trying to scope out if i can enable proguard the following exception is thrown at runtime ``` Exception...