if there are thousands of concurrent requests for one mail session object,
I have not examined the source code, but I get the impression from the JavaDocs that a session just serves as a "data object" that organizes all of the parameters needed in one place. If an object does not contain any variables that are altered by users, there is no reason you can't have thousands of "concurrent" users. Basically the same principle that lets one
servlet instance handle any number of requests "simultaneously."
If you are worried about it, get the source code and look for variables that get modified by users.
Please let us know if you find any.
Bill