Another possibility - by default, form beans are stored in session scope. In struts-config.xml, you'd need:
<action ... scope="request" ... /> for all your actions that receive a form bean. Quoting Eric Jain <[EMAIL PROTECTED]>: > > if the <controller> tag in struts-config.xml has its "locale" > > attribute set to "true", then a session may be created. > > I tried adding a controller element with locale set to false, but no > difference... > > > > Also, if the <html:html> tag in a JSP has its > > "locale" attribute set to "true", then a session may be created. > > I don't use the html:html element... > > > > Of course, by default any JSP page that handles a request may also > > create a session. You have to use <%@ page session="false" %> to > > disable that feature. > > page session="false" is set for every page... > > > Really curious what is creating the session here... Perhaps this would > show up somewhere if I increase the debug level? > > Is anybody actually using Struts without sessions? > > > -- > Eric Jain > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

