Using WLS 8.1 Threading Model in WLS 9.x / 10.x
Using WLS 8.1 Threading Model in WLS 9.x / 10.x
- When using WebLogicServer versions prior to WLS 9.x you might have used execute queues to improve performance of your applications , you may still continue avail the flexibility of 8.1 style execute queues by following one of the below methods
1) Enable 8.1 Style Execute Queues
Add the following to the config.xml
<server>
<name>AdminServer</name>
<use81-style-execute-queues>true</use81-style-execute-queues>
<listen-address/>
</server>
or
Add the following in JAVA_OPTIONS
-Dweblogic.Use81StyleExecuteQueues=true
2) Enable 8.1 Style Execute Queues
Cheers :)
Unni