How to configure JSession ID

We are using JBoss 4.2. We would like to configure the session identifier that is generated by JBoss. We need to know from which server this session identifier is created in multipath env. We would like to use the first digit to identify the server.

For example: JSessionID created by JBoss is 123456

User sessionid Must be: A123456 (A-First server, B-Second Server, etc.)

+4
source share
1 answer

Set the jvmRoute attribute in your computer configuration to jvmRoute = "node1", for example. This will create a JSESSIONID value that looks like "ABCDEF123456.node1".

+3
source

All Articles