Re: redirectig to WORD files

2005-01-27 Thread Ovidiu EFTIMIE
For the word document to automatically open in the browser you should do this on the client side : - double click on My Computer - Tools menu ->Folder Options -> File Types - Search for the DOC extension and then click on Advanced. Uncheck : Confirm open after download. Ovidiu On Wed, 26 Jan 20

Re: redirectig to WORD files

2005-01-26 Thread Erik Weber
Jim Barrows wrote: On Wed, 26 Jan 2005 16:24:21 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi all I try to redirect my response to a word doc file.But after setting contexttype and using response.sendRedirect(docWordURL) , I get white page; What I want is open this word document on a c

Re: redirectig to WORD files

2005-01-26 Thread Erik Weber
--- From : [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : 26 Jan 2005 16:38:01 +0100 Subject : Re: redirectig to WORD files "[EMAIL PROTECTED]" writes: Hi all I try to redirect my response to a word doc file.B

Re: redirectig to WORD files

2005-01-26 Thread [EMAIL PROTECTED]
what i want is open direcltly in a new browser the WORD document? -- Initial Header --- >From : [EMAIL PROTECTED] To : "Struts Users Mailing List" user@struts.apache.org Cc : Date : 26 Jan 2005 16:38:01 +0100 Subject : Re: redirectig

Re: redirectig to WORD files

2005-01-26 Thread Jim Barrows
On Wed, 26 Jan 2005 16:24:21 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi all > I try to redirect my response to a word doc file.But after setting > contexttype and using response.sendRedirect(docWordURL) , I get white page; > What I want is open this word document on a click of a lin

Re: redirectig to WORD files

2005-01-26 Thread Guillaume Cottenceau
"[EMAIL PROTECTED]" writes: > Hi all I try to redirect my response to a word doc file.But after > setting contexttype and using response.sendRedirect(docWordURL) , I > get white page; What I want is open this word document on a click of a > link in a normal jsp.I call the action that has to redir

Re: redirectig to WORD files

2005-01-26 Thread Will Stranathan
Could you show us the relevant parts of your config? And anything in the logs? What I typically do is rather than redirect, make a DownloadAction and put any downloadables under /WEB-INF (or in a database or somewhere) so that the user can't type in a URL to do directly do it. Then, just mak

redirectig to WORD files

2005-01-26 Thread [EMAIL PROTECTED]
Hi all I try to redirect my response to a word doc file.But after setting contexttype and using response.sendRedirect(docWordURL) , I get white page; What I want is open this word document on a click of a link in a normal jsp.I call the action that has to redirecting me to that file. Any idea?