EDN Admin
Well-known member
I have c# function where xml is recieved as input and returns the output xml and Inside the function I will transform input xml using xslt file on my machine ex: C:/test.xslt<br/>
But I am not able to succeed. Once output file is generated using xslt i need to return the output xml without storing
.<br/>
System.Xml.Xsl.XslCompiledTransform XSLTransform = new System.Xml.Xsl.XslCompiledTransform(); ;
<br/>
XSLTransform.Load("C:\test.xslt");
myXslTransform.Transform(input, "C:\output.xml");
Please let me know your suggestions.
Thanks in Advance
View the full article
But I am not able to succeed. Once output file is generated using xslt i need to return the output xml without storing
.<br/>
System.Xml.Xsl.XslCompiledTransform XSLTransform = new System.Xml.Xsl.XslCompiledTransform(); ;
<br/>
XSLTransform.Load("C:\test.xslt");
myXslTransform.Transform(input, "C:\output.xml");
Please let me know your suggestions.
Thanks in Advance
View the full article