I am converting MS Word documents to HTML, which I am then going to display in an I-frame in an HTML5 canvas, along with other interactive elements.
Of course the converted document will be a web page with html, css, image, etc files all contributing to the final display.
I am storing all of my multi-media in this application in GridFS in Mongodb. It is being served up by a servlet.
Is there a good strategy or implementation I can use to store in mongodb, all of the files that go into making up the web page? I thought about saving the directory in a zip file in GridFS, but I don't want to unzip in order to serve up the content.