From: "Brett" <[EMAIL PROTECTED]>
What should happen next is that my display page is shown and accesses my form bean using the getters to retrieve the appropriate data values. However when the action calls findforward, and the display page is called, it seems to create a new instance of my form bean and so all data values are null.


<%= apacheConnectionStats.getSql_stmt() %>

Is 'apacheConnectionStats' the name of the form bean?

Look for a redirect somewhere... assuming the form is in request scope, redirecting (rather than forwarding) will cause the browser to send a new request, and you'll lose everything in the old one. To test for this, put the form in session scope and see if the problem goes away.

Post the relevant parts of struts-config.xml and your Action if you need more help.

--
Wendy Smoak


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

Reply via email to