| javax.servlet.http.HttpServlet vqwiki.servlets.RSSServlet
RSSServlet | public class RSSServlet extends HttpServlet (Code) | | This servlet generates a RSS Stream for the default wiki.
You can add a parameter "virutal-wiki", which then generates
an RSS Stream on a particular virtual wiki.
For more details on RSS see:
http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html
The code of the RSS Generator is taken from
JSPWiki. Author: Janne Jalkanen
JSPWiki is licenced under GPL.
For more information on JSPWiki see:
http://www.ecyrd.com/~jalkanen/JSPWiki/
We use the 1.0 spec, including the wiki-specific extensions. Wiki extensions
have been defined in UseMod:ModWiki.
author: Tobias Schulz-Hess (sourceforge@schulz-hess.de) |
doGet | protected void doGet(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException(Code) | | Handle get request.
The request is handled the same way as the post request.
See Also: doPost() Parameters: httpServletRequest - The current http request Parameters: httpServletResponse - What the servlet will send back as response throws: ServletException - If something goes wrong during servlet execution throws: IOException - If the output stream cannot be accessed |
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|