<?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 for Blog::Log</title>
	<atom:link href="http://www.stpe.se/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stpe.se</link>
	<description>Not a blog, more a log.</description>
	<lastBuildDate>Wed, 30 Jun 2010 20:26:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Hibernate HQL like query using named parameters by ActiveRecord HQL LIKE query with parameters &#171; Dan Schwartz</title>
		<link>http://www.stpe.se/2008/07/hibernate-hql-like-query-named-parameters/comment-page-1/#comment-6316</link>
		<dc:creator>ActiveRecord HQL LIKE query with parameters &#171; Dan Schwartz</dc:creator>
		<pubDate>Wed, 30 Jun 2010 20:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=23#comment-6316</guid>
		<description>[...] a little help from Stefan Pettersson&#8217;s blog I found my solution, add the percent signs inside the [...]</description>
		<content:encoded><![CDATA[<p>[...] a little help from Stefan Pettersson&#8217;s blog I found my solution, add the percent signs inside the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate HQL like query using named parameters by Manish</title>
		<link>http://www.stpe.se/2008/07/hibernate-hql-like-query-named-parameters/comment-page-1/#comment-6308</link>
		<dc:creator>Manish</dc:creator>
		<pubDate>Fri, 11 Jun 2010 07:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=23#comment-6308</guid>
		<description>Thanks a lot it works!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot it works!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate HQL like query using named parameters by sam</title>
		<link>http://www.stpe.se/2008/07/hibernate-hql-like-query-named-parameters/comment-page-1/#comment-6293</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Wed, 05 May 2010 19:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=23#comment-6293</guid>
		<description>session.createQuery(&quot;from Entity where property like :prefix&quot;).setString(&quot;prefix&quot;,myString.concat(&quot;%&quot;)).list();

solved my problem, but actually i was searching for a better solution ...
looks quite dirty to me.</description>
		<content:encoded><![CDATA[<p>session.createQuery(&#8220;from Entity where property like :prefix&#8221;).setString(&#8220;prefix&#8221;,myString.concat(&#8220;%&#8221;)).list();</p>
<p>solved my problem, but actually i was searching for a better solution &#8230;<br />
looks quite dirty to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing GlassFish on Debian Etch or Ubuntu by neozerosv</title>
		<link>http://www.stpe.se/2008/07/installing-glassfish-on-debian-etch-ubunt/comment-page-1/#comment-6291</link>
		<dc:creator>neozerosv</dc:creator>
		<pubDate>Mon, 03 May 2010 20:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=41#comment-6291</guid>
		<description>I had the next problem (Solution at end):

glassfish@localhost:~$asadmin start-domain
Starting Domain domain1, please wait.
Default Log location is /opt/glassfish/domains/domain1/logs/server.log.
Redirecting output to /opt/glassfish/domains/domain1/logs/server.log
Timeout waiting for domain domain1 to go to starting state.
CLI156 Could not start the domain domain1.

Error detail:
java.rmi.server.ExportException: Listen failed on port: 0; nested exception is: java.net.SocketException: Invalid argument
..
Exception :
java.lang.RuntimeException: Admin Server Channel is not initialized

Information:
debian Squeeze AMD64 2.6.32
sun-java6-jdk 6.20-dlj-1

export JAVA_HOME=”/usr/lib/jvm/java-6-sun”
export PATH=”$PATH:/opt/glassfish/bin:/opt/glassfish/lib/ant/bin”

SOLUTION:

The problem was IPv4 and IPv6 Socket listeners, so an change the values:
Edit /etc/sysctl.d/bindv6only.conf
Change net.ipv6.bindv6only = 1 to net.ipv6.bindv6only = 0
Restart service
/etc/init.d/procps restart

Run: asadmin start-domain domain1

And VOILA!!

A found it here http://forums.debian.net/viewtopic.php?f=5&amp;t=47502</description>
		<content:encoded><![CDATA[<p>I had the next problem (Solution at end):</p>
<p>glassfish@localhost:~$asadmin start-domain<br />
Starting Domain domain1, please wait.<br />
Default Log location is /opt/glassfish/domains/domain1/logs/server.log.<br />
Redirecting output to /opt/glassfish/domains/domain1/logs/server.log<br />
Timeout waiting for domain domain1 to go to starting state.<br />
CLI156 Could not start the domain domain1.</p>
<p>Error detail:<br />
java.rmi.server.ExportException: Listen failed on port: 0; nested exception is: java.net.SocketException: Invalid argument<br />
..<br />
Exception :<br />
java.lang.RuntimeException: Admin Server Channel is not initialized</p>
<p>Information:<br />
debian Squeeze AMD64 2.6.32<br />
sun-java6-jdk 6.20-dlj-1</p>
<p>export JAVA_HOME=”/usr/lib/jvm/java-6-sun”<br />
export PATH=”$PATH:/opt/glassfish/bin:/opt/glassfish/lib/ant/bin”</p>
<p>SOLUTION:</p>
<p>The problem was IPv4 and IPv6 Socket listeners, so an change the values:<br />
Edit /etc/sysctl.d/bindv6only.conf<br />
Change net.ipv6.bindv6only = 1 to net.ipv6.bindv6only = 0<br />
Restart service<br />
/etc/init.d/procps restart</p>
<p>Run: asadmin start-domain domain1</p>
<p>And VOILA!!</p>
<p>A found it here <a href="http://forums.debian.net/viewtopic.php?f=5&amp;t=47502" rel="nofollow">http://forums.debian.net/viewtopic.php?f=5&amp;t=47502</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate HQL like query using named parameters by Aditya</title>
		<link>http://www.stpe.se/2008/07/hibernate-hql-like-query-named-parameters/comment-page-1/#comment-6259</link>
		<dc:creator>Aditya</dc:creator>
		<pubDate>Wed, 14 Apr 2010 20:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=23#comment-6259</guid>
		<description>Thanks Stefan....</description>
		<content:encoded><![CDATA[<p>Thanks Stefan&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Google Maps API by Datenvisualisierung (3) &#8211; Tipps, Tools, Webservices und Links &#8211; tobiaskut.de - Open Source &#124; Content Management &#124; Redaktion</title>
		<link>http://www.stpe.se/2010/04/introduction-to-google-maps-api/comment-page-1/#comment-6249</link>
		<dc:creator>Datenvisualisierung (3) &#8211; Tipps, Tools, Webservices und Links &#8211; tobiaskut.de - Open Source &#124; Content Management &#124; Redaktion</dc:creator>
		<pubDate>Mon, 12 Apr 2010 12:22:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=191#comment-6249</guid>
		<description>[...] eigenen Datensätzen in eigenen Anwendungen zu nutzen. Einen gelungenen Schnelleinstieg bietet die Präsentation  von Stefan Petterssen (Google Technology User Group Stockholm) von Anfang April. Natürlich gibt es [...]</description>
		<content:encoded><![CDATA[<p>[...] eigenen Datensätzen in eigenen Anwendungen zu nutzen. Einen gelungenen Schnelleinstieg bietet die Präsentation  von Stefan Petterssen (Google Technology User Group Stockholm) von Anfang April. Natürlich gibt es [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get selected value of radio button using YUI 3 by Michael Murray</title>
		<link>http://www.stpe.se/2009/12/selected-value-radio-button-yui-javascript/comment-page-1/#comment-6245</link>
		<dc:creator>Michael Murray</dc:creator>
		<pubDate>Wed, 31 Mar 2010 02:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=170#comment-6245</guid>
		<description>Your one-liner will work in IE if you include the &#039;selector-css3&#039; module.</description>
		<content:encoded><![CDATA[<p>Your one-liner will work in IE if you include the &#8216;selector-css3&#8242; module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing GlassFish on Debian Etch or Ubuntu by arimus</title>
		<link>http://www.stpe.se/2008/07/installing-glassfish-on-debian-etch-ubunt/comment-page-1/#comment-6244</link>
		<dc:creator>arimus</dc:creator>
		<pubDate>Wed, 24 Mar 2010 01:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=41#comment-6244</guid>
		<description>I have tweaked the above init file to add a &quot;runas&quot; user.  This way you can create a user (i.e. glassfish) and have your glassfish instance running as that user.

You can find the modified file here:  http://entwash.org/glassfish</description>
		<content:encoded><![CDATA[<p>I have tweaked the above init file to add a &#8220;runas&#8221; user.  This way you can create a user (i.e. glassfish) and have your glassfish instance running as that user.</p>
<p>You can find the modified file here:  <a href="http://entwash.org/glassfish" rel="nofollow">http://entwash.org/glassfish</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate HQL like query using named parameters by Diederick</title>
		<link>http://www.stpe.se/2008/07/hibernate-hql-like-query-named-parameters/comment-page-1/#comment-6191</link>
		<dc:creator>Diederick</dc:creator>
		<pubDate>Thu, 28 Jan 2010 10:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=23#comment-6191</guid>
		<description>Excellent. Works with TopLink Essentials as well.</description>
		<content:encoded><![CDATA[<p>Excellent. Works with TopLink Essentials as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Internet Explorer cross-site scripting warning by Dan</title>
		<link>http://www.stpe.se/2009/04/internet-explorer-cross-site-scripting-warning/comment-page-1/#comment-6161</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 13 Jan 2010 17:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.stpe.se/?p=116#comment-6161</guid>
		<description>I have an ajax app that is being broken by this &quot;feature&quot; of IE.

I have tried setting the x-xss-protection header to 0 and verified its in place but it does not disable the stupid feature!

It breaks a request I make to a hidden iframe to generate page content.

anyone had any luck getting legit apps through this feature?</description>
		<content:encoded><![CDATA[<p>I have an ajax app that is being broken by this &#8220;feature&#8221; of IE.</p>
<p>I have tried setting the x-xss-protection header to 0 and verified its in place but it does not disable the stupid feature!</p>
<p>It breaks a request I make to a hidden iframe to generate page content.</p>
<p>anyone had any luck getting legit apps through this feature?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
