Open gibbz00 opened 1 month ago
What do you need interoperability with other serialization formats for?
The first step is to build an REST-ish API server that translates commands from a simpler format such as JSON.
There are some of course some country/business specifics that need to be accounted for. Still, having most implementations upstream feels more appropriate.
I'm open to this in principle, but given that this is somewhat niche and will be a larger effort to review, I think this really needs some support mechanism in place (as discussed in #47). Happy to discuss what that could look like on a call or via email.
The move from quick-xml to instant-xml limited interop between other serialization formats.
I'm wondering if it would be appreciated if I send in a PR that derives
Serialize
Deserialize
for types that implementToXml
andDeserialize
Serialize
for types that implementFromXml
.We're building an interface for EPP, and not having to create DTOs of practically the same structure makes the process a lot easier. Granted, some custom serialization will still be need.