<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Modern Computer</title>
	<atom:link href="http://nasvel.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://nasvel.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 16 Sep 2008 11:38:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Using maven to compile java5 code by nasvel</title>
		<link>http://nasvel.wordpress.com/2007/09/28/using-maven-to-compile-java5-code/#comment-828</link>
		<dc:creator>nasvel</dc:creator>
		<pubDate>Tue, 16 Sep 2008 11:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2007/09/28/using-maven-to-compile-java5-code/#comment-828</guid>
		<description>error fixed, thanks ehaszla.</description>
		<content:encoded><![CDATA[<p>error fixed, thanks ehaszla.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using maven to compile java5 code by ehaszla</title>
		<link>http://nasvel.wordpress.com/2007/09/28/using-maven-to-compile-java5-code/#comment-827</link>
		<dc:creator>ehaszla</dc:creator>
		<pubDate>Thu, 04 Sep 2008 21:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2007/09/28/using-maven-to-compile-java5-code/#comment-827</guid>
		<description>In case anyone else tries to cut and past the above code, it has a type:  the closing &quot;plugin&quot; tag is missing the &quot;/&quot;.  (i.e. it should be &quot;&quot;, instead of )</description>
		<content:encoded><![CDATA[<p>In case anyone else tries to cut and past the above code, it has a type:  the closing &#8220;plugin&#8221; tag is missing the &#8220;/&#8221;.  (i.e. it should be &#8220;&#8221;, instead of )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit test EJB3 by nasvel</title>
		<link>http://nasvel.wordpress.com/2008/06/18/unit-test-ejb3/#comment-826</link>
		<dc:creator>nasvel</dc:creator>
		<pubDate>Mon, 30 Jun 2008 10:37:47 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/?p=150#comment-826</guid>
		<description>I hope the EJB3.1 will do a greate step in unit test. I can&#039;t imagine that we would migrate our application (from tomcat+spring) to glassfish without unit tests :)

I&#039;am currently looking for a way to integrate openEJB with dbunit. Every developer in our team uses his own hsqldb on unit test, and we use the &quot;buildSchema&quot; option of openJPA to create the tables automatically 

The problem is the openJPA creates the table only by the first use of the correspondant Entity bean, but the injection of the test data by DBunit is done in the @Before phase, in that stage the table does not exist yet, so dbunit fails. 

I think I need a way to scan the entity beans in classpath and create the tables anteriorly before dbunit injects the dataset. 

Please share your experiences.</description>
		<content:encoded><![CDATA[<p>I hope the EJB3.1 will do a greate step in unit test. I can&#8217;t imagine that we would migrate our application (from tomcat+spring) to glassfish without unit tests <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;am currently looking for a way to integrate openEJB with dbunit. Every developer in our team uses his own hsqldb on unit test, and we use the &#8220;buildSchema&#8221; option of openJPA to create the tables automatically </p>
<p>The problem is the openJPA creates the table only by the first use of the correspondant Entity bean, but the injection of the test data by DBunit is done in the @Before phase, in that stage the table does not exist yet, so dbunit fails. </p>
<p>I think I need a way to scan the entity beans in classpath and create the tables anteriorly before dbunit injects the dataset. </p>
<p>Please share your experiences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unit test EJB3 by dblevins</title>
		<link>http://nasvel.wordpress.com/2008/06/18/unit-test-ejb3/#comment-824</link>
		<dc:creator>dblevins</dc:creator>
		<pubDate>Thu, 19 Jun 2008 02:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/?p=150#comment-824</guid>
		<description>Great post.  You&#039;ll be excited to know that the embedded testing technique that we use in OpenEJB is currently slated to be part of EJB 3.1.  So if all goes well, you&#039;ll start seeing more vendors follow suit.

Another EJB 3.1 improvement is that we will definitely be offering standard JNDI names which will also greatly help the testing scenario as there&#039;ll be a spec defined name you can use to lookup your ejb from the test case.

On the OpenEJB side of JNDI names you can actually set the JNDI names to match Glassfish (or any other &lt;a href=&quot;http://openejb.apache.org/3.0/jndi-names.html&quot; rel=&quot;nofollow&quot;&gt;format&lt;/a&gt;) with the following extra line to your test case:

&lt;code&gt;
props.setProperty(&quot;openejb.jndiname.format&quot;,&quot;{interfaceClass}&quot;);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great post.  You&#8217;ll be excited to know that the embedded testing technique that we use in OpenEJB is currently slated to be part of EJB 3.1.  So if all goes well, you&#8217;ll start seeing more vendors follow suit.</p>
<p>Another EJB 3.1 improvement is that we will definitely be offering standard JNDI names which will also greatly help the testing scenario as there&#8217;ll be a spec defined name you can use to lookup your ejb from the test case.</p>
<p>On the OpenEJB side of JNDI names you can actually set the JNDI names to match Glassfish (or any other <a href="http://openejb.apache.org/3.0/jndi-names.html" rel="nofollow">format</a>) with the following extra line to your test case:</p>
<p><code><br />
props.setProperty("openejb.jndiname.format","{interfaceClass}");<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download youtube flash video with safari by bluebeetleone</title>
		<link>http://nasvel.wordpress.com/2007/11/13/download-youtube-flash-video-with-safari/#comment-810</link>
		<dc:creator>bluebeetleone</dc:creator>
		<pubDate>Sun, 25 Nov 2007 16:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2007/11/13/download-youtube-flash-video-with-safari/#comment-810</guid>
		<description>Hi,

I&#039;m currently testing an open source software named Miro, previously called Democracy Player.

It allows researches &amp; of course also downloads from:
- YouTube
- DailyMotion
- Google video
- &amp; a few more I don&#039;t even heard about before.

It is also available for MacOsX
;o)

http://www.getmiro.com/download/

Bluebeetle(one).</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m currently testing an open source software named Miro, previously called Democracy Player.</p>
<p>It allows researches &amp; of course also downloads from:<br />
- YouTube<br />
- DailyMotion<br />
- Google video<br />
- &amp; a few more I don&#8217;t even heard about before.</p>
<p>It is also available for MacOsX<br />
;o)</p>
<p><a href="http://www.getmiro.com/download/" rel="nofollow">http://www.getmiro.com/download/</a></p>
<p>Bluebeetle(one).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create users in oracle by Mike&#8217;s Musings &#187; [oracle] create a new user</title>
		<link>http://nasvel.wordpress.com/2007/09/17/create-users-in-oracle/#comment-785</link>
		<dc:creator>Mike&#8217;s Musings &#187; [oracle] create a new user</dc:creator>
		<pubDate>Mon, 17 Sep 2007 15:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2007/09/17/create-users-in-oracle/#comment-785</guid>
		<description>[...] H.Tongu&#195;&#167; Y&#196;&#177;lmaz wrote an interesting post today onHere&#8217;s a quick excerptCreation of a new user in Oracle or adding users to an existing database requires many steps out of which ths most important is specifying values for some parameters in the database. Connect as database administrator &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] H.Tongu&Atilde;&sect; Y&Auml;&plusmn;lmaz wrote an interesting post today onHere&#8217;s a quick excerptCreation of a new user in Oracle or adding users to an existing database requires many steps out of which ths most important is specifying values for some parameters in the database. Connect as database administrator &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Firefox] View installed plugins, cache and configuration info by freeeeringtones</title>
		<link>http://nasvel.wordpress.com/2006/07/28/mozilla-firefox-view-installed-plugins-cache-and-configuration-info/#comment-683</link>
		<dc:creator>freeeeringtones</dc:creator>
		<pubDate>Sat, 18 Aug 2007 03:37:51 +0000</pubDate>
		<guid isPermaLink="false">https://nasvel.wordpress.com/2006/07/28/mozilla-firefox-view-installed-plugins-cache-and-configuration-info/#comment-683</guid>
		<description>popular free ringtones 
 
www.thehotstop.info 
 
signature...</description>
		<content:encoded><![CDATA[<p>popular free ringtones </p>
<p><a href="http://www.thehotstop.info" rel="nofollow">http://www.thehotstop.info</a> </p>
<p>signature&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Firefox] View installed plugins, cache and configuration info by casinosfreebonusesv</title>
		<link>http://nasvel.wordpress.com/2006/07/28/mozilla-firefox-view-installed-plugins-cache-and-configuration-info/#comment-638</link>
		<dc:creator>casinosfreebonusesv</dc:creator>
		<pubDate>Sun, 12 Aug 2007 04:52:22 +0000</pubDate>
		<guid isPermaLink="false">https://nasvel.wordpress.com/2006/07/28/mozilla-firefox-view-installed-plugins-cache-and-configuration-info/#comment-638</guid>
		<description>deposit free bonus casino 
see to signature...</description>
		<content:encoded><![CDATA[<p>deposit free bonus casino<br />
see to signature&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Perl] END and DESTROY by TusHeeva</title>
		<link>http://nasvel.wordpress.com/2006/09/29/perl-end-and-destroy/#comment-469</link>
		<dc:creator>TusHeeva</dc:creator>
		<pubDate>Sun, 24 Jun 2007 19:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2006/09/29/perl-end-and-destroy/#comment-469</guid>
		<description>&lt;a href=&quot;http://ford2007.freehostia.com/birmingham-ford.html&quot; rel=&quot;nofollow&quot;&gt;birmingham ford&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://ford2007.freehostia.com/birmingham-ford.html" rel="nofollow">birmingham ford</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [CSS] Projectseven Lab by tim</title>
		<link>http://nasvel.wordpress.com/2006/09/01/projectseven-css-lab/#comment-59</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Sun, 07 Jan 2007 19:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://nasvel.wordpress.com/2006/09/01/projectseven-css-lab/#comment-59</guid>
		<description>Class mate.
Tim</description>
		<content:encoded><![CDATA[<p>Class mate.<br />
Tim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
