6 messages in org.apache.tomcat.usersadding <distributable/> garbles sesio...
FromSent OnAttachments
NikitaAug 19, 2004 12:24 pm 
Shapira, YoavAug 19, 2004 12:26 pm 
NikitaAug 19, 2004 12:34 pm 
Shapira, YoavAug 19, 2004 12:44 pm 
Filip Hanik (lists)Aug 19, 2004 1:33 pm 
NikitaAug 19, 2004 7:30 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:adding <distributable/> garbles sesion id stringActions...
From:Nikita (nik@workoutiq.com)
Date:Aug 19, 2004 12:24:47 pm
List:org.apache.tomcat.users

Hello,

I have a very simple war app. it consists of only test.jsp, a page that prints out session id string. The problem is that if i add "distributable" to web.xml, this string becomes garbled (both in the browser and in console output):

without <distributable/>: "session id: 5129D795478E6529E233E1909EF85CB7.node1"

with <distributable/>: "session id: gDMzbOR3bJ8SNSmC3dDMWQ**.node1"

I deployed the same war as in stand-alone tomcat 5.0.27 under both xp and linux and saw no problems. So seems like this is a jboss issue. however,
jboss 4.0rc1 uses tomcat 5.0.27-dev, and i'm wondering if upgrading to 5.0.27
would help at all.

Could this be related to the fact that i'm using mod_jk 1.2.6? If so, should i post this in clustering forum? I'd really appreciate any insight

my setup: jboss 4.0 rc1, clustered with mod_jk 1.2.6, tomcat 5.0.27-dev integrated os: jds 1 linux (based on suse enterprise desktop 1.0), also tried win xp kernel: 2.4.21-189-default java version "1.4.2_04" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05) Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)

thanks,

-nikita

----------test.jsp---------------- <%@ page contentType="text/html; charset=iso-8859-1" language="java"
import="java.sql.*" errorPage="" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> </head> <body> session id: <%=session.getId()%> <P> last accessed: <%=new java.util.Date()%> </body> </html> -------------------end test.jsp----------------------

-----------------web.xml-------------------------------

<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>Test Application</display-name> <description> Sample session jsp </description> </web-app> -------------------end web.xml-------------------------------