Hello, We are going to migrate our application from tomcat 6 to tomcat 7. But during migration we've faced with the following issue: we have the following configuration to have possbility to manage JMX Bean using browser (through http): ... <Connector port="8009" handler.list="mx" mx.enabled="true" mx.httpHost="10.30.244.40" mx.authMode="basic" mx.authUser="someUser" mx.authPassword="pass" mx.httpPort="9012" enableLookups="false" redirectPort="8443" protocol="AJP/1.3"/> ...
as described at the following page: http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html But when we use this configuration we have the following warnings: WARNING: [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'handler.list' to 'mx' did not find a matching property. However http://tomcat.apache.org/tomcat-7.0-doc/cluster-howto.html#Monitoring_your_Cluster_with_JMX . Also I've noticed that some classes where removed from catalina.jar (such as JkMX, JkMain and others). Could you please point me how should tomcat be configured / what libraries should be added? Thanks in advance! Vadim.