Nirupama Yalavarti wrote: > Thats a great anwere...THE servlet seems to ahve run > correctly( In fact it didnt show me any error..) > But where can I find the produced pdf? any idea?
In your browser? Look into the browser cache first. IEx is a bit fragile when it comes to showing PDF. Configure your webapp so that you can use an URL ending in .pdf for retrieving the PDF: http://my.host/some/path/to/servlet.pdf or http://my.host/some/path/to/servlet.pdf?xml=foo.xml&xsl=foo.xsl&dummy=.pdf More importantly, set the content type correctly to application/pdf, and buffer the PDF output in a ByteArrayOutputStream so that you can send the exact length to the browser (IEx will show a blank window if you fail to do this). J.Pietschmann --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]