I'm looking for some options for programmatically creating a Word document from a Silverlight 4 application. I found two approaches that at first seemed promising but didn't look as if they would work.
OpenKML SDK OpenXML SDK is not available for Silverlight at this time.
Word Automation through COM Interoperability
dynamic wordApplication = AutomationFactory.CreateObject("Word.Application");
Obviously, this requires that the Silverlight 4 application be allowed to work with elevated privileges, which is only available for applications outside the browser (which we donβt have)
My other thought is to give a request to a server service that does not have these restrictions. I wanted to check out any ideas before taking this path.
source share