|
From: <rm...@hy...> - 2007-03-21 00:24:33
|
Author: rmorgan Date: 2007-03-20 16:24:29 -0800 (Tue, 20 Mar 2007) New Revision: 3800 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3800 Modified: trunk/src/org/hyperic/hq/product/servlet/webapp/JMXServlet.java Log: Ignore attributes with '.' in the name. The dots cause the Manifest parser to fail. [HHQ-757] Submitted By: nickbr (http://forums.hyperic.com/jiveforums/thread.jspa?threadID=1635&tstart=0) Modified: trunk/src/org/hyperic/hq/product/servlet/webapp/JMXServlet.java =================================================================== --- trunk/src/org/hyperic/hq/product/servlet/webapp/JMXServlet.java 2007-03-20 23:28:10 UTC (rev 3799) +++ trunk/src/org/hyperic/hq/product/servlet/webapp/JMXServlet.java 2007-03-21 00:24:29 UTC (rev 3800) @@ -346,6 +346,7 @@ Object o = mServer.getAttribute(oname, attName); if(attName.indexOf( "=") >=0 || attName.indexOf( ":") >=0 || + attName.indexOf(".") >= 0 || attName.indexOf( " ") >=0 ) { continue; } |