I have attempted to use the BindFO(XmlDocument, XmlDocument) but no matter what I try I get a blank pdf file.
Here is a sample of my code:
Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
XmlDocument myXPathDoc = new XmlDocument();
XmlDocument myXslTrans = new XmlDocument();
myXPathDoc.Load("C:\\1277\\11400.xml");
myXslTrans.Load("C:\\1277\\11400.xsl");
pdf.BindFO(myXPathDoc, myXslTrans);
pdf.Save("C:\\1277\\11400.pdf");
I have attached the the xml and xsl so you can test.
Thank you.