Re: Response and file downloads

2004-11-01 Thread Justin Ruthenbeck
Luc, At 11:42 AM 11/1/2004, you wrote: I am having a wee problem with using the response. I have a form on a page, with a submit button to download a file. That file is being pulled from a database and pushed to the response. The problem I am having, I just used that response to submit the page,

RE: Response and file downloads

2004-11-01 Thread Luc Foisy
Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you wrote: I am having a wee problem with using the response. I have a form on a page, with a submit button to download a file

RE: Response and file downloads

2004-11-01 Thread fzlists
questions possed to you Justin, just hoping to keep it alive) -Original Message- From: Justin Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you wrote: I

RE: Response and file downloads

2004-11-01 Thread Ben Souther
Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you wrote: I am having a wee problem with using the response. I have a form on a page, with a submit button to download

Re: Response and file downloads

2004-11-01 Thread David Wall
I know there is only a single response, thats why I want to create a new one :) Then you need to have the client create another request. How do other sites generate files on the fly (take it out of a database, or a report just run), on form submit, and send them down the line and not run into

RE: Response and file downloads

2004-11-01 Thread Justin Ruthenbeck
the previous page's options were ... there's really no contradiction in doing so. justin -Original Message- From: Justin Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you

Re: Response and file downloads

2004-11-01 Thread Jonathan Wilson
-Original Message- From: Justin Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you wrote: I am having a wee problem with using the response. I have a form on a page

Re: Response and file downloads

2004-11-01 Thread Frank W. Zammetti
-Original Message- From: Justin Ruthenbeck [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 2:56 PM To: Tomcat Users List Subject: Re: Response and file downloads Luc, At 11:42 AM 11/1/2004, you wrote: I am having a wee problem with using the response. I have a form on a page

Re: Response and file downloads

2004-11-01 Thread David Wall
You should be aware that IFrames are an IE-only thing. Won't work on any other browser AFAIK. Is that true? My impression is that iframes work on Mozilla, too. Anyway, I think you can accomplish the same thing as an IFRAME using an OBJECT tag, so that may be another way to return a page that

Re: Response and file downloads

2004-11-01 Thread Frank W. Zammetti
It *is* possible that Mozilla now supports iFrames, I haven't kept up with it's development. I do know for sure that they were originally an IE-only extension, so if Mozilla does support it, it represents a very rare case of Microsoft leading the pack :) I'm not sure about the object tag

RE: Response and file downloads

2004-11-01 Thread Chad Maniccia
, 2004 5:29 PM To: Tomcat Users List Subject: Re: Response and file downloads It *is* possible that Mozilla now supports iFrames, I haven't kept up with it's development. I do know for sure that they were originally an IE-only extension, so if Mozilla does support it, it represents a very rare

Re: Response and file downloads

2004-11-01 Thread Hassan Schroeder
Frank W. Zammetti wrote: It *is* possible that Mozilla now supports iFrames, I haven't kept up with it's development. Dude, you need to get out more :-) IFRAME is part of the HTML 4.0 spec: http://www.w3.org/TR/html4/present/frames.html#edef-IFRAME Old news. It works fine in Moz, Opera,

Re: Response and file downloads

2004-11-01 Thread Frank W. Zammetti
Hassan Schroeder wrote: Dude, you need to get out more :-) Wife, kids, house, day job, my own company off-hours... Getting out hasn't happened much for about eight years now :) IFRAME is part of the HTML 4.0 spec: http://www.w3.org/TR/html4/present/frames.html#edef-IFRAME Cool, I didn't

Re: Response and file downloads

2004-11-01 Thread Frank W. Zammetti
cross browser code. Supporting multiple browsers is like having to test and write every application in Java, VB, and C. Chad -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 5:29 PM To: Tomcat Users List Subject: Re: Response and file

RE: Response and file downloads

2004-11-01 Thread Pawson, David
-Original Message- From: Justin Ruthenbeck It seems like what you want is for a user to fill out a form, click submit, then be presented with a new, fresh, form again ... with the file download on the side. If you have determined that you absolutely