Can anyone recommend any Java or .NET library that I can use to ingest a file - which could be in a csv, excel or tab-delimited format - and create an XML file that has a specific schema.
In other words, I don't want to just create an XML file but I need to add additional elements to the file following an XSD file.
I've looked at some of the existing stackoverflow answers and they seem to be creating simple XML files (e.g with an element for each column) rather than ones based on an existing XSD file.
Many Thanks!