Convert WordML to pdf

Hi,
We need a Java (API) tool to convert WordML (not Word docx or OOXML) to pdf. It should be easy to use, not needs to use XST as intermediary. It will be for commercial use. I checked your Website. It doesn’t mention WordML. Please give me some info about that. Thank you .

This message was posted using Aspose.Live 2 Forum

Hello
Thanks for your inquiry. The latest (beta) version of Aspose.Words for Java already supports WML format. You can try using the following code:

// Open document
Document doc = new Document("in.xml");
doc.save("out.pdf", SaveFormat.PDF);

You can download this version from here::
https://releases.aspose.com/words/java
Best regards,