Applet does not work on JRE 6u25

I have an applet that connects to a device and receives its SNMP SNMP protocol. it works fine on the JRE 6u20, but after upgrading the JRE to 6u25 it does not work well.

On 6u20, retrieving the device’s parameters took several seconds, but on 6u25 it took much longer, and finally, most parameters are not retrieved.

There is a SwingWorker to read each parameter, and I use this Java SNMP Package .

What is the difference between these versions of JRE? how to find out what makes the problem?

+3
source share
1 answer
, , . Java SNMP Package GetRequest . JRE 6u20 , SwingWorker JRE 6u20 , JRE 6u25 10
SwingWorker.MAX_WORKER_THREADS = 10;

"" SNMP get, .

synchronized public SNMPVarBindList getMIBEntry(String itemID)
+4

All Articles