Hello All,
Currently I am working on DB Driven C++ API, where it also involves XML processing functionalities. That’s where I came across Boost Serialization.
We have a very peculiar story here, and it goes like this: We have 2 identical APIs. One in C# and another in C++. Both are DB driven similar APIs.
There are instances, where any XML data serialized on C++ platform needs to be de serialized on C# and vice versa. In C# life is straight forward; one needs no bothering about
serialization and de serialization.
I think in boost you can de serialize the XML document only if it is built using Boost Serialization. I think it is the case in C# also.
Is there any way out, where Boost Serialization can be customized?
Please forgive me if I am not clear in stating my problem statement!