Hannes Dorfmann
Hannes Dorfmann
Seems like Jackson nor Simple XML support doctype for same reasons ... We might could introduce something like interceptors
Can you show me the full compilation output? Most likely one of the annotation orocessors (tikxml or databinding) have outputted an error message but it might have been well hidden...
What is class `class BR`?
I'm pretty sure you have the following problem: 1. You have an error with TikXml and TikXml annotation processor writes an error message. However, you don't see it in the...
I'm not 100% sure what you mean with "dynamic" but yes, that is possible you have to annotate 2 classes though: ```java @Xml class Response1 { @PropertyElement String foo; }...
No, it's not supported and I think error responses in general as return value is not best practice for REST API's (use HTTP Status codes) With that said, reading such...
You could do some "semi automated parsing" if you know all possible root tags by writing your own `TypeAdapter` that reads the root tag and then delegates to other (generated...
Agreed! Fabian Terhorst [email protected] schrieb am Do., 2. Juni 2016, 20:16: > And for maps moshi use Type[] keyAndValue = > Types.mapKeyAndValueTypes(type, rawType); > > — > You are receiving...
It's on my TO DO list, but has low priority ... I'm working right now on other things towards an `1.0` release, but will try to fix this before releasing...
Ok, so latest `0.5.5-SNAPSHOT` adds pretty the same API as Moshi has (Also a class `Types` to create such generic parameterized types). You can now register `TypeAdapter` and `TypeConerter` by...