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 have my `data class` that has: ```kotlin @Serializable @XmlSerialName( value = "project", namespace = POM_XML_NAMESPACE, ) data class ProjectObjectModel(...) ``` But, some very old `pom.xml` do not provide any...

How to parse a tag which can have multiple names. Specifically for example: For a tag named "link:Stat" some of my XML documents have fully qualified name: \ some of...

First of all, I would like to thank you for this excellent library, it greatly simplifies XML serialization and deserialization. However, I'm facing a challenge when dealing with XSDs and...

enhancement

I'm dealing with parsing XML in the wild that is occasionally inconsistent about specifying the correct/expected namespace for certain tags, or for that matter, any namespace at all. While I'd...

there is a similar thing in the scheme, can I somehow hold it? Suppose I make a special object where these attributes will be, and I will indicate this object...

In my use case I need to use @Contextual on Java datetime, BigInteger, BigDecimal, UUID and Any types with custom serializers, but it leads to an error.

**TLDR**: Library user experiences performance issues and requests support for kotlinx-io streaming primitives. --- As one part of making an app multiplatform, I replaced Java HttpUrlConnection + XML pull parsing...

I'm sorry for such a basic question, but I'm getting a bit confused with the terms used in the `README.md`. I believe "tag" (like ``) and "attribute" (like ``) are...

Hi, is there any interest in serializing values so that they are compatible with XML Schema types? There are at least two scenarios where I've noticed xmlutil not adhering to...

This did work with 0.86.3: ```kotlin @Serializable data class Box( @Contextual @XmlElement val i: Instant ) @Test fun a() { val box: Box = XML.defaultInstance.decodeFromString( """ 2023-11-02T15:56:49.364+01:00 """.trimIndent() ) }...

bug
indev