<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Techieexchange's Techblog</title>
	<atom:link href="http://techieexchange.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://techieexchange.wordpress.com</link>
	<description>Technical discussion and tutorial contribution related to J2EE, JEE, Jboss Seam, JSF, Eclipse, Spring, Hibernate, RichFaces, AJAX, Google GWT, Web Application frameworks etc.,</description>
	<lastBuildDate>Thu, 10 Dec 2009 20:25:59 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on RAD: Seam development with Eclipse and Tomcat Step-by-Step-Tutorial Screencast by Run Seam projects in eclipse on Tomcat &#171; a programmer in jail</title>
		<link>http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-step-tutorial-screencast/#comment-131</link>
		<dc:creator>Run Seam projects in eclipse on Tomcat &#171; a programmer in jail</dc:creator>
		<pubDate>Thu, 10 Dec 2009 20:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-step-tutorial-screencast/#comment-131</guid>
		<description>[...] Run Seam projects in eclipse on&#160;Tomcat  December 10, 2009 Ehsan Leave a comment Go to comments    Hi I found one of the best solution for creating and running seam projects in eclipse on Tomcat so quickly : http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-... [...]</description>
		<content:encoded><![CDATA[<p>[...] Run Seam projects in eclipse on&nbsp;Tomcat  December 10, 2009 Ehsan Leave a comment Go to comments    Hi I found one of the best solution for creating and running seam projects in eclipse on Tomcat so quickly : <a href="http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-.." rel="nofollow">http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-..</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make JBoss Seam work with Eclipse (for Windows) by Babu</title>
		<link>http://techieexchange.wordpress.com/2008/02/01/how-to-make-jboss-seam-work-with-eclipse-for-windows/#comment-130</link>
		<dc:creator>Babu</dc:creator>
		<pubDate>Fri, 06 Nov 2009 02:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=55#comment-130</guid>
		<description>Hi,

I am getting the following error. &quot;Server JBoss v5.1.0 at localhost was unable to start within 50 seconds. If the server requires more time, try increasing the timeout in the server editor.&quot;

I tried increasing the time out value to 200 and 600 seconds. Still i am getting the same error. &quot;... unable to start within 600 seconds....&quot;.

I have been searching for resolution but couldn&#039;t find anythhing.

Please help me to solve this.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am getting the following error. &#8220;Server JBoss v5.1.0 at localhost was unable to start within 50 seconds. If the server requires more time, try increasing the timeout in the server editor.&#8221;</p>
<p>I tried increasing the time out value to 200 and 600 seconds. Still i am getting the same error. &#8220;&#8230; unable to start within 600 seconds&#8230;.&#8221;.</p>
<p>I have been searching for resolution but couldn&#8217;t find anythhing.</p>
<p>Please help me to solve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RAD: Seam development with Eclipse and Tomcat Step-by-Step-Tutorial Screencast by Subrata Biswas</title>
		<link>http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-step-tutorial-screencast/#comment-129</link>
		<dc:creator>Subrata Biswas</dc:creator>
		<pubDate>Wed, 28 Oct 2009 18:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/2007/11/11/rad-seam-development-with-eclipse-and-tomcat-step-by-step-tutorial-screencast/#comment-129</guid>
		<description>Very interesting and informatic tutorial. I was able to run it in tomcat as well as in jboss. I went for further step instead using Hypersonic DB (it is default set) i pointed to Oracle 10g XE. It works fine. On next step I created two tables Countries and regions Countries table having country_id(PK),Country_name and region_id(FK) column and Regions table is having region_id(PK) and region_name column. I created Country.java for Entity and CountryAction.java on the same fashion as it is in Hotel.java and HotelSearchAction.java.
I wrote my query as below in my CountryAction.queryCountries() as below
countries = em.createQuery(&quot;select c from Countries c where lower(c.countryname) like #{cpattern} or lower(c.regionId) like #{cpattern} &quot;)
            .setMaxResults(pageSize)
            .setFirstResult( page * pageSize )
            .getResultList();

I had List countries;
I used cpattern instead pattern as it is used in HotelSearchAction. And i had a jsp page for listing the country list in a table. But I got Illegal Argument queryException error which is telling my entity is not mapped.

But I did all as it is followed for Hotel and HotelSearchAction. What is wrong going here. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Very interesting and informatic tutorial. I was able to run it in tomcat as well as in jboss. I went for further step instead using Hypersonic DB (it is default set) i pointed to Oracle 10g XE. It works fine. On next step I created two tables Countries and regions Countries table having country_id(PK),Country_name and region_id(FK) column and Regions table is having region_id(PK) and region_name column. I created Country.java for Entity and CountryAction.java on the same fashion as it is in Hotel.java and HotelSearchAction.java.<br />
I wrote my query as below in my CountryAction.queryCountries() as below<br />
countries = em.createQuery(&#8220;select c from Countries c where lower(c.countryname) like #{cpattern} or lower(c.regionId) like #{cpattern} &#8220;)<br />
            .setMaxResults(pageSize)<br />
            .setFirstResult( page * pageSize )<br />
            .getResultList();</p>
<p>I had List countries;<br />
I used cpattern instead pattern as it is used in HotelSearchAction. And i had a jsp page for listing the country list in a table. But I got Illegal Argument queryException error which is telling my entity is not mapped.</p>
<p>But I did all as it is followed for Hotel and HotelSearchAction. What is wrong going here. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make JBoss Seam work with Eclipse (for Windows) by brarpavi</title>
		<link>http://techieexchange.wordpress.com/2008/02/01/how-to-make-jboss-seam-work-with-eclipse-for-windows/#comment-128</link>
		<dc:creator>brarpavi</dc:creator>
		<pubDate>Tue, 27 Oct 2009 19:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=55#comment-128</guid>
		<description>when i am creating new server (in eclipse) i get this error after setting APPLICATION SERVER DIRECTORY TO:

C:\Development\jboss-4.2.2.GA_itec

error:-&gt;

 Missing classpath entry C:\Development\jboss-4.2.2.GA_itec\server\default\lib\mail.jar 

please help me out what is the error</description>
		<content:encoded><![CDATA[<p>when i am creating new server (in eclipse) i get this error after setting APPLICATION SERVER DIRECTORY TO:</p>
<p>C:\Development\jboss-4.2.2.GA_itec</p>
<p>error:-&gt;</p>
<p> Missing classpath entry C:\Development\jboss-4.2.2.GA_itec\server\default\lib\mail.jar </p>
<p>please help me out what is the error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSF Session Expired Timeout Solution by Hossain</title>
		<link>http://techieexchange.wordpress.com/2008/02/21/jsf-session-expired-timeout-solution/#comment-125</link>
		<dc:creator>Hossain</dc:creator>
		<pubDate>Sun, 27 Sep 2009 09:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=79#comment-125</guid>
		<description>some reason, I don’t see control going in to Filter any time even after giving a URL pattern of *.*

Is there any thing I am missing?</description>
		<content:encoded><![CDATA[<p>some reason, I don’t see control going in to Filter any time even after giving a URL pattern of *.*</p>
<p>Is there any thing I am missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database development with HiberObjects by Louis</title>
		<link>http://techieexchange.wordpress.com/2008/02/07/database-development-with-hiberobjects/#comment-124</link>
		<dc:creator>Louis</dc:creator>
		<pubDate>Wed, 19 Aug 2009 18:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=67#comment-124</guid>
		<description>Thanks a lot for this quick, concise and really useful walk through Hiberobjects. I like that you get to the point right away and don&#039;t assume that your reader is dum and need to be shown every single letter to type.

Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this quick, concise and really useful walk through Hiberobjects. I like that you get to the point right away and don&#8217;t assume that your reader is dum and need to be shown every single letter to type.</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make JBoss Seam work with Eclipse (for Windows) by ratna prasad</title>
		<link>http://techieexchange.wordpress.com/2008/02/01/how-to-make-jboss-seam-work-with-eclipse-for-windows/#comment-123</link>
		<dc:creator>ratna prasad</dc:creator>
		<pubDate>Wed, 19 Aug 2009 08:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=55#comment-123</guid>
		<description>thanks cgernert, it is a great tutorial for beginners like.</description>
		<content:encoded><![CDATA[<p>thanks cgernert, it is a great tutorial for beginners like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database development with HiberObjects by Tim</title>
		<link>http://techieexchange.wordpress.com/2008/02/07/database-development-with-hiberobjects/#comment-122</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 18 Aug 2009 20:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=67#comment-122</guid>
		<description>Hi, thanks for these instructions! I&#039;m glad you took the time to write it up.

After using your instructions and a bit of trial and error I figured out how to set up MySQL dev on the latest version of Eclipse. I wrote up a similar article on it with hopes that someone will find it useful: http://obscuredclarity.blogspot.com/2009/08/setup-mysql-development-in-eclipse.html

Rock on!</description>
		<content:encoded><![CDATA[<p>Hi, thanks for these instructions! I&#8217;m glad you took the time to write it up.</p>
<p>After using your instructions and a bit of trial and error I figured out how to set up MySQL dev on the latest version of Eclipse. I wrote up a similar article on it with hopes that someone will find it useful: <a href="http://obscuredclarity.blogspot.com/2009/08/setup-mysql-development-in-eclipse.html" rel="nofollow">http://obscuredclarity.blogspot.com/2009/08/setup-mysql-development-in-eclipse.html</a></p>
<p>Rock on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make JBoss Seam work with Eclipse (for Windows) by Shailesh Agarwal</title>
		<link>http://techieexchange.wordpress.com/2008/02/01/how-to-make-jboss-seam-work-with-eclipse-for-windows/#comment-121</link>
		<dc:creator>Shailesh Agarwal</dc:creator>
		<pubDate>Fri, 07 Aug 2009 10:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=55#comment-121</guid>
		<description>Thanks buddy for such a great tutorial.</description>
		<content:encoded><![CDATA[<p>Thanks buddy for such a great tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make JBoss Seam work with Eclipse (for Windows) by LuisH</title>
		<link>http://techieexchange.wordpress.com/2008/02/01/how-to-make-jboss-seam-work-with-eclipse-for-windows/#comment-120</link>
		<dc:creator>LuisH</dc:creator>
		<pubDate>Wed, 22 Jul 2009 05:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://techieexchange.wordpress.com/?p=55#comment-120</guid>
		<description>I think that people who is trying SEAM must have an idea about jboss development studio.

I want to know what do you think about this product, and if you think it is rigth to be used for development of commercial applications.

can anybody let me know your thoughts ?</description>
		<content:encoded><![CDATA[<p>I think that people who is trying SEAM must have an idea about jboss development studio.</p>
<p>I want to know what do you think about this product, and if you think it is rigth to be used for development of commercial applications.</p>
<p>can anybody let me know your thoughts ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
