I have downloaded Webinator for use as a search engine on a website. This website will be composed of primarily JSP pages. The only way to access these jsp pages is if the user has logged into the site. A user logs in by typing a username and password in an html form. The value of the action of this form is a Login Servlet, which processes the username and password, checks if it is a valid pair, sets a cookie (or session) , and redirects the user to a menu of jsp pages which the user is allowed to view.
If I index the login page, let's call it - "login_form.html" by typing in "gw -y http://servername.com/login_form.html", it cannot process the form because I did not provide a username and password, correct?
If I explictly index by using the query string, say - 'gw -y "http://servername.com/servlet/LoginServ ... SWORD=pass" ' webinator recognizes this URL as valid, but now, I have violated the integrity of the site because the URL displays the username and password.
Q: If I want to index the menu of jsp pages, and the only path to get to this information is to login via the form, what would I have to type at the webinator prompt to index the information correctly and securely?
another Q: In conjunction with this, is Webinator able to properly index a jsp page if this page checks for a cookie or an http session?
[clarification about the jsp page - The code within the jsp page will check if a cookie is present, if it is present, it will display the content of the page; if not, it will redirect them back to login_form.html]
Thanks, in advance, for any help you can provide.