SimonCockx

Results 46 comments of SimonCockx

@cowtowncoder Thanks. That sounds perfectly reasonable.

@JooHyukKim Just to be clear: this is a feature request - not an issue. I started off with working code. As described in this thread, there exist two alternative implementations...

On the serialization side, I did manage to get something working. The problem is that `IndexedListSerializer#unwrappingSerializer` returns itself, which makes sense for JSON, but could be better for XML. I...

See my comment in https://github.com/FasterXML/jackson-dataformat-xml/issues/676#issuecomment-2438049500. At the moment I'm using a custom `SerializerFactory` to "hack in" some solutions to that issue. :)

> But I guess I am not sure which aspects of `SerializerFactory` configuration you are referring to? No custom factory is used, and although some set methods probably set things...

I've implemented a solution, but it involves quite a bit of copy-pasting and overriding of Jackson internals. It might give an idea of what it takes to support this though,...