1 Reply Latest reply on Aug 25, 2004 1:19 PM by starksm64

    adding <distributable/> garbles session id string

      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.

      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
      os: jds 1 linux (based on suse enterprise desktop 1.0)
      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)

      ----------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--------------------------------

      thanks,

      -nikita