<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-18333615</id><updated>2011-11-27T18:56:08.595-05:00</updated><category term='jmanage'/><category term='care.com'/><category term='useful product'/><title type='text'>jManage Blog</title><subtitle type='html'>Blog on jManage - the Open Source Application Management Solution.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-18333615.post-4674218717120255396</id><published>2009-02-13T22:11:00.002-05:00</published><updated>2009-02-15T11:58:32.837-05:00</updated><title type='text'>Install jManage Application Management Platform as a service</title><content type='html'>You can find a detailed explanation at &lt;a href="http://vigilbose.blogspot.com/2008/05/install-jmanage-application-management.html"&gt;Vigil Bose's blog site&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Has anyone tried setting up jManage as a service on windows or linux?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-4674218717120255396?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/4674218717120255396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=4674218717120255396' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/4674218717120255396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/4674218717120255396'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2009/02/install-jmanage-application-management.html' title='Install jManage Application Management Platform as a service'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-3524299012645964308</id><published>2009-02-13T21:50:00.007-05:00</published><updated>2009-02-15T11:57:43.172-05:00</updated><title type='text'>Generating alerts from your Java application</title><content type='html'>You can very easily setup your application to emit MBean notification in case of a severe error. Here is some sample code:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;public class AlertNotification &lt;br /&gt;   extends NotificationBroadcasterSupport &lt;br /&gt;   implements AlertNotificationMBean {&lt;br /&gt;&lt;br /&gt; private static final String TYPE_SEVERE = "SEVERE";&lt;br /&gt; private int sequence = 1;&lt;br /&gt; private static AlertNotification instance = &lt;br /&gt;     new AlertNotification();&lt;br /&gt;&lt;br /&gt; public static AlertNotification getInstance() {&lt;br /&gt;   return instance;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; private AlertNotification() {&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; public MBeanNotificationInfo[] getNotificationInfo() {&lt;br /&gt;   MBeanNotificationInfo[] notifications = &lt;br /&gt;       new MBeanNotificationInfo[1];&lt;br /&gt;   notifications[0] = &lt;br /&gt;       new MBeanNotificationInfo(new String[] { TYPE_SEVERE },&lt;br /&gt;       "LogNotification", &lt;br /&gt;       "Types of notifications emitted by this broadcaster");&lt;br /&gt;   return notifications;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; public void send(String message) {&lt;br /&gt;   this.sendNotification(new Notification(TYPE_SEVERE, this, &lt;br /&gt;       sequence++, System.currentTimeMillis(), message));&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Also remember to register the MBean above:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;MBeanServer mbeanServer = &lt;br /&gt;   ManagementFactory.getPlatformMBeanServer();      &lt;br /&gt;mbeanServer.registerMBean(&lt;br /&gt;   AlertNotification.getInstance(), &lt;br /&gt;   new ObjectName(ObjectNames.ALERT_NOTIFICATION_BEAN));&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The code above will emit a MBean notification when the send() method is called. For example:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;AlertNotification.getInstance().send("your alert message here");&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;You can then configure jManage to listen to this MBean notification and generate an alert that can be delivered to your mail box. To learn more about configuring alerts in &lt;a href="http://www.jmanage.org/"&gt;jManage&lt;/a&gt; see &lt;a href="http://www.jmanage.org/wiki/index.php/Alerts"&gt;jManage Documentation&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Please let me know what you think of the code above. Also, please share if you have setup something like this with jManage.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-3524299012645964308?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/3524299012645964308/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=3524299012645964308' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/3524299012645964308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/3524299012645964308'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2009/02/generating-alerts-from-your-application.html' title='Generating alerts from your Java application'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-8925244946758358750</id><published>2009-02-11T16:10:00.003-05:00</published><updated>2009-02-11T18:39:32.027-05:00</updated><title type='text'>Problem with connecting to JBoss on remote linux machine</title><content type='html'>Just resolved a problem where jManage was not able to connect to JBoss instance on a remote box. The /etc/hosts file on the remote box had:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;127.0.0.1               localhost uat2 uat2.carezen.local&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;After, changing the hosts file to:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;127.0.0.1               localhost&lt;br /&gt;10.10.1.51              uat2 uat2.carezen.local&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;and restarting the JBoss instance, the problem got resolved.&lt;br /&gt;&lt;br /&gt;Please be aware of this issue. Other users have run into it as well. There is also a reference to this issue on &lt;a href="http://www.jboss.org/index.html?module=bb&amp;op=viewtopic&amp;p=3840440"&gt;JBoss forum&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Also note that this problem also occurs with JSR160 connections, e.g. connecting to JVM.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-8925244946758358750?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/8925244946758358750/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=8925244946758358750' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/8925244946758358750'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/8925244946758358750'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2009/02/blog-post.html' title='Problem with connecting to JBoss on remote linux machine'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-6602601419271059283</id><published>2007-09-13T13:59:00.000-04:00</published><updated>2007-09-13T14:09:09.404-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='jmanage'/><category scheme='http://www.blogger.com/atom/ns#' term='useful product'/><category scheme='http://www.blogger.com/atom/ns#' term='care.com'/><title type='text'>Wow! This is a very useful product</title><content type='html'>First of all, my apologies to the jManage users for not being active in the jManage community in the last 6 months. My job at &lt;a href="http://www.care.com"&gt;Care.com&lt;/a&gt; has kept me very busy.&lt;br /&gt;&lt;br /&gt;We actually use jManage in the production environment of &lt;a href="http://www.care.com"&gt;Care.com&lt;/a&gt;. We use it to monitor our JBoss application servers, and also the long running command-line processes. &lt;br /&gt;&lt;br /&gt;jManage has proven most useful when generating alerts in case of errors in the command-line processes. We have extended the JDK logging (java.util.logging.Handler) to generate MBean notifications when "SEVERE" level error is logged. This helps us sleep better at night, as know that jManage is up watching the processes for us.&lt;br /&gt;&lt;br /&gt;I was adding another command-line process to our production jManage instance today, and I couldn't stop myself from admiring what the jManage community has built. Now that I am very active user of jManage, I find it a very useful product.&lt;br /&gt;&lt;br /&gt;PS: I will try to get some screen shots of our jManage instance at &lt;a href="http://www.care.com"&gt;Care.com&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-6602601419271059283?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/6602601419271059283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=6602601419271059283' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/6602601419271059283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/6602601419271059283'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2007/09/wow-this-is-very-useful-product.html' title='Wow! This is a very useful product'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-530512861663452774</id><published>2007-05-15T15:06:00.000-04:00</published><updated>2007-05-15T15:09:30.758-04:00</updated><title type='text'>Merging JBoss and JDK1.5 MBeans under one MBeanServer</title><content type='html'>As per the following issue logged on JBoss, it seems like the new versions of JBoss support registering the JBoss MBeans in the JDK 1.5 MBeanServer:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://jira.jboss.com/jira/browse/JBAS-1610"&gt;http://jira.jboss.com/jira/browse/JBAS-1610&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It says:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;To enable this feature use: './run -Djboss.platform.mbeanserver'&lt;br /&gt;  and see the 'java.lang' and 'java.util.logging' domains appearing in the jmx-console&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-530512861663452774?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/530512861663452774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=530512861663452774' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/530512861663452774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/530512861663452774'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2007/05/merging-jboss-and-jdk15-mbeans-under.html' title='Merging JBoss and JDK1.5 MBeans under one MBeanServer'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-117029199037528068</id><published>2007-01-31T20:05:00.000-05:00</published><updated>2007-01-31T20:06:30.766-05:00</updated><title type='text'>jManage 2.0 RC1 is released</title><content type='html'>Hello Everyone,&lt;br /&gt;&lt;br /&gt;We are pleased do announce the release of jManage 2.0 RC1. We take this opportunity to thank you all for your feedback and comments.&lt;br /&gt;&lt;br /&gt;Along with many bug fixes in the release, we also have added out-of-the-box dashboards for JBoss app server and Oracle DB server.&lt;br /&gt;&lt;br /&gt;jManage 2.0 RC1 can be downloaded from:&lt;br /&gt;https://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=211715&amp;release_id=482080&lt;br /&gt;&lt;br /&gt;Highlights of the release can be found here :&lt;br /&gt;https://sourceforge.net/project/shownotes.php?release_id=482080&amp;group_id=111374&lt;br /&gt; &lt;br /&gt;For more information, please visit: &lt;br /&gt;http://www.jmanage.org&lt;br /&gt;&lt;br /&gt;Please keep sending your valuable feedback our way.&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;jManage Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-117029199037528068?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/117029199037528068/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=117029199037528068' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/117029199037528068'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/117029199037528068'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2007/01/jmanage-20-rc1-is-released.html' title='jManage 2.0 RC1 is released'/><author><name>Shashank Bellary</name><uri>http://www.blogger.com/profile/08907363528578604440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://static.flickr.com/30/64826448_e6b1c21ee2_m.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-116373795023049448</id><published>2006-11-16T23:31:00.000-05:00</published><updated>2006-11-16T23:32:33.786-05:00</updated><title type='text'>jManage 2.0 beta is now available</title><content type='html'>We are very excited to announce the availability of jManage 2.0 beta.&lt;br /&gt;&lt;br /&gt;We have decided to change the version number from 1.5 to 2.0 to better reflect the level of maturity and stability in this release, as well as many new features which transform jManage from a JMX console to a management platform.&lt;br /&gt;&lt;br /&gt;2.0 beta contains the following major features:&lt;br /&gt;- Improved dashboard framework, with two Java 5 dashboards.&lt;br /&gt;- Connector framework for non-JMX applications, with a sample Oracle database connector.&lt;br /&gt;- Application downtime tracking with ability to setup alerts when an application goes down.&lt;br /&gt;- WebLogic 9.x support is now part of this release. This was earlier provided as a patch.&lt;br /&gt;- UI Improvements.&lt;br /&gt;&lt;br /&gt;There is documentation available on dashboards and connectors at &lt;a href="http://www.jmanage.org/wiki"&gt;http://www.jmanage.org/wiki&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;A number of bugs found in 1.5 beta, have been fixed in this release. Please see the release notes for more info:&lt;br /&gt;&lt;a href="http://sourceforge.net/project/shownotes.php?release_id=464022&amp;group_id=111374"&gt;http://sourceforge.net/project/shownotes.php?release_id=464022&amp;group_id=111374&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can download this release from:&lt;br /&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=211715&amp;release_id=464022"&gt;http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=211715&amp;release_id=464022&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We will now be working towards the next 2.0 release with:&lt;br /&gt;a) Historical graphing.&lt;br /&gt;b) Dashboards for major J2EE application servers.&lt;br /&gt;c) More Bug fixes.&lt;br /&gt;&lt;br /&gt;Best Regards,&lt;br /&gt;&lt;br /&gt;The jManage Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-116373795023049448?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/116373795023049448/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=116373795023049448' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/116373795023049448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/116373795023049448'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/11/jmanage-20-beta-is-now-available.html' title='jManage 2.0 beta is now available'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-115453282096442028</id><published>2006-08-02T11:32:00.000-04:00</published><updated>2006-08-02T11:36:20.986-04:00</updated><title type='text'>jManage 1.5 beta is now available</title><content type='html'>This is a beta release of the awaited 1.5 version that introduces,&lt;br /&gt;&lt;br /&gt;1. Dashboard framework to build custom dashboards. Customized dashboards can be tailored to specific objectives. These dashboards are,&lt;br /&gt;a. Live -&gt; automatically refreshed to provide latest information.&lt;br /&gt;b. Customized -&gt; users can build a dashboard from scratch or personalize an existing one to suit their needs.&lt;br /&gt;&lt;br /&gt;This also comes with a default Java5 dashboard and we will be adding more dashboards in the future releases.&lt;br /&gt;&lt;br /&gt;2. Connector framework for monitoring/managing non-JMX based environments. This framework can be used to expose necessary information on a non-JMX based environment as an application of MBeans. These applications can be registered, monitored and managed through jManage.&lt;br /&gt;&lt;br /&gt;This release also comes with a primitive Oracle connector&lt;br /&gt;&lt;br /&gt;3. MBean Info layering framework to provide additional information for MBeans. JDK 1.5 MBeans now get presented with MBean, attribute and operation descriptions.&lt;br /&gt;&lt;br /&gt;Please use the following installation guide:&lt;br /&gt;&lt;br /&gt;http://jmanage.org/documentation/jmanage1.0/install.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-115453282096442028?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/115453282096442028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=115453282096442028' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/115453282096442028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/115453282096442028'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/08/jmanage-15-beta-is-now-available.html' title='jManage 1.5 beta is now available'/><author><name>Shashank Bellary</name><uri>http://www.blogger.com/profile/08907363528578604440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://static.flickr.com/30/64826448_e6b1c21ee2_m.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114814037815454398</id><published>2006-05-20T11:52:00.000-04:00</published><updated>2006-05-20T11:53:13.550-04:00</updated><title type='text'>jManage 1.0 Documentation</title><content type='html'>jManage Documentation is now being maintained on the following wiki:&lt;br /&gt;&lt;a href="http://jmanage.org/wiki/index.php/Documentation"&gt;&lt;br /&gt;http://jmanage.org/wiki/index.php/Documentation&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can also make changes to this documentation after you login.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114814037815454398?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114814037815454398/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114814037815454398' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114814037815454398'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114814037815454398'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/05/jmanage-10-documentation.html' title='jManage 1.0 Documentation'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114618324270871806</id><published>2006-04-27T20:14:00.000-04:00</published><updated>2006-05-20T11:54:22.646-04:00</updated><title type='text'>Hibernate Stats with jManage</title><content type='html'>You can configure Hibernate to expose statistics of a Hibernate SessionFactory via JMX. Please see the &lt;a href="http://www.hibernate.org/hib_docs/v3/reference/en/html/performance.html#performance-monitoring"&gt;hibernate documentation&lt;/a&gt; for more information:&lt;br /&gt;&lt;br /&gt;Before you can look at Hibernate stats via jManage, you need to copy hibernate-3.1.jar to JMANAGE_HOME/lib folder, and restart jManage.&lt;br /&gt;&lt;br /&gt;Following is an example of getting Second Level Cache statistics for a cached entity.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/4333/1791/1600/jmanage-hibernate.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:left;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/4333/1791/400/jmanage-hibernate.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114618324270871806?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114618324270871806/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114618324270871806' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114618324270871806'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114618324270871806'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/04/hibernate-stats-with-jmanage.html' title='Hibernate Stats with jManage'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114325730973469993</id><published>2006-03-24T22:28:00.000-05:00</published><updated>2006-03-24T22:28:29.996-05:00</updated><title type='text'>Weblogic 9.x support in jManage 1.0.4</title><content type='html'>The following patch file adds Weblogic 9.x support to jManage 1.0.4:&lt;br /&gt;&lt;br /&gt;jmanage-1.0.4-wl9-patch.zip&lt;br /&gt;&lt;br /&gt;This file is available as part of the jManage 1.0.4 release:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109"&gt;http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After applying the patch, you will have to copy WL_HOME\server\lib\weblogic.jar to JMANAGE_HOME\modules\weblogic9.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114325730973469993?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114325730973469993/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114325730973469993' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114325730973469993'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114325730973469993'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/03/weblogic-9x-support-in-jmanage-104.html' title='Weblogic 9.x support in jManage 1.0.4'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114268883134171228</id><published>2006-03-18T08:33:00.000-05:00</published><updated>2006-03-18T08:34:33.713-05:00</updated><title type='text'>SNMP Support in jManage 1.0.4</title><content type='html'>jManage 1.0.4 supports SNMP version 1 with "public" community string. As jManage tries to map the SNMP information to MBeans, it uses snmp-oids.properties file to map SNMP OIDs to MBean attribute names.&lt;br /&gt;&lt;br /&gt;Currently, snmp-oids.properties file contains Solaris OIDs. If you add more OIDs here, please share them with the community.&lt;br /&gt;&lt;br /&gt;SNMP support is primitive at this point, and we are looking to get some feedback from you. Please let us know if you use jManage to connect to a SNMP device, and what improvements you are looking for.&lt;br /&gt;&lt;br /&gt;jManage is not a replacement for a Network Management System like OpenNMS, but it tries to provide read-only view of some interesting attribute values.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114268883134171228?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114268883134171228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114268883134171228' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114268883134171228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114268883134171228'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/03/snmp-support-in-jmanage-104.html' title='SNMP Support in jManage 1.0.4'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114264893370311919</id><published>2006-03-17T21:28:00.000-05:00</published><updated>2006-03-17T21:28:54.026-05:00</updated><title type='text'>jManage 1.0.4 released</title><content type='html'>jManage 1.0.4 is a maintenance release in the 1.0 series, with some bug fixes and improved support for SNMP.&lt;br /&gt;&lt;br /&gt;Currently jManage only supports SNMP version 1 with "public" community name. The SNMP OIDs are configured in snmp-oids.properties. Currently, this file only contains Solaris OIDs. You can add more OIDs to this file.&lt;br /&gt;&lt;br /&gt;You can download jManage 1.0.4 at:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&amp;release_id=402532"&gt;http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&amp;release_id=402532&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Changes:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Bugs fixed:&lt;br /&gt;&lt;br /&gt;1392503 - SNMP port entered through UI is not being used&lt;br /&gt;1445291 - .sh files do not work with cygwin&lt;br /&gt;1431102 - Allow other users with admin access to unlock "admin" user&lt;br /&gt;1445126 - jManage fails with quoted object names&lt;br /&gt;1452904 - Rename "weblogic61" to "weblogic" in application-type-config&lt;br /&gt;&lt;br /&gt;Feature Requests:&lt;br /&gt;&lt;br /&gt;1419292 - Allow users to add custom classpath to jmanage classpath&lt;br /&gt;1452896 - SNMP: Support for Solaris OIDs&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114264893370311919?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114264893370311919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114264893370311919' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114264893370311919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114264893370311919'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/03/jmanage-104-released.html' title='jManage 1.0.4 released'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114202424144758486</id><published>2006-03-10T15:57:00.000-05:00</published><updated>2006-03-10T15:57:22.133-05:00</updated><title type='text'>Nominate jManage for 2006 SF.net Community Choice Awards</title><content type='html'>SourceForge is collecting nominations for 2006 Community Choice Awards. If you like jManage,&lt;br /&gt; please take a second to nominate jManage:&lt;br /&gt;&lt;br /&gt; &lt;a href="http://www.wilsonresearch.com/2006/ostgawards06/ostgawards12.php" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;http://www.wilsonresearch.com&lt;wbr&gt;/2006/ostgawards06/ostgawards12&lt;wbr&gt;.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; Nominations must be entered by March 15th.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114202424144758486?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114202424144758486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114202424144758486' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114202424144758486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114202424144758486'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/03/nominate-jmanage-for-2006-sfnet.html' title='Nominate jManage for 2006 SF.net Community Choice Awards'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-114178260665849271</id><published>2006-03-07T20:50:00.000-05:00</published><updated>2006-03-07T20:52:50.586-05:00</updated><title type='text'>jManage Alerts with JBoss</title><content type='html'>Before setting up Alerts in jManage for JBoss, you need to copy "jmanage-jboss.jar" from &amp;lt;jmanage-home&amp;gt;/modules/jboss to &amp;lt;jboss-server-config&amp;gt;/lib.&lt;br /&gt;&lt;br /&gt;For example, if you are running the "default" JBoss server configuration, copy this jar to: &amp;lt;jboss-home&amp;gt;/server/default/lib.&lt;br /&gt;&lt;br /&gt;You will need to restart JBoss, after copying the file.&lt;br /&gt;&lt;br /&gt;Also note that jManage comes with JBoss 3.2.4 jars. If you are connecting to JBoss 4.0, you need to copy the 4.0 jars to &amp;lt;jmanage-home&amp;gt;/modules/jboss directory.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-114178260665849271?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/114178260665849271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=114178260665849271' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114178260665849271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/114178260665849271'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/03/jmanage-alerts-with-jboss.html' title='jManage Alerts with JBoss'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113781378032660176</id><published>2006-01-20T22:04:00.000-05:00</published><updated>2006-01-20T22:23:00.696-05:00</updated><title type='text'>jManage configuration files you should know about</title><content type='html'>jManage configuration files can be found under the config directory. You can modify some of these files to customize jManage for your needs.&lt;br /&gt;&lt;br /&gt;Following is a list of important jManage configuration files and their usages:&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;config.xml&lt;/span&gt;&lt;br /&gt;This files contains the configured applications, alerts, graphs, etc.&lt;br /&gt;You will normaly not edit this file by hand.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jmanage-key&lt;/span&gt;&lt;br /&gt;This file contains the key encrypted using the admin password.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jmanage-users.xml&lt;/span&gt;&lt;br /&gt;Contains jManage users.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jmanage-user-roles.xml&lt;/span&gt;&lt;br /&gt;Edit this file to add more roles.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;acl-config.properties&lt;/span&gt;&lt;br /&gt;Contains access control list. See this &lt;a href="http://www.jmanage.org/documentation/jmanage0.5/accessControl.html"&gt;doc&lt;/a&gt; for more information.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jetty-config.xml&lt;/span&gt;&lt;br /&gt;The Jetty configuration file. You will need to edit this file if you want to change the default port for jManage. See &lt;a href="http://jetty.mortbay.org/jetty/tut/XmlConfiguration.html"&gt;Jetty documentation&lt;/a&gt; for more information.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jmanage.properties&lt;/span&gt;&lt;br /&gt;General jManage configurations.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;logging.properties&lt;/span&gt;&lt;br /&gt;jManage uses JDK logging system. This the JDK logging configuration file.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;html-data-format.properties&lt;/span&gt;&lt;br /&gt;Data format configurations for web interface.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;text-data-format.properties&lt;/span&gt;&lt;br /&gt;Data format configurations for command-line interface.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;jmanage-auth.conf&lt;/span&gt;&lt;br /&gt;JAAS authentication configuration file.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;external-user-roles.properties&lt;/span&gt;&lt;br /&gt;User to role mapping, if you have configured a different authentication module in jmanage-auth.conf.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113781378032660176?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113781378032660176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113781378032660176' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113781378032660176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113781378032660176'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/01/jmanage-configuration-files-you-should.html' title='jManage configuration files you should know about'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113742366433199958</id><published>2006-01-16T10:01:00.000-05:00</published><updated>2006-01-16T10:01:06.666-05:00</updated><title type='text'>An introduction to jManage 1.0</title><content type='html'>There is a good article on JavaWorld which introduces readers to the features of jManage JMX client using J2SE 5.0 MBeans as examples. You can read the article &lt;a href="http://www.javaworld.com/javaworld/jw-01-2006/jw-0116-jmanage.html"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113742366433199958?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113742366433199958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113742366433199958' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113742366433199958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113742366433199958'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/01/introduction-to-jmanage-10.html' title='An introduction to jManage 1.0'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113700643876821757</id><published>2006-01-11T14:07:00.000-05:00</published><updated>2006-01-11T14:07:19.163-05:00</updated><title type='text'>Connecting to a "Cluster" using jManage</title><content type='html'>&lt;em&gt;Zarar Siddiqi&lt;/em&gt; has written an article titled "Using JMX and J2SE 5.0 to Securely Manage Web Applications". This article includes the cluster&lt;br /&gt;management feature of jmanage:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://today.java.net/pub/a/today/2005/11/15/using-jmx-to-manage-web-applications.html?page=2#jmanage"&gt;http://today.java.net/pub/a/today/2005/11/15/using-jmx-to-manage-web-applications.html?page=2#jmanage&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113700643876821757?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113700643876821757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113700643876821757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113700643876821757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113700643876821757'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/01/connecting-to-cluster-using-jmanage.html' title='Connecting to a &quot;Cluster&quot; using jManage'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113676737426251207</id><published>2006-01-08T19:40:00.000-05:00</published><updated>2006-09-19T21:30:16.953-04:00</updated><title type='text'>Adding Custom Login Modules to jManage</title><content type='html'>&lt;b&gt;Use case&lt;/b&gt;&lt;br /&gt;I already have a set of users categorized under various groups. How can I configure jManage to use this (external) user base for authentication and authorization?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Solution&lt;/b&gt;&lt;br /&gt;&lt;u&gt;Authentication&lt;/u&gt;&lt;br /&gt;Prepare jManage to use a custom login module by configuring the login module class in jmanage-auth.conf file. Custom login module should implement javax.security.auth.spi.LoginModule and login() method, where the actual authentication logic goes, should use NameCallback and PasswordCallback of javax.security.auth.callback package to retrieve the wrapped username and password respectively. A sample &lt;a href="http://jmanage.cvs.sourceforge.net/jmanage/jmanage/auth/src/main/java/org/jmanage/core/auth/LoginModule.java?view=markup"&gt;LoginModule&lt;/a&gt; for reference.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Authorization&lt;/u&gt;&lt;br /&gt;1. jManage comes with two pre-configured groups, Administrator and User. More such groups can be added by configuring the same in jmanage-user-roles.xml file.&lt;br /&gt;&lt;br /&gt;2. In order to make jManage aware of various user to group relationships, the same should be configured in external-user-roles.properties file. This file stores the necessary user-groups mapping for external users and it comes with a default configuration where in all users are mapped to Administrator group. One should edit this file to make appropriate changes.&lt;br /&gt;&lt;br /&gt;e.g.&lt;br /&gt;User X belongs to groups A and B, then the relationship should be configured in external-user-roles.properties file as X=A,B.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113676737426251207?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113676737426251207/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113676737426251207' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113676737426251207'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113676737426251207'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2006/01/adding-custom-login-modules-to-jmanage.html' title='Adding Custom Login Modules to jManage'/><author><name>Shashank Bellary</name><uri>http://www.blogger.com/profile/08907363528578604440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://static.flickr.com/30/64826448_e6b1c21ee2_m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113588770910061180</id><published>2005-12-29T15:21:00.000-05:00</published><updated>2005-12-29T15:22:35.166-05:00</updated><title type='text'>jManage.org --&gt; second most popular site with JMX tag</title><content type='html'>It is interesting to find that jManage.org is the second most popular site tagged with the keyword "JMX" on del.icio.us:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://del.icio.us/popular/jmx"&gt;http://del.icio.us/popular/jmx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://del.icio.us/"&gt;del.icio.us&lt;/a&gt; provides a "tag" based mechanism to search content.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113588770910061180?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113588770910061180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113588770910061180' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113588770910061180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113588770910061180'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/12/jmanageorg-second-most-popular-site.html' title='jManage.org --&gt; second most popular site with JMX tag'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113578658430029799</id><published>2005-12-28T11:16:00.000-05:00</published><updated>2005-12-28T11:16:24.353-05:00</updated><title type='text'>Get notified on new jManage releases</title><content type='html'>jmanage-announce is the new mailing list for notification on new releases.&lt;br /&gt;Please subscribe to get notified about the new releases:&lt;br /&gt;&lt;br /&gt;http://lists.sourceforge.net/lists/listinfo/jmanage-announce&lt;br /&gt;&lt;br /&gt;If you have already subscribed to &lt;a href="http://lists.sourceforge.net/lists/listinfo/jmanage-users"&gt;jmanage-users&lt;/a&gt; mailing list, &lt;br /&gt;there is no need to subscribe to jmanage-announce.&lt;br /&gt;&lt;br /&gt;When a new version of jManage is available, notification will be sent to both&lt;br /&gt;jmanage-users and jmanage-announce mailing lists.&lt;br /&gt;&lt;br /&gt;jmanage-announce is a low volume mailing list, limited to just release notifications.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113578658430029799?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113578658430029799/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113578658430029799' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113578658430029799'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113578658430029799'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/12/get-notified-on-new-jmanage-releases.html' title='Get notified on new jManage releases'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113569873059975555</id><published>2005-12-27T10:52:00.000-05:00</published><updated>2005-12-27T10:52:10.696-05:00</updated><title type='text'>jManage 1.0.1 released</title><content type='html'>jManage 1.0.1 is the first maitenance release in the 1.0 series, with some important bug fixes and new features. &lt;br /&gt; &lt;br /&gt;You can download 1.0.1 from: &lt;br /&gt; &lt;br /&gt;http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&amp;release_id=380773 &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Changes:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Feature Requests:&lt;br /&gt;&lt;br /&gt;1389736 - Add support for modifying array data types&lt;br /&gt;1378203 - Improve the display of array data types&lt;br /&gt;1388556 - Add support for Formatting data based on CompositeType&lt;br /&gt;1374698 - Can't see exception contents when operation fails&lt;br /&gt;1374980 - Include both *.cmd and *.sh in .gz and .zip distributions&lt;br /&gt;&lt;br /&gt;Bugs fixed:&lt;br /&gt;&lt;br /&gt;1380782 - NPE in AuthServiceImpl.login&lt;br /&gt;1378197 - Connection not being closed during graph view&lt;br /&gt;1379756 - cannot view EJB 3.0 info on JBoss&lt;br /&gt;1379511 - buttons look like inactive&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113569873059975555?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113569873059975555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113569873059975555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113569873059975555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113569873059975555'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/12/jmanage-101-released.html' title='jManage 1.0.1 released'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113388373104686171</id><published>2005-12-06T10:42:00.000-05:00</published><updated>2005-12-06T10:42:11.163-05:00</updated><title type='text'>jManage 1.0 final released</title><content type='html'>We are pleased to announce the release of jManage 1.0 final. This is a result of a lot of hard work by the jManage contributors and feedback from the jManage users.&lt;br /&gt;&lt;br /&gt;jManage is a open source, web and command-line based JMX client, which provides a centralized console for managing application clusters and distributed-application environments. jManage goes beyond an ordinary JMX client by providing features like Alerts, Graphs, Security, SNMP support, etc. The jManage mission is to provide an open source management platform, which can be used to manage and monitor complete production environment. &lt;br /&gt;&lt;br /&gt;We recommend that you upgrade from 0.5 release to 1.0, to make use of new features like Alerts, Graphs, SNMP support, etc. &lt;br /&gt;jManage 1.0 can be downloaded from:&lt;br /&gt;&lt;br /&gt;http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&amp;release_id=375944&lt;br /&gt;&lt;br /&gt;Following is a list of new features in 1.0:&lt;br /&gt;&lt;br /&gt;- Graphs&lt;br /&gt;- Alerts&lt;br /&gt;- Basic SNMP support.&lt;br /&gt;- Support for Open MBean types: CompositeData and TabularData.&lt;br /&gt;- Framework to define DataFormat objects for custom classes.&lt;br /&gt;  See html-data-format.properties and text-data-format.properties under config.&lt;br /&gt;- Support for external login modules (JAAS based with name and password callback)&lt;br /&gt;- Changes to application type management (introduced application-type-config.xml)&lt;br /&gt;- Changed jmanage startup to use jetty-config.xml. This moves the jmanage port &lt;br /&gt;configuration and also the SSL configuration to jetty-config.xml. Please&lt;br /&gt;refer Jetty documentation to modify this file.&lt;br /&gt;- Added exception handling for JSPs.&lt;br /&gt;- Added support for viewing XML files.&lt;br /&gt;- New components based source structure. The build is now done using Maven.&lt;br /&gt;&lt;br /&gt;To see a complete list of features, please visit http://www.jmanage.org.&lt;br /&gt;&lt;br /&gt;Please send an email to team@jmanage.org with feedback.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Rakesh Kalra&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113388373104686171?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113388373104686171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113388373104686171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113388373104686171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113388373104686171'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/12/jmanage-10-final-released.html' title='jManage 1.0 final released'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113216696218949310</id><published>2005-11-16T13:49:00.000-05:00</published><updated>2005-11-16T13:53:01.186-05:00</updated><title type='text'>jManage 1.0 beta2 is now available</title><content type='html'>You can download jManage 1.0 beta2 &lt;a href="http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109&amp;amp;release_id=371248%20%20"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Release Notes&lt;/u&gt; :&lt;br /&gt;&lt;br /&gt;This is the beta2 release of the much awaited 1.0 version. Please see &lt;a href="http://www.jmanage.org"&gt;jManage home page&lt;/a&gt; for the list of features in 1.0.&lt;br /&gt;&lt;br /&gt;To upgrade an existng jManage installation, please copy all files from the old jmanage_home/config dir to the new jmanage_home/config dir. E.g. copy files from jmanage-0.5.4/config to jmanage-1.0-beta2/config dir ("cp -r" on unix does the trick).&lt;br /&gt;Please make sure you copy all files, specially "jmanage-key".&lt;br /&gt;&lt;br /&gt;The following 0.5 install guide still holds good (except that the port number is now configured in jetty-config.xml):&lt;br /&gt;&lt;br /&gt;&lt;a href="http://jmanage.org/documentation/jmanage0.5/install.html"&gt;http://jmanage.org/documentation/jmanage0.5/install.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Changes since 1.0 beta&lt;/u&gt; :&lt;br /&gt;&lt;br /&gt;Feature Requests:&lt;br /&gt;&lt;br /&gt;1333311 - Add to Application, etc, via Wildcard Reference&lt;br /&gt;1357757 - Improve graphing module by adding yaxis label &amp;amp; scale factor&lt;br /&gt;&lt;br /&gt;Bugs Fixed:&lt;br /&gt;&lt;br /&gt;1350519 - NPE in connectionFailed.jsp&lt;br /&gt;1354263 - Cluster level operations don't work in 1.0 beta&lt;br /&gt;1351764 - #!/bin/sh needs to be first line in shell scripts&lt;br /&gt;1350515 - keygen.sh does not work&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113216696218949310?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113216696218949310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113216696218949310' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113216696218949310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113216696218949310'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/11/jmanage-10-beta2-is-now-available.html' title='jManage 1.0 beta2 is now available'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113104683933868583</id><published>2005-11-03T14:40:00.000-05:00</published><updated>2005-11-03T14:52:59.256-05:00</updated><title type='text'>Using jManage 1.0 to connect to JDK 1.5</title><content type='html'>JDK1.5 exposes mangement information via a set of MBean registered in the platform MBeanServer. jManage can be used to manage and monitor a JDK 1.5 application.&lt;br /&gt;&lt;br /&gt;To enable a JDK 1.5 application for remote monitoring, add the following system properties to your JDK1.5 application:&lt;br /&gt;&lt;br /&gt;-Dcom.sun.management.jmxremote.port=9999&lt;br /&gt;-Dcom.sun.management.jmxremote.authenticate=false&lt;br /&gt;-Dcom.sun.management.jmxremote.ssl=false&lt;br /&gt;&lt;br /&gt;Add this application in jManage as a JSR160 application with the following URL:&lt;br /&gt;&lt;br /&gt;service:jmx:rmi:///jndi/rmi://localhost:9999/jmxrmi&lt;br /&gt;&lt;br /&gt;You will see that you can monitor and manage ClassLoading, Memory, Threads, etc. You can even change the log level of your application, if your application uses JDK logging API.&lt;br /&gt;&lt;br /&gt;Note that it is important to enable authentication for your production JDK1.5 application. To enable authentication and access control, please read &lt;a href="http://java.sun.com/j2se/1.5.0/docs/guide/management/agent.html#PasswordAccessFiles"&gt;this&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113104683933868583?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113104683933868583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113104683933868583' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113104683933868583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113104683933868583'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/11/using-jmanage-10-to-connect-to-jdk-15.html' title='Using jManage 1.0 to connect to JDK 1.5'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-18333615.post-113037099771463021</id><published>2005-10-26T19:56:00.000-04:00</published><updated>2005-10-26T19:56:37.716-04:00</updated><title type='text'>jManage will continue to use Apache 2.0 license</title><content type='html'>jManage was considering moving to LGPL, starting with 1.0 release. Based on the user feedback, jManage team has decided to continue with the Apache 2.0 license.&lt;br /&gt;&lt;br /&gt;We have also started releasing 1.0 builds under Apache 2.0. These are available for download &lt;a href="http://sourceforge.net/project/showfiles.php?group_id=111374&amp;package_id=166109"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/18333615-113037099771463021?l=jmanage.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jmanage.blogspot.com/feeds/113037099771463021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=18333615&amp;postID=113037099771463021' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113037099771463021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/18333615/posts/default/113037099771463021'/><link rel='alternate' type='text/html' href='http://jmanage.blogspot.com/2005/10/jmanage-will-continue-to-use-apache-20.html' title='jManage will continue to use Apache 2.0 license'/><author><name>Rakesh Kalra</name><uri>http://www.blogger.com/profile/02255474325630318526</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
