<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									How to expose some utility method in JMX console? - Developer Network Q&amp;A				            </title>
            <link>https://community.onenetwork.com/sdk-forum/Question-1653/</link>
            <description>BY Network Community Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 19 May 2026 16:21:39 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>-</title>
                        <link>https://community.onenetwork.com/sdk-forum/Question-1653/#post-5402</link>
                        <pubDate>Wed, 14 Jun 2017 15:06:00 +0000</pubDate>
                        <description><![CDATA[To my knowledge, combo fields are not supported and you have to stick with primitives like numbers, Strings and booleans]]></description>
                        <content:encoded><![CDATA[<p>To my knowledge, combo fields are not supported and you have to stick with primitives like numbers, Strings and booleans</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>GregMerrill</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/Question-1653/#post-5402</guid>
                    </item>
				                    <item>
                        <title>-</title>
                        <link>https://community.onenetwork.com/sdk-forum/Question-1653/#post-5401</link>
                        <pubDate>Wed, 14 Jun 2017 13:06:00 +0000</pubDate>
                        <description><![CDATA[Thanks, Greg.  I see controls on JMX UI are taken from method arguments. Does JMX bean UI support only text inputs or we can show some combo with dynamically generated values?]]></description>
                        <content:encoded><![CDATA[<p>Thanks, Greg.  I see controls on JMX UI are taken from method arguments. Does JMX bean UI support only text inputs or we can show some combo with dynamically generated values?</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>Alexey Ulyanov</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/Question-1653/#post-5401</guid>
                    </item>
				                    <item>
                        <title></title>
                        <link>https://community.onenetwork.com/sdk-forum/Question-1653/#post-4632</link>
                        <pubDate>Wed, 14 Jun 2017 11:06:00 +0000</pubDate>
                        <description><![CDATA[Create an interface named SomethingServiceMBean which has all the methods you want to expose to JMX.  The methods should accept only primitives and Strings as inputs, and return String as ou...]]></description>
                        <content:encoded><![CDATA[<ol>
<li>Create an interface named <em>Something</em>ServiceMBean which has all the methods you want to expose to JMX.  The methods should accept only primitives and Strings as inputs, and return String as output.  For example, see com.onenetwork.transportation.jmx.TMSSMCServiceMBean</li>
<li>Create an implementation of this interface called <em>Something</em>Service.  It should extend com.transcendsys.platform.base.jmx.AbstractMBean.  It is strongly recommended you annotate methods with @Description, @ParamNames and @ParamDescriptions annotations to make them more legible in the JMX console.  For example, see com.onenetwork.transportation.jmx.TMSSMCService</li>
<li>
<p>In your ModuleContextListener, register your MBean from the moduleInitialized() method.  For example:</p>
<p>MBeanServer mbeanServer = (MBeanServer) MBeanServerFactory.findMBeanServer(null).get(0);
mbeanServer.registerMBean(new TMSSMCService(), new ObjectName(TMSSMCService.NAME));</p>
</li>
</ol>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>GregMerrill</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/Question-1653/#post-4632</guid>
                    </item>
				                    <item>
                        <title>How to expose some utility method in JMX console?</title>
                        <link>https://community.onenetwork.com/sdk-forum/Question-1653/#post-3616</link>
                        <pubDate>Wed, 14 Jun 2017 10:06:00 +0000</pubDate>
                        <description><![CDATA[Hi,
I want to be able to execute some utility function from JMX console.
I know that I should add some bean into module somewhere but not sure about details.
How to expose some utility metho...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>I want to be able to execute some utility function from JMX console.
I know that I should add some bean into module somewhere but not sure about details.</p>
<p>How to expose some utility method in JMX console?</p>]]></content:encoded>
						                            <category domain="https://community.onenetwork.com/sdk-forum/">Developer Network Q&amp;A</category>                        <dc:creator>Alexey Ulyanov</dc:creator>
                        <guid isPermaLink="true">https://community.onenetwork.com/sdk-forum/Question-1653/#post-3616</guid>
                    </item>
							        </channel>
        </rss>
		