<?xml version="1.0" encoding="utf-8"?><!-- generator="b2evolution/6.9.7-stable" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Mr N - Latest Comments on JMX examples don't work under windows</title>
		<link>https://www.bigsoft.co.uk/blog/?disp=comments</link>
		<atom:link rel="self" type="application/rss+xml" href="https://www.bigsoft.co.uk/blog/?tempskin=_rss2&#38;disp=comments&#38;p=94" />
		<description></description>
		<language>en-GB</language>
		<docs>http://backend.userland.com/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=6.9.7-stable"/>
		<ttl>60</ttl>
		<item>
			<title> Mayank [Visitor] in response to: JMX examples don't work under windows</title>
			<pubDate>Wed, 07 Sep 2011 05:10:53 +0000</pubDate>
			<dc:creator><span class="user anonymous" rel="bubbletip_comment_681">Mayank</span> <span class="bUser-anonymous-tag">[Visitor]</span></dc:creator>
			<guid isPermaLink="false">c681@https://www.bigsoft.co.uk/</guid>
			<description>I am trying to connect to a remote machne using jconsole through windows command line. But not able to connect, here is the command I am using : jconsole host:38686 -J-usernema=admin -J-password=admin&lt;br /&gt;</description>
			<content:encoded><![CDATA[I am trying to connect to a remote machne using jconsole through windows command line. But not able to connect, here is the command I am using : jconsole host:38686 -J-usernema=admin -J-password=admin<br />]]></content:encoded>
			<link>https://www.bigsoft.co.uk/blog/2008/11/25/jmx-examples-don-t-work-under-windows#c681</link>
		</item>
		<item>
			<title> Mika Pussinen [Visitor] in response to: JMX examples don't work under windows</title>
			<pubDate>Tue, 28 Jun 2011 10:22:04 +0000</pubDate>
			<dc:creator><span class="user anonymous" rel="bubbletip_comment_639">Mika Pussinen</span> <span class="bUser-anonymous-tag">[Visitor]</span></dc:creator>
			<guid isPermaLink="false">c639@https://www.bigsoft.co.uk/</guid>
			<description>&lt;p&gt;Thanks for the info. Helped me as well. Before I knew about this TMP environment variable fix only workaround was to tell jmxremote port explicitly in command line and use remote connection facility of jconsole.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;starting of java example app to examine: java -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8081 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -jar Notepad.jar&lt;/li&gt;
&lt;li&gt;starting of jconsole: jconsole localhost:8081&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;But after setting TMP to not tilde path everything worked fine without this remote connection workaround.&lt;br /&gt;&lt;/p&gt;</description>
			<content:encoded><![CDATA[<p>Thanks for the info. Helped me as well. Before I knew about this TMP environment variable fix only workaround was to tell jmxremote port explicitly in command line and use remote connection facility of jconsole.</p>
<ul>
<li>starting of java example app to examine: java -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8081 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -jar Notepad.jar</li>
<li>starting of jconsole: jconsole localhost:8081</li>
</ul>
<p>But after setting TMP to not tilde path everything worked fine without this remote connection workaround.<br /></p>]]></content:encoded>
			<link>https://www.bigsoft.co.uk/blog/2008/11/25/jmx-examples-don-t-work-under-windows#c639</link>
		</item>
		<item>
			<title>davidnewcomb [Member] in response to: JMX examples don't work under windows</title>
			<pubDate>Mon, 08 Dec 2008 23:49:03 +0000</pubDate>
			<dc:creator><a href="https://www.bigsoft.co.uk/?disp=user&amp;user_ID=1" title="Show the user profile" class="login user nowrap" rel="bubbletip_user_1"><span class="identity_link_username">davidnewcomb</span></a> <span class="bUser-member-tag">[Member]</span></dc:creator>
			<guid isPermaLink="false">c211@https://www.bigsoft.co.uk/</guid>
			<description>I understand the DOS abbreviation and that there is a real directory but if your %TMP% folder contains tildes it just doesn&amp;#8217;t work!</description>
			<content:encoded><![CDATA[I understand the DOS abbreviation and that there is a real directory but if your %TMP% folder contains tildes it just doesn&#8217;t work!]]></content:encoded>
			<link>https://www.bigsoft.co.uk/blog/2008/11/25/jmx-examples-don-t-work-under-windows#c211</link>
		</item>
		<item>
			<title> Andrew Swan [Visitor] in response to: JMX examples don't work under windows</title>
			<pubDate>Mon, 08 Dec 2008 21:40:43 +0000</pubDate>
			<dc:creator><span class="user anonymous" rel="bubbletip_comment_209">Andrew Swan</span> <span class="bUser-anonymous-tag">[Visitor]</span></dc:creator>
			<guid isPermaLink="false">c209@https://www.bigsoft.co.uk/</guid>
			<description>&lt;blockquote&gt;
tilde “~” is Un*x talk for your home directory.&lt;/blockquote&gt;
&lt;p&gt;Maybe true, but in Windows it simply indicates that some characters in a path had to be truncated because they exceeded the MS-DOS 8.3 character limit for file and directory names. So:&lt;/p&gt;
&lt;p&gt;C:\DOCUME~1\davidne\LOCALS~1\Temp&lt;/p&gt;
&lt;p&gt;Is actually an abbreviated version of:&lt;/p&gt;
&lt;p&gt;C:\Documents and Settings\davidne\Local Settings\Temp&lt;/p&gt;
&lt;p&gt;You&amp;#8217;ll find that this directory does in fact exist.&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;</description>
			<content:encoded><![CDATA[<blockquote>
tilde “~” is Un*x talk for your home directory.</blockquote>
<p>Maybe true, but in Windows it simply indicates that some characters in a path had to be truncated because they exceeded the MS-DOS 8.3 character limit for file and directory names. So:</p>
<p>C:\DOCUME~1\davidne\LOCALS~1\Temp</p>
<p>Is actually an abbreviated version of:</p>
<p>C:\Documents and Settings\davidne\Local Settings\Temp</p>
<p>You&#8217;ll find that this directory does in fact exist.</p>
<p>Hope this helps.</p>]]></content:encoded>
			<link>https://www.bigsoft.co.uk/blog/2008/11/25/jmx-examples-don-t-work-under-windows#c209</link>
		</item>
		<item>
			<title> daniel [Visitor] in response to: JMX examples don't work under windows</title>
			<pubDate>Tue, 25 Nov 2008 15:29:16 +0000</pubDate>
			<dc:creator><span class="user anonymous" rel="bubbletip_comment_204">daniel</span> <span class="bUser-anonymous-tag">[Visitor]</span></dc:creator>
			<guid isPermaLink="false">c204@https://www.bigsoft.co.uk/</guid>
			<description>&lt;p&gt;Hi David,&lt;/p&gt;
&lt;p&gt;Thanks for posting that - I&amp;#8217;ve put a link to your post here:
&lt;a href=&quot;http://blogs.sun.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole&quot;&gt;http://blogs.sun.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I hope it can help other developers!&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;&amp;#8211; daniel&lt;/p&gt;</description>
			<content:encoded><![CDATA[<p>Hi David,</p>
<p>Thanks for posting that - I&#8217;ve put a link to your post here:
<a href="http://blogs.sun.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole">http://blogs.sun.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole</a></p>
<p>I hope it can help other developers!</p>
<p>Cheers,</p>
<p>&#8211; daniel</p>]]></content:encoded>
			<link>https://www.bigsoft.co.uk/blog/2008/11/25/jmx-examples-don-t-work-under-windows#c204</link>
		</item>
			</channel>
</rss>
