When I attempt to use more than 1 s:action tag on a page, I just get back a
blank page - no error, no console output, just nothing.

My page just looks like:
<body>
        <h1><s:property value="project.title"/></h1>
        <s:action namespace="/admin/nextGen" name="ManageNotes"
executeResult="true">
                <s:param name="id" value="%{project.id}"/>
        </s:action>
        <br/>
        
        <s:action namespace="/admin/nextGen" name="ManageSamples"
executeResult="true">
                <s:param name="id" value="%{project.id}"/>
        </s:action>
        <br/>
</body>



If I just use one action (either one alone), the page is correctly rendered
with that content. I see the header text with the content result of the
action. With both present, I don't even see the header text. I don't even
get any html back -- just blank. No struts error, no tomcat error...nothing.
Tomcat is running in eclipse, and my console shows no output beyond the
startup output. What might cause this?



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to