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

All the posts and topics that contain only an error report will be moved here after the error is corrected. This is to ensure that when users view a question in ETS Viewer, the "Discuss" button will not indicate the presence of a discussion that adds no value to the question.

Moderators: Site Manager, fjwalraven

Post Reply
marcelomnc
Posts: 5
Joined: Mon Jun 10, 2013 9:44 pm
Contact:

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

Post 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
    }
}

admin
Site Admin
Posts: 10388
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

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

Post by admin »

You are right. This has now been fixed.

thank you for your feedback!

Post Reply

Who is online

Users browsing this forum: No registered users and 5 guests