Probably whatever you have set up in TR.props as the "template.homepage" value. By default it will be invoking the Index.vm template. At the point of calling this template (or any other template for that matter) turbine will make an attempt to find and run a VelocityScreen or VelocitySecureScreen class of the same name (Index.class) in the respective module package. If it cannot find Index.class in the respective module directory it will look for a "Default.class" within the respective module directory. If turbine can't find "Default.class" within that respective directory, it will go up one package level and look there for "Default.class." Turbine will continue to do this until it either finds a class to associate with your template or runs out of module packages to check and throws a class not found exception.
Also, pertaining to newapp. Index.vm's screen class extends VelocitySecureScreen. So if you go to it with out first being authenticated you will actually be bumped to the Login.vm to login. The documentation on the Turbine site can give you a better (more correct ;) explanation then I can. I would suggest reading as much of the site docs as possible. hth, Scott > -----Original Message----- > From: runner [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 21, 2002 5:06 AM > To: [EMAIL PROTECTED] > Subject: newbie,a dummy question > > > Hey,there. > I am a newbie in the user group, I am trying to study > the framework of Turbine. > Is there any one can help me what object Turbines Servelet > invokes next when > I input the URL > http://localhost:8080/newapp/servlet/newapp ?? > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> >
