I feel quite overwhelmed with the variety on technologies I would need to use for the above task. I've searched the stack overflow stocks but couldn't pinpoint a solid check list of steps to do this.
I would like to get an overview of the steps/tools that need to be used when inserting a word document into a database.
I thought about:
- reading the word file as a FileStream.
- deserializing it into an xml object (word ml).
- somehow (not sure how) insert the word ml into a xml column in sql server.
is it possible to read word ml using the XMLSerializer object ? how would I then insert it to the database ?
Edit: I actually need to perform operations on the stored data like finding nodes using xpath, hence my need to store it as xml...