RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Christian Billen
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Kvalheim Sent: Monday, February 26, 2001 3:31 PM To: Orion-Interest Subject: How do I map a .doc extension to a .jsp execution Hello I have the following problem. We have a certain number of Word documents

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Jeff Schnitzer
, 2001 5:03 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution I haven't tried this but try to modify the config/global-web-application.xml and add a mapping for the jsp servlet: servlet-mapping servlet-namejsp/servlet-name

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Fyffe Carl
PROTECTED]] Sent: Tuesday, February 27, 2001 5:03 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution I haven't tried this but try to modify the config/global-web-application.xml and add a mapping for the jsp servlet: servlet-mapping servlet

RE: How do I map a .doc extension to a .jsp execution

2001-02-27 Thread Darren Gibbons
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Fyffe Carl Sent: Tuesday, February 27, 2001 11:18 AM To: Orion-Interest Subject: RE: How do I map a .doc extension to a .jsp execution Guys, I could be wrong here, but you may want to try just setting the mime type that is sent to the browser. I

How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Christian Kvalheim
Hello I have the following problem. We have a certain number of Word documents in out database that we want to output to the browser. Everything is fine, we get the document as a blob from the database and into the jsp variables. However for internet explorer to recognise the file as a word

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread Matt Krevs
2001 7:31 AM To: Orion-Interest Subject: How do I map a .doc extension to a .jsp execution Hello I have the following problem. We have a certain number of Word documents in out database that we want to output to the browser. Everything is fine, we get the document as a blob from the database

RE: How do I map a .doc extension to a .jsp execution

2001-02-26 Thread cybermaster
Christian, In your reponse object you have to set the MIME type (content type) to "application/vnd.ms-word" This might only work with MS Office 2000. You can find more (with some digging) at msdn.microsoft.com Peter