Bikash Paul wrote:
>
> I have three servlets. My 1st servlet converts xml
> file to html file. My 2nd servlet converts that html
> file to .rb(rocket edition) and my third servlet starts
> downloading of that .rb file.
>

 It's a little unclear from your description why you're
using three servlets when it looks like a single servlet
might work. Something along the lines of:

 public void doGet() {
   convert_file_from_xml_to_html();
   convert_html_to_rb();
   send_rb_file_to_client();
 }

 No need to use three servlets? You might also need to
consider that servlets allow multiple simultaneous
requests, so you're going to have to be very careful
with file names.

 You might want to consider a review of some of the
documents at:

 http://java.sun.com/products/servlet/technical.html

 Especially things like the "Fundamentals of Java Servlets"
tutorial. (You could also buy a book, but I'm getting
sick of hearing that as the answer to every question.
Books can be very useful, but there's definitely enough
material available online to get you started)

--
Christopher St. John [EMAIL PROTECTED]
DistribuTopia http://www.distributopia.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to