> From: Frederic Bastian [mailto:[EMAIL PROTECTED] > Subject: Re: URIEncoding > > Could you tell me a bit more about how MBean can solve my problem ? I > never used it.
Tomcat creates MBeans for most of its internal objects, including connectors: http://tomcat.apache.org/tomcat-6.0-doc/mbeans-descriptor-howto.html (The same is true for 5.5 if that's what you're using.) The get/set methods of the MBean allow you to inspect and modify the underlying objects. Start Tomcat with -Dcom.sun.management.jmxremote and use JConsole to poke around inside it. Look at the MBeans tab, then down the Catalina -> Connector -> [port#] -> Attributes branch; you should see URIEncoding as the first entry. Study the javax.mananagement.* APIs for details on how to access MBeans. You may want to look at this tutorial as well: http://java.sun.com/j2se/1.5.0/docs/guide/management/overview.html For examples of code that interrogates various MBeans within Tomcat, wander through the Lambda Probe source: http://lambdaprobe.org/d/index.htm Using any of this makes your application Tomcat-specific, of course. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]