On Wednesday 13 February 2002 11:58 pm, you wrote: > Hi, > > I am trying to allow users to view multiple pages without the need to login > first. > I installed the tdk with the newapp sample. In TurbineResources.properties > I set screen.homepage to my new Index.vm. > I use my own SessionValidator, which does nothing . I am still getting the > login page (or whichever page is configured for template.login) whenever I > try to access a page. (It doesn't matter whether I use my own > SessionValidator or TemplateSessionValidator, which was configured before.) > What am I missing?
All of the screen modules (java classes backing the templates) in the newapp sample extend VelocitySecureScreen, which requires the user to be logged in before viewing the page. You should write a screen module called Index.java which extends VelocityScreen instead of VelocitySecureScreen. Regards, -- Rodney -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
