Click here to Skip to main content
15,898,035 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do I create a batch program to transform XML to XML using XSLT? I am a novice at batches, but it is vitally important.

I know the theories behind running a batch, I just need to know the best tools and/or programming language to use to run this type of batch.
Posted
Updated 10-Sep-10 10:06am
v2

1 solution

Steps:
1. Find the XML to transform. Get it. (can be webservice response or in a text file located on an accessible path)
2. Get the XSLT (probably in a file located at accessible path)
3. Use the XSLT, apply on XML to get converted final XML.
4. Save the converted final XML for further use.

Now, for step3: applying XSLT to XML, if needed, you can find lots of links on web.
 
Share this answer
 
Comments
Sandeep Mewara 10-Sep-10 16:35pm    
Q:the best tools:
A:Any XML-XSLT related tool that does the job and is free or of least price

Q: programming language to use to run this type of batch
A: Any language that you know well to do the transformation. I would go for C#.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900