views:

44

answers:

2

Working a on a Google Web Toolkit project. I want to show a word document in a webpage. Does not have to be the MS Word 2007 view. Any way to do this?

+1  A: 

I'm afraid you can't display a Work document in a webpage without using some kind of ActiveX plugin. And that solution would work only for your clients that use IE on Windows...

Olivier Croisier
How would I combine an ActiveX plugin with a GWT project? The reqs of IE on windows is not an issue.
Holograham
A: 

Why don't you use RPC; whereby you send the Word Document to the server first, upon which, it would be converted into HTML and sent back to the Client. You can refer to this question to know how to convert the word document into HTML.

Catfish