You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Michael Gluckman <mi...@impress.co.za> on 2001/04/24 14:15:58 UTC

findForward() returning a blank page

Hi all

After my action class is instantiated the method findForward("admin")
returns a blank html page instead of the admin-frame page.
If I type the full URL path to the admin-frame it works.
I have included the <html:base/> in the admin-frame page.
Any ideas

Thanks
Michael

<!-- Process a user logon -->
    <action
         path="/logon"
         type="test.LogonAction"
         name="logonForm"
         scope="request"
         input="/logon.jsp">
                <forward name="admin"  path="/admin/admin-frame.jsp"/>
    </action>


Re: findForward() returning a blank page

Posted by Michael Gluckman <mi...@impress.co.za>.
Sorry, i was using the deprecated perform method and it was not being
called.



Michael Gluckman wrote:

> Hi all
>
> After my action class is instantiated the method findForward("admin")
> returns a blank html page instead of the admin-frame page.
> If I type the full URL path to the admin-frame it works.
> I have included the <html:base/> in the admin-frame page.
> Any ideas
>
> Thanks
> Michael
>
> <!-- Process a user logon -->
>     <action
>          path="/logon"
>          type="test.LogonAction"
>          name="logonForm"
>          scope="request"
>          input="/logon.jsp">
>                 <forward name="admin"  path="/admin/admin-frame.jsp"/>
>     </action>