<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Description of Java hs_err error log files</title>
	<atom:link href="http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/</link>
	<description>Christian Stottmeister on code, security and projectmanagement.</description>
	<lastBuildDate>Fri, 04 Jun 2010 07:53:13 +0200</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hs_err decyphered&#8230; the followup at stotti.blog()</title>
		<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/comment-page-1/#comment-14847</link>
		<dc:creator>hs_err decyphered&#8230; the followup at stotti.blog()</dc:creator>
		<pubDate>Wed, 15 Apr 2009 20:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=160#comment-14847</guid>
		<description>[...] [update] This information is related to developers only. If you have Java problems or want to know more about hs_err errror logs please refer to this more general post.[/update] [...]</description>
		<content:encoded><![CDATA[<p>[...] [update] This information is related to developers only. If you have Java problems or want to know more about hs_err errror logs please refer to this more general post.[/update] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti</title>
		<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/comment-page-1/#comment-14667</link>
		<dc:creator>stotti</dc:creator>
		<pubDate>Fri, 10 Apr 2009 12:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=160#comment-14667</guid>
		<description>Thanks for the reply, Jeff. Sorry to answer you this late.

In Java versions before 1.5 (such as v1.4.2) the JVM writes error logs to the current working directory of the application. So please check if the working directory of your app is the desktop, i.e. the application is being started from there.

If the current directory is not writable the hs_err log is saved to the system temporary directory, which may be identified by a call to System.getProperty(&quot;java.io.tmpdir&quot;); If this method returns the desktop location, you could try to set it by calling System.setProperty(&quot;java.io.tmpdir&quot;, &quot;C:\temp\&quot;); directly from your code - if you have control over the legacy app. Otherwise try setting the global path for temporary files via Windows.

Please comment again when it worked out or you need assistance.

Best wishes
Stotti</description>
		<content:encoded><![CDATA[<p>Thanks for the reply, Jeff. Sorry to answer you this late.</p>
<p>In Java versions before 1.5 (such as v1.4.2) the JVM writes error logs to the current working directory of the application. So please check if the working directory of your app is the desktop, i.e. the application is being started from there.</p>
<p>If the current directory is not writable the hs_err log is saved to the system temporary directory, which may be identified by a call to System.getProperty(&#8221;java.io.tmpdir&#8221;); If this method returns the desktop location, you could try to set it by calling System.setProperty(&#8221;java.io.tmpdir&#8221;, &#8220;C:\temp\&#8221;); directly from your code &#8211; if you have control over the legacy app. Otherwise try setting the global path for temporary files via Windows.</p>
<p>Please comment again when it worked out or you need assistance.</p>
<p>Best wishes<br />
Stotti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/comment-page-1/#comment-14399</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 28 Mar 2009 22:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=160#comment-14399</guid>
		<description>1.4.2_12.  Unfortunately, a legacy piece of software requires that we not update to anything newer.</description>
		<content:encoded><![CDATA[<p>1.4.2_12.  Unfortunately, a legacy piece of software requires that we not update to anything newer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stotti</title>
		<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/comment-page-1/#comment-14394</link>
		<dc:creator>stotti</dc:creator>
		<pubDate>Wed, 25 Mar 2009 23:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=160#comment-14394</guid>
		<description>Hi Jeff, can you please state the Java version you are using? The flag depends on the JVM version.
Please comment again and I&#039;ll see if I can help you out.

Best regards
Stotti</description>
		<content:encoded><![CDATA[<p>Hi Jeff, can you please state the Java version you are using? The flag depends on the JVM version.<br />
Please comment again and I&#8217;ll see if I can help you out.</p>
<p>Best regards<br />
Stotti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.stottmeister.com/blog/2009/03/18/description-of-java-hs_err-error-log-files/comment-page-1/#comment-14393</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 25 Mar 2009 22:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.stottmeister.com/blog/?p=160#comment-14393</guid>
		<description>How would you recommend preventing these files from appearing on a user&#039;s desktop, or forcing the file to go to an out of the way location?  I&#039;m running Windows machines where this is happening.

I&#039;ve added to the runtime parameter: -XX:ErrorFile=C:\TEMP\hs_err_pid.log, but it didn&#039;t seem to have any effect.</description>
		<content:encoded><![CDATA[<p>How would you recommend preventing these files from appearing on a user&#8217;s desktop, or forcing the file to go to an out of the way location?  I&#8217;m running Windows machines where this is happening.</p>
<p>I&#8217;ve added to the runtime parameter: -XX:ErrorFile=C:\TEMP\hs_err_pid.log, but it didn&#8217;t seem to have any effect.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
