Word .docx becomes .zip when opened from web
I am using Microsoft Office 2007. There is a problem with the attachment. My friend have send me some word files. I am using Yahoo here. When I open the attachment the files are downloaded on m pc in zip file format. I can see a document attached. They must be downloaded as docx only. Why they are converting to zip file. Is it some kind of problem.
re: Word .docx becomes .zip when opened from web
One way to solve that problem is just adding the following lines in the web.xml config file to recognize the .docx format :
<mime-mapping>
<extension>dib</extension>
<mime-type>image/bmp</mime-type>
</mime-mapping>
<mime-mapping>
<extension>doc</extension>
<mime-type>application/msword</mime-type>
</mime-mapping>
<mime-mapping>
<extension>docx</extension>
<mime-type>application/msword</mime-type>
</mime-mapping>
<mime-mapping>
<extension>dtd</extension>
<mime-type>text/plain</mime-type>
</mime-mapping>
re: Word .docx becomes .zip when opened from web
When you said "....just adding the following lines in the web.xml config file...." where abouts is that files located, is it the server side or PC.
Any assistance would be appreciated