Hmmm, then it would seem that the Weblogic JSP engine isn't fully up to
spec.  Using SKIP_PAGE in doStartTag() in a tag worked for me.  Here is the
snippet from the .tld file:

  <tag>
    <name>LoginOrForward</name>
    <tagclass>com.edgil.AppServer.tags.LoginOrForward</tagclass>
    <teiclass>com.edgil.AppServer.tags.LoginOrForwardExtraInfo</teiclass>
    <bodycontent>JSP</bodycontent>
    <attribute>
        <name>name</name>
        <required>true</required>
    </attribute>
    <attribute>
        <name>type</name>
        <required>true</required>
    </attribute>
    <attribute>
        <name>path</name>
        <required>true</required>
    </attribute>
    <attribute>
        <name>varName</name>
        <required>true</required>
    </attribute>

  </tag>

--Angus

"Craig R. McClanahan" wrote:
>
> Angus Mezick wrote:
>
> > Nope, we just tried SKIP_PAGE and it worked.  ARGH!
> > --Angus
> >
>
> SKIP_PAGE is only valid when returned from doEndTag(), not doStartTag().
> You'll
> need to rearrange your logic to do the sendRedirect() there instead.
>
> Craig McClanahan
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to