XML Mappers

  • Thread starter Thread starter James D. Williams
  • Start date Start date
J

James D. Williams

Are there any Open Source tools available for XML to XML mapping using
XSL?

I should convert one type of XML message to another type. One solution
could be XML Mapping tool.

Cheers,
 
for .NET v1.1 use System.Xml.Xsl.XslTransform class
for .NET v2.0 use System.Xml.Xsl.XslCompiledTransform class

transform is as simple as

XslCompiledTransform xct = new XslCompiledTransform();
xct.Load(xsl-stylesheet-filename);
xct.Transform(input-filename, output-filename);

regards,
Dries
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top