Page 1 of 1

About Question com.enthuware.ets.scwcd.v5.2.233 :

Posted: Wed Jun 12, 2013 11:33 am
by marcelomnc
The method signature is wrong:

Code: Select all

public void doStartTag()
{
    if(somecondition)
    {
      return IterationTag.EVAL_BODY_INCLUDE;
    }
    else
    {
LINE 1:	//forward the request to page2.jsp
    }
}
At least it should be:

Code: Select all

public int doStartTag()
{
    if(somecondition)
    {
      return IterationTag.EVAL_BODY_INCLUDE;
    }
    else
    {
LINE 1:	//forward the request to page2.jsp
    }
}

Re: About Question com.enthuware.ets.scwcd.v5.2.233 :

Posted: Fri Jun 14, 2013 6:48 am
by admin
You are right. This has now been fixed.

thank you for your feedback!