*/
protected Reply getFileResource(Request request)
throws ProtocolException, ResourceException
{
// get our associated FileResource
FileResource fres = getFileResource();
// Create the HTML generator, and set titles:
HtmlGenerator g = new HtmlGenerator("FancyFrame");
g.append("<h1>FancyFrame output</h1>");
// emit the message
g.append("<p>",getMessage(),"</p>");
// display information about our FileResource
g.append("<h2> FileResource associated : </h2>");
g.append("<ul><li>Identifier : ",fres.getIdentifier());
g.append("<li>File : "+fres.getFile());
g.append("<li>Last Modified Time : ",
new Date(fres.getLastModified()).toString(),
"</ul>");
// now emit the reply
Reply reply = createDefaultReply(request, HTTP.OK) ;
reply.setStream(g) ;
return reply ;