The OneClick JRE Thick client (JNLP) performs slowly, while the OneClick WebApp performs normally. This issue typically surfaces after an upgrade or network change where reverse-DNS resolution for client IP addresses is slow or failing.
By default, the Spectrum Tomcat configuration may have enableLookups="true" in the server.xml file. This causes Tomcat to perform a reverse-DNS lookup to resolve the hostname of every connecting client IP. If the DNS server is slow or the client's IP subnet does not have valid PTR records, the OneClick console will hang while waiting for the DNS timeout.
Disable DNS lookups in the Tomcat configuration to prevent resolution delays.
Log into the OneClick server as the user that owns the Spectrum installation.
Navigate to the $SPECROOT/tomcat/conf/ directory.
Back up the server.xml file.
Edit server.xml and locate the Connector elements (typically for ports 8080 and 8443).
Set the enableLookups parameter to false for each connector:
enableLookups="false"
Example: <Connector port="8080" enableLookups="false" ... />
Save the changes.
Restart the Spectrum Tomcat service.