Hello all! I still have a problem that struts creates a session although it should not do so. I have isolated the problem and there are only two possible locations left. One of them is this: I have an index.jsp specified in my welcome.file-list in web.xml. This index.jsp does the following:
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> <%@ taglib uri="/WEB-INF/taglibs-log.tld" prefix="log" %> <%@ page session="false" %> <log:info message="Session-ID: ${pageContext.session.id}" /> <html> <body> <logic:forward name="login"/> </body> </html> As expected ${pageContext.session.id} returns an empty string in my log because the page-directive tells session="false" But right after the logic:forward a session is created! Is it possible that the logic:forward is bound to creation of a session? Is there a way to eliminate this behaviour? I found nothing on the WWW so I will try here. Thanks Peter --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]