↧
Answer by Sergii Vashchyshchuk for How to handle multiple XML versions...
An alternative solution is to use a set of xslt scripts which would transform the old version of the xml to a newest one (by sequential applying scripts for transforming version N-1 to version N). In...
View ArticleAnswer by Ivo for How to handle multiple XML versions gracefully
If your version is a number, you could have something like public interface IOrderMessageHandler { void Handle( OrderMessage message ); }public class OrderMessageHandlerVersion123 :...
View ArticleAnswer by Merlyn Morgan-Graham for How to handle multiple XML versions...
Multiple ParsersIf you have X versions of the schema, you'll need X code paths to handle them.To pick your implementation you're going to have to have a switch statement somewhere. That switch could...
View ArticleHow to handle multiple XML versions gracefully
I have a scenario where I am starting with an Order Message. Over time the message could be modified (into different versions). What would be a good approach to see what version the message is and pass...
View Article
More Pages to Explore .....