Re: newbie with a short question

2005-08-26 Thread Brian Cook
, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Allistair Crossley [mailto:[EMAIL PROTECTED] Subject: RE: newbie with a short question First I cause an open/save prompt with response.addHeader(Content-Disposition, attachment; filename=somebat.bat); Then I use the response.getOutputStream

RE: newbie with a short question

2005-08-26 Thread Robert Harper
: Re: newbie with a short question Couple of things 1. You will get better responses on this list if you review the posting guide at. This post is way to vague to get specific answers. So most people are not going to respond to it. http://jakarta.apache.org/site/mail.html 2. If I follow

Re: newbie with a short question

2005-08-26 Thread Hassan Schroeder
nick sturm wrote: ok, I have done the two things on that page: renamed the serverlet and deleted the comments around the cgi section of the web.xml config file. Uh, you probably want to *read* those comments :-) -- specifically !-- executableName of the exectuable used to run the -- !--

Re: newbie with a short question

2005-08-25 Thread nick sturm
the batch file. thanks, sorry I'm very new to this. -n On 8/24/05, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Allistair Crossley [mailto:[EMAIL PROTECTED] Subject: RE: newbie with a short question First I cause an open/save prompt with response.addHeader(Content-Disposition

newbie with a short question

2005-08-24 Thread nick sturm
I am new to any web server, but hopefully this question is easilly answered: If I wanted to make a link to execute a .bat file locally on the server when a link is pressed, how would I do so? I am making a pan/tiltable webcam and hope to use the siple controls shown here:

RE: newbie with a short question

2005-08-24 Thread Allistair Crossley
it without a content type as a open/save. You'd do this in a servlet. Allistair -Original Message- From: nick sturm [mailto:[EMAIL PROTECTED] Sent: 24 August 2005 17:21 To: Tomcat Users List Subject: newbie with a short question I am new to any web server, but hopefully this question

RE: newbie with a short question

2005-08-24 Thread Caldarale, Charles R
From: Allistair Crossley [mailto:[EMAIL PROTECTED] Subject: RE: newbie with a short question First I cause an open/save prompt with response.addHeader(Content-Disposition, attachment; filename=somebat.bat); Then I use the response.getOutputStream() and stream the bat file down