<DIV>
<DIV>Dear Ivan,</DIV>
<DIV>Thanks again for quich reply. As per your suggesstion I have changed my simple-search.jsp file. But it gives compilation error.</DIV>
<DIV>I tell you what I did. I have instatiated cms obeject and then used your code</DIV>
<DIV>CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);</DIV>
<DIV>out.println (cms.readProperty(doc.get("abs_path"),"Title"); </DIV>
<DIV>out.println (cms.readProperty(doc.get("abs_path"),"Description"); </DIV>
<DIV>Better you just go through my JSP file I am attaching herewith. Please correct it and send me across. Thanks in advance.</DIV>
<DIV>Regards,</DIV>
<DIV>Ritwik</DIV>
<DIV> </DIV>
<DIV>=================== JSP Code========================</DIV>
<DIV><%@ page import="net.grcomputing.opencms.search.lucene.SearchHelper, org.apache.lucene.search.Hits,<BR>    org.apache.lucene.document.*, com.opencms.flex.jsp.*, java.util.Date" %><BR><%<BR>CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);</DIV>
<DIV>// This class has a bunch of useful methods for searching.<BR>SearchHelper search = new SearchHelper(cms);</DIV>
<DIV>// Get the GET/POST parameter named "q"<BR>String query = request.getParameter("q");<BR>if(query != null) {<BR>    // This does a text search using the query provided. <BR>    // org.apache.lucene.hits are returned.<BR>    Hits hits = search.doSimpleSearch(query);<BR>    //out.println("Hits");</DIV>
<DIV>    int i, j = hits.length();</DIV>
<DIV>    if(j == 0) {<BR>        out.println("<h2>Your search found no matches. Please try again.</h2>");<BR>    } else {<BR>        float score;<BR>        Document doc;<BR>        String tLastMod;<BR>        if(j == 1)<BR>            out.println("<h2 class=\"search-mathces\">Your search found 1 match.</h2>");<BR>        else<BR>            out.println("<h2 class=\"search-matches\">Your search found " + Integer.toString(j) + " matches.</h2>");</DIV>
<DIV>        // For each hit, get the Document and print out some information (including a link) about each item that<BR>        // matches.<BR>        for(i = 0; i<j; ++i) {<BR>            score = hits.score(i);<BR>            doc = hits.doc(i);<BR>            String lms = doc.get("last_modified");<BR>            if(lms != null && !"".equals(lms))<BR>                tLastMod = DateField.stringToDate(lms).toString();<BR>            else tLastMod = "unknown";<BR>           
 <BR>            //tLastMod = "unknown";<BR>            out.println("<p class=\"search-hit\"><b class=\"search-hit-title\">" <BR>                + "<a href=\"" + cms.link(doc.get("abs_path")) + "\" class=\"search-hit-link\">"<BR>                + doc.get("title") + "</a></b><br><i class=\"search-hit-score\">");<BR>            //out.print(score); // Score is between 0.0 and 1.0<BR>            out.println("</i> " + doc.get("description") + " <br><span class=\"smalltext\">(Last modified: " + tLastMod +
 ")</span></p>");<BR>        }<BR>    }<BR>} else {<BR>    out.println("No results found.");<BR>}<BR>%></DIV>
<DIV>============================================================</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV><I><STRONG>Ivan Jele</STRONG></I><B><I>nic <ivan.jelenic@nbs.yu></I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">
<META content="MSHTML 6.00.2800.1264" name=GENERATOR>
<STYLE></STYLE>

<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Try with this:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>    doctitle = cmsObject.readProperty(doc.get("url"),"Title"); //with big T</FONT></DIV>
<DIV><FONT face=Arial size=2>    doctitle = cmsObject.readProperty(doc.get("url"),"Description"); //with big D</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>    doc.get("url") is a path in VFS to your file.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Hope it will work.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Best regards,</FONT></DIV>
<DIV><FONT face=Arial size=2>Ivan.</FONT></DIV>
<BLOCKQUOTE style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> <A title=dattaritwik@yahoo.com href="mailto:dattaritwik@yahoo.com">Ritwik Datta</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=opencms-dev@opencms.org href="mailto:opencms-dev@opencms.org">opencms-dev@opencms.org</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Monday, January 19, 2004 10:08 AM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> [opencms-dev] Lucene always show untitled and null for description: Pls help</DIV>
<DIV><BR></DIV>
<DIV>Dear All,<BR><BR>I am using OpenCMS on Oracle9i and Tomcat 4.1. I have imported lucene<BR>module net.grcomputing.opencms.search.lucene_1.3.zip .but I have some problems. My files have titles and decription. But  lucene always show untitled and null for description. Can you tell me the work around. Now Ihave another question, to index my doc, pdf files, is there any additional patches released yet? This is very rgent requirement. So if you have solutions please send it accross</DIV>
<DIV>Thanks in advance,</DIV>
<DIV>regards,</DIV>
<DIV>Ritwik<BR></DIV>
<P>
<HR SIZE=1>
Do you Yahoo!?<BR>Yahoo! Hotjobs: <A href="http://pa.yahoo.com/*http://us.rd.yahoo.com/hotjobs/mail_footer_email/evt=21482/*http://hotjobs.sweepstakes.yahoo.com/signingbonus">Enter the "Signing Bonus" Sweepstakes</A></BLOCKQUOTE></BLOCKQUOTE></DIV><p><hr SIZE=1>
Do you Yahoo!?<br>
Yahoo! Hotjobs: <a href="http://pa.yahoo.com/*http://us.rd.yahoo.com/hotjobs/mail_footer_email/evt=21482/*http://hotjobs.sweepstakes.yahoo.com/signingbonus">Enter the "Signing Bonus" Sweepstakes</a>