"Diethelm Guallar, Gonzalo" wrote:
> I'm using code from CVS as of Nov 29, around 6pm
> (18 hours old). Risking the wrath from the powers
> that be, I'm not using the TDK, since I have an
> app already in development for a couple of months,
> and all I do is a cvs update every few days.
>
> This thing runs on WinNT 4.0, Sun JDK 1.3, Resin
> 1.2. The same symptom shows up with Tomcat 3.2.
>
> I would appreciate any hints regarding where to
> start debugging and looking for this problem.
I have the same problem with my login app....
in TemplateSecureSessionValidator i addes some println ...
public void doPerform( RunData data )
throws Exception
{
data.populate();
// this is the secure sessionvalidator, so user must be logged in.
if ( (data.getUser() == null) || (! data.getUser().hasLoggedIn()) )
{
data.setMessage(TurbineResources.getString("login.message"));
System.out.println("TemplateSecureSessionValidator
template.login " + TurbineResources.getString("template.login") );
data.getTemplateInfo().setScreenTemplate(
TurbineResources.getString("template.login") );
System.out.println("TemplateSecureSessionValidator: " +
data.getTemplateInfo().getScreenTemplate());
}
now i get:
TemplateSecureSessionValidator template.login /Login.vm
TemplateSecureSessionValidator: /Secure.vm
in ParameterParser the value for templated should be stored ... there is a
String[] as value ...
data.getTemplateInfo().setScreenTemplate(...) appends its value to the
String[] for the key 'template' ...
so there are more then one values for template and the first of them is
returned ...
for template ther should be only one value ... or the last of them should be
returned ...
can anyone check if i am right??
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]