Oracle 9i - running .NET version of Aspose.Words within PL/SQL

Hello
We are very new users of Aspose and have a requirement to translate an oracle database column containing HTML text into another database column containing the same contents, but in WordXML.
We are running Oracle 9i and wondered whether anyone has experience in accessing Aspose.Words .NET from within PL/SQL.
Thanks
Peter

Hi
Thank you for your interest in Aspose.Words. I think that you can try using .NET stored procedures to achieve this. The following article could be useful for you.
http://www.oracle.com/technology/pub/articles/mastering_dotnet_oracle/williams_sps.html
You can convert HTML to WML using the following two lines of code.

Document doc = new Document("in.html");
doc.Save("out.xml", SaveFormat.WordML);

I hope this could help you.
Best regards.