Is there any other method to set session tracking cookie name (set dynamically when application loads) than configure in weblogic.xml.
We have same application deployed in different weblogic server for
testing. Each application (same ear file) runs as http:/domainName/port1,
http:/domainName/port2 , http:/domainName/port3 like that.
Jdbc Conection pools is configured different for each.
When some body try to login to more than one there is a session conflict. It is not practical to put separate cookie name in each ear file ,
since it is all build once.
So I am looking for a method to set session tacking cookie outside weblogic.xml. so when application loads cookie name will be generated.
Or is there anything in config.xml that I can do so each ports run with out any session conflicts. Each ports may be logged in by different id.
Servlet vertion using is 2.3
Weblogic werver 8.1
please hlep.