I have a servlet which streams out to show doc or ppt in a browser .How can i force the browser to show it without that prompt every time asks user what to do( open or save)
I set my header this way
response.setHeader("Content-Type" , "application/msword; name=" + fileName
response.setHeader("Content-Length" , new Long(lenght).toString() );
response.setHeader("Content-Transfer-Encoding","7bit");
response.setHeader("Content-Disposition" , "inline; filename=" + fileName +)
but it doesnt work
Does anybody have any idea?