Quoting Lynn Young <[EMAIL PROTECTED]>: > > Hello, > > when IE deals with plug-ins, it sends the request twice or three times, > depends on the version of IE. > > I have a code, need to call acrobat reader plug-in. I don't want to implement > it as a helper application, because I need to print something > silently(without print dialog box). The content is generated dynamically by > servlet, I don't need a name, nor do I need to save the content. So I think I > have to do something from the servlet side, does anybody know how to return > only the header of contype, but not the body of the request? This is actually > a servlet question, but I just post it here and hopefully somebody already > got work done on this and would help me.
Do I understand your question right? You want an action on the server when a user clicks a link on the browser, but you don't want anything to be returned to the browser. In that case I return a status code 204: SC_NO_CONTENT response.setStatus(HttpServletResponse.SC_NO_CONTENT); Bruno ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
