Dear David
thank you very much for your detailed explanation. But l still have a few questions, it is highly appreciated you can drop a few comments on them.
1) As l checked the manul, your book and ias samples, it seems that only the
servlet can be set sticky as following eg in ias-web.xml file.
Is there any similar tag in ias-ejb-jar.xml which is used for enabling the sticky behaviour of session/entity bean ? Or setting the servlet "sticky" can make all calls to EJB from this servlet happen within same JVM ?
<servlet>
<servlet-name>populateServlet</servlet-name>
<guid>{396803E0-246D-11D5-A09C-0010A4C4735E}</guid>
<validation-required>false</validation-required>
<servlet-info>
<sticky>true</sticky>
<encrypt>false</encrypt>
<number-of-singles>10</number-of-singles>
<disable-reload>false</disable-reload>
</servlet-info>
</servlet>
2) If there are many servlets defined in my web.xml, not all servlets are set as "sticky" but all of them will reference "httpsession" object. what happen ? Is there any difference if
"lite" or "distributed" is used for "session-info" tag.
<session-info>
<impl>lite</impl>
........