Opening a word document file through a JSP/servlet

2000-11-30 Thread Sanjay Gomes
Hi guys Could someone help me in finding a solution for this I have a Word document file on Server. I want to open this file in a JSP Could this be done if yes so how TIA Sanjay === To unsubscribe: mailto [EMAIL

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Thompson Willard
TED]] Sent: Thursday, November 30, 2000 4:03 AM To: [EMAIL PROTECTED] Subject: Opening a word document file through a JSP/servlet Hi guys Could someone help me in finding a solution for this I have a Word document file on Server. I want to open this file in a JSP Could this be done if ye

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Sanjay Gomes
eReader("c:/Test.txt")); while((str=in.readLine())!=null) { out.print(str); } } } TIA Sanjay -Original Message- From: Thompson Willard [mailto:[EMAIL PROTECTED]] Sent: 30 November 2000 12:37 To: [EMAIL PROTECTED] Subject: Re: Opening a word document file through a JSP

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Thompson Willard
From: Sanjay Gomes [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 4:03 AM To: [EMAIL PROTECTED] Subject: Opening a word document file through a JSP/servlet Hi guys Could someone help me in finding a solution for this I have a Word document file on Server. I want to open this file in a

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Walker, Chris
nbench.com -Original Message- From: Thompson Willard [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 3:03 PM To: [EMAIL PROTECTED] Subject: Re: Opening a word document file through a JSP/servlet I don't think you have to transfer data from word document (that resides on the serv

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Sanjay Gomes
the information TIA sanjay -Original Message- From: Thompson Willard [mailto:[EMAIL PROTECTED]] Sent: 30 November 2000 15:03 To: [EMAIL PROTECTED] Subject: Re: Opening a word document file through a JSP/servlet I don't think you have to transfer data from word document (that resides

Re: Opening a word document file through a JSP/servlet

2000-11-30 Thread Mark Wutka
Use a FileInputStream instead of a FileReader to read the file, and from your servlet, call getOutputStream instead of getWriter. You almost had it except for the fact that you were using readers and writers. Mark On Thu, 30 Nov 2000, Sanjay Gomes wrote: Hi Thomson, Well What I want to do