Re: Servlet called twice

2001-10-25 Thread Joerg Pietschmann
Hello all, two weeks ago, Kuehnberger <[EMAIL PROTECTED]> wrote: > My servlet can produce html or pdf, depending on a parameter which is > passed. > I read the discussion about that problem, but whatever I tried my > servlet is still called twice when the output is pdf, > if the out output is html

Re: Servlet called twice

2001-10-10 Thread Kuehnberger
lacretaz [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 09, 2001 7:02 AM > To: [EMAIL PROTECTED] > Subject: Re: Servlet called twice > > On Tuesday 09 October 2001 10:52, Kuehnberger wrote: > > my servlet is still called twice when the output is pdf, > > Are you us

Re: Servlet called twice

2001-10-10 Thread Kuehnberger
The problem is also in IE 6 > The problem with the servlet being called twice is a problem with Internet > Explorer and the way it handles foriegn MIME types. in IE 5.5 and below the > document is requested and one IE sees that it is a MIME type it does not > handle it then loads Acrobat and re-r

RE: Servlet called twice

2001-10-09 Thread Savino, Matt C
ect: AW: Servlet called twice > > > Try using Netscape instead of IE! :-) > > -Ursprüngliche Nachricht----- > Von: Smith, Paul R [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 9. Oktober 2001 12:40 > An: '[EMAIL PROTECTED]' > Betreff: RE: Servlet called twic

Re: Servlet called twice

2001-10-09 Thread Alex McLintock
--- Kuehnberger <[EMAIL PROTECTED]> wrote: > Hi, > > My servlet can produce html or pdf, depending on a parameter which is > passed. ok. > I read the discussion about that problem, but whatever I tried my > servlet is still called twice when the output is pdf, > if the out output is html the s

Re: Servlet called twice

2001-10-09 Thread Kuehnberger
To be more specific my servlet does like decribed below. The generation of the html or org.w3c.document is done in two different classes. The class that generates the html is called just once, but the one that creates the org.w3c.document twice. The servlet is invoked like: http://localhost/servle

Re: Servlet called twice

2001-10-09 Thread Eric Dalquist
The problem with the servlet being called twice is a problem with Internet Explorer and the way it handles foriegn MIME types. in IE 5.5 and below the document is requested and one IE sees that it is a MIME type it does not handle it then loads Acrobat and re-requests the document. There is no rea

RE: Servlet called twice

2001-10-09 Thread Ajad, Aravind
Use HTTP POST instead of GET. That seems to be working. Aravind -Original Message- From: Bertrand Delacretaz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 09, 2001 7:02 AM To: [EMAIL PROTECTED] Subject: Re: Servlet called twice On Tuesday 09 October 2001 10:52, Kuehnberger wrote

Re: Servlet called twice

2001-10-09 Thread Bertrand Delacretaz
On Tuesday 09 October 2001 10:52, Kuehnberger wrote: > my servlet is still called twice when the output is pdf, Are you using Internet Explorer as a client? If yes, this is a known problem: IE often does additional requests for non-HTML files. AFAIK this is hard, if not impossible, to solve on t

RE: Servlet called twice

2001-10-09 Thread Smith, Paul R
I have _exactly_ the same problem. Nothing I have tried has worked. Please help - Paul Smith -Original Message- From: Kuehnberger [mailto:[EMAIL PROTECTED]] Sent: 09 October 2001 09:52 To: [EMAIL PROTECTED] Subject: Servlet called twice Hi, My servlet can produce html or pdf, dependi