<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hi,
<br>&nbsp;&nbsp;&nbsp; Kan U Help Mi Please ?
<p>&nbsp;&nbsp;&nbsp; I am developing a search engine which will have a
XML
<br>&nbsp;&nbsp;&nbsp; search form linked with a Servlet. The Servlet should
take input
<br>&nbsp;&nbsp;&nbsp; from the textfield of the XML form, scan the database
for matches &amp;
<br>&nbsp;&nbsp;&nbsp; generate an XML page with the results found.(Dynamically)
!
<p>&nbsp;&nbsp;&nbsp; Ideally it should not make a file of that XML but
should throw
<br>&nbsp;&nbsp;&nbsp; it directly to the client m/c. In this case I am
not able to link it
<br>&nbsp;&nbsp;&nbsp; with the already created XSL stylesheet which will
already be
<br>&nbsp;&nbsp;&nbsp; on the server (Static).
<p>&nbsp;&nbsp;&nbsp; Even with making a separate XML file I am not able
to display
<br>&nbsp;&nbsp;&nbsp; the XML page through Servlet, though directly it
could be displayed
<br>&nbsp;&nbsp;&nbsp; with the same address typed in Address field of
the browser !!
<p>&nbsp;&nbsp;&nbsp; The code I am using for Servlet is............
<br>&nbsp;&nbsp;&nbsp; (This makes a separate file)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; doPost(HttpServletRequest,
HttpServletResponse <b>response</b>)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {-------
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
--------
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
String <b>file</b> = "c:\\xml\\file.xml";
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>fw</b>
= new FileWriter(file);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
pw = new PrintWriter(<b>fw</b>);
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pw.println("&lt;?xml
version=.....--------");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Making
an
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
pw.println("-------------------------");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
// XML file.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
---------------------------------------------
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>response</b>.sendRedirect(<b>file</b>);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>&nbsp;&nbsp;&nbsp; This code gives an error : xsl not found.
<br>&nbsp;&nbsp;&nbsp; (Which is there in the same dir)
<br>&nbsp;
<br>&nbsp;&nbsp;&nbsp; Alse How can I do this without making a separate
.xml file ?
<p>&nbsp;&nbsp;&nbsp; THANKS !!
<p>-Om
<br>&nbsp;
<br>&nbsp;
<br>&nbsp;</html>