<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for solutionsfit.com | Jacob Orshalick</title>
	<link>http://solutionsfit.com/blog</link>
	<description>Blog by a developer for a developer</description>
	<pubDate>Sat, 17 May 2008 20:16:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>Comment on Generating Namespaces and schemas for your Seam components by Peter Saurugger</title>
		<link>http://solutionsfit.com/blog/2008/01/08/generating-namespaces-and-schemas-for-your-seam-components/#comment-1060</link>
		<dc:creator>Peter Saurugger</dc:creator>
		<pubDate>Wed, 14 May 2008 21:02:34 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/01/08/generating-namespaces-and-schemas-for-your-seam-components/#comment-1060</guid>
		<description>Jacob, yes auto-generation in seam-gen and an option for an existing entity in jboss developer studio would be very helpfull.

How about de-serializing instance documents outside of components.xml - is this part of the public API? And of course serializing them into instance docs based on these schemas? Maybe it is already all there before my eyes but I have not seen it yet ...

This would allow Seam to bridge not only the db - java object layers, but also the xml representation that is necessary in most real world environments. Yes, I dont want to have to mess with another framework jaxb/xmlbeans/castor/... unless absolutely necessary ... Seam would be the "Rosetta Stone" of software development</description>
		<content:encoded><![CDATA[<p>Jacob, yes auto-generation in seam-gen and an option for an existing entity in jboss developer studio would be very helpfull.</p>
<p>How about de-serializing instance documents outside of components.xml - is this part of the public API? And of course serializing them into instance docs based on these schemas? Maybe it is already all there before my eyes but I have not seen it yet &#8230;</p>
<p>This would allow Seam to bridge not only the db - java object layers, but also the xml representation that is necessary in most real world environments. Yes, I dont want to have to mess with another framework jaxb/xmlbeans/castor/&#8230; unless absolutely necessary &#8230; Seam would be the &#8220;Rosetta Stone&#8221; of software development</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alleviating client-side back-button issues with Ajax4JSF and RichFaces by Craig Sherstan</title>
		<link>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-754</link>
		<dc:creator>Craig Sherstan</dc:creator>
		<pubDate>Thu, 24 Apr 2008 11:29:27 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-754</guid>
		<description>Oh, and the problem I'm having is that I have a search page (form fields and search results list) I navigate to one of the search results, hit the back button and all my fields are empty as well as my search results.  I've confirmed that my backing beans are still alive as certain events on the page trigger reloads of the ajax components - suddenly restoring the fields.  The difference I have with what you've described here is that it isn't limited to IE, it's also happening in firefox.  So perhaps this indicates I've got other problems.</description>
		<content:encoded><![CDATA[<p>Oh, and the problem I&#8217;m having is that I have a search page (form fields and search results list) I navigate to one of the search results, hit the back button and all my fields are empty as well as my search results.  I&#8217;ve confirmed that my backing beans are still alive as certain events on the page trigger reloads of the ajax components - suddenly restoring the fields.  The difference I have with what you&#8217;ve described here is that it isn&#8217;t limited to IE, it&#8217;s also happening in firefox.  So perhaps this indicates I&#8217;ve got other problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alleviating client-side back-button issues with Ajax4JSF and RichFaces by Craig Sherstan</title>
		<link>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-753</link>
		<dc:creator>Craig Sherstan</dc:creator>
		<pubDate>Thu, 24 Apr 2008 11:24:29 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-753</guid>
		<description>At the risk of sounding like an idiot, John talks about hooking into the window.onload... How do I do that?  I don't have direct access to  as I'm using facelets templating and don't see how I can add the onload attribute to my page without affecting all other pages.</description>
		<content:encoded><![CDATA[<p>At the risk of sounding like an idiot, John talks about hooking into the window.onload&#8230; How do I do that?  I don&#8217;t have direct access to  as I&#8217;m using facelets templating and don&#8217;t see how I can add the onload attribute to my page without affecting all other pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Groovy with Seam after TSSJS by yourbestfriend</title>
		<link>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-695</link>
		<dc:creator>yourbestfriend</dc:creator>
		<pubDate>Mon, 21 Apr 2008 06:09:19 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-695</guid>
		<description>Jacob,

Excellent overview and article, my friend.  A few points to point out:

1. The latest Groovy 1.5 version allows use of annotations but yet does not support definition of custom annotations. I hope to see that feature soon in a future version of Groovy.

2. By default, all Groovy closures have an implicit it parameter if the closure parameters were not declared.  However, you can add multiple parameters by separating them with commas.

3. Groovy has a 1:1 mapping between an operator (+, -, *..) to an operator method. For example, by overriding plus function in a Groovy class, you are overriding the + operator for your class.

4. Range data types can handle both forward ranges (min...max type) or reverse ranges (max..min).

On the plugin/jboss-tools question: Groovy plugin has to be configured separately from JBoss Tools plugin.  Groovy Eclipse plugin is fully functional and supports all groovy features including syntax coloring, highlighting, debugging of Groovy files within Eclipse.  Groovy Plugin works with eclipse 3.2 but you need a minimum of Eclipse 3.3 to get JBoss Tools to work.</description>
		<content:encoded><![CDATA[<p>Jacob,</p>
<p>Excellent overview and article, my friend.  A few points to point out:</p>
<p>1. The latest Groovy 1.5 version allows use of annotations but yet does not support definition of custom annotations. I hope to see that feature soon in a future version of Groovy.</p>
<p>2. By default, all Groovy closures have an implicit it parameter if the closure parameters were not declared.  However, you can add multiple parameters by separating them with commas.</p>
<p>3. Groovy has a 1:1 mapping between an operator (+, -, *..) to an operator method. For example, by overriding plus function in a Groovy class, you are overriding the + operator for your class.</p>
<p>4. Range data types can handle both forward ranges (min&#8230;max type) or reverse ranges (max..min).</p>
<p>On the plugin/jboss-tools question: Groovy plugin has to be configured separately from JBoss Tools plugin.  Groovy Eclipse plugin is fully functional and supports all groovy features including syntax coloring, highlighting, debugging of Groovy files within Eclipse.  Groovy Plugin works with eclipse 3.2 but you need a minimum of Eclipse 3.3 to get JBoss Tools to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Groovy with Seam after TSSJS by Pawel Kaczor</title>
		<link>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-633</link>
		<dc:creator>Pawel Kaczor</dc:creator>
		<pubDate>Wed, 16 Apr 2008 20:25:36 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-633</guid>
		<description>&lt;blockquote&gt;
There are not that I am aware of, but the Groovy plugin works nicely with JBoss Tools and is what I have been using for development. There are some issues with the Groovy plugin but it has come a long way
&lt;/blockquote&gt;
Could you show me your configuration of groovy plugin and jboss-tools? Is hot deployment working for groovy classes? I've created groovy componente annotated with @Name but it is not loaded by seam...</description>
		<content:encoded><![CDATA[<blockquote><p>
There are not that I am aware of, but the Groovy plugin works nicely with JBoss Tools and is what I have been using for development. There are some issues with the Groovy plugin but it has come a long way
</p></blockquote>
<p>Could you show me your configuration of groovy plugin and jboss-tools? Is hot deployment working for groovy classes? I&#8217;ve created groovy componente annotated with @Name but it is not loaded by seam&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Groovy with Seam after TSSJS by Chris</title>
		<link>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-603</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 15 Apr 2008 02:11:42 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-603</guid>
		<description>&lt;blockquote&gt;
There would be a difference, I’m sure, but for most applications this shouldn’t be a problem. 
&lt;/blockquote&gt;
The standard wisdom from the Groovy camp is when performance becomes a huge issue dropping down into Java is the solution.  Since Groovy has numerous ways of seamlessly (pun intended) integrating with Java it shouldn't be a problem in most cases to do just that.

On a side note &lt;a href="http://groovy.dzone.com/announcements/groovy-155-released-compiler-3" rel="nofollow"&gt;Groovy 1.5.5 was just announced&lt;/a&gt; with a host of performance improvements.</description>
		<content:encoded><![CDATA[<blockquote><p>
There would be a difference, I’m sure, but for most applications this shouldn’t be a problem.
</p></blockquote>
<p>The standard wisdom from the Groovy camp is when performance becomes a huge issue dropping down into Java is the solution.  Since Groovy has numerous ways of seamlessly (pun intended) integrating with Java it shouldn&#8217;t be a problem in most cases to do just that.</p>
<p>On a side note <a href="http://groovy.dzone.com/announcements/groovy-155-released-compiler-3" rel="nofollow">Groovy 1.5.5 was just announced</a> with a host of performance improvements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Groovy with Seam after TSSJS by Srinivasan Raguraman</title>
		<link>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-532</link>
		<dc:creator>Srinivasan Raguraman</dc:creator>
		<pubDate>Mon, 07 Apr 2008 08:22:42 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-532</guid>
		<description>Quite interesting, Yeah, implementing domain models using groovy's additional constructs will be elegant.</description>
		<content:encoded><![CDATA[<p>Quite interesting, Yeah, implementing domain models using groovy&#8217;s additional constructs will be elegant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Groovy with Seam after TSSJS by jacob.orshalick</title>
		<link>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-528</link>
		<dc:creator>jacob.orshalick</dc:creator>
		<pubDate>Sun, 06 Apr 2008 21:47:49 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2008/04/01/getting-groovy-with-seam-after-tssjs/#comment-528</guid>
		<description>&lt;blockquote cite="Markus Jais"&gt;Did you make any performance tests compared to a Java solution?&lt;/blockquote&gt;

No, I have not as the solution is only implemented in Groovy.  There would be a difference, I'm sure, but for most applications this shouldn't be a problem.  If you would like to get a comparison, the Seam Booking example has been implemented as a basic Java solution and a Groovy solution.  You can find each in the Seam distribution.  Feel free to run performance tests and report back your results.  I'm sure many readers would be interested!

&lt;blockquote cite="Markus Jais"&gt;Do you know if there are plans to integrate Groovy support in the JBoss Tools for Eclipse?&lt;/blockquote&gt;

There are not that I am aware of, but the &lt;a href="http://groovy.codehaus.org/Eclipse+Plugin" rel="nofollow"&gt;Groovy plugin&lt;/a&gt; works nicely with JBoss Tools and is what I have been using for development.  There are some issues with the Groovy plugin but it has come a long way ;)</description>
		<content:encoded><![CDATA[<blockquote cite="Markus Jais"><p>Did you make any performance tests compared to a Java solution?</p></blockquote>
<p>No, I have not as the solution is only implemented in Groovy.  There would be a difference, I&#8217;m sure, but for most applications this shouldn&#8217;t be a problem.  If you would like to get a comparison, the Seam Booking example has been implemented as a basic Java solution and a Groovy solution.  You can find each in the Seam distribution.  Feel free to run performance tests and report back your results.  I&#8217;m sure many readers would be interested!</p>
<blockquote cite="Markus Jais"><p>Do you know if there are plans to integrate Groovy support in the JBoss Tools for Eclipse?</p></blockquote>
<p>There are not that I am aware of, but the <a href="http://groovy.codehaus.org/Eclipse+Plugin" rel="nofollow">Groovy plugin</a> works nicely with JBoss Tools and is what I have been using for development.  There are some issues with the Groovy plugin but it has come a long way <img src='http://solutionsfit.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alleviating client-side back-button issues with Ajax4JSF and RichFaces by jacob.orshalick</title>
		<link>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-520</link>
		<dc:creator>jacob.orshalick</dc:creator>
		<pubDate>Sat, 05 Apr 2008 20:45:03 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-520</guid>
		<description>&lt;a href="http://seamframework.org/Community/BrowseBackButtonIssue" rel="nofollow"&gt;Discussion on Seam forum&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://seamframework.org/Community/BrowseBackButtonIssue" rel="nofollow">Discussion on Seam forum</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alleviating client-side back-button issues with Ajax4JSF and RichFaces by thiagu</title>
		<link>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-508</link>
		<dc:creator>thiagu</dc:creator>
		<pubDate>Fri, 04 Apr 2008 13:22:26 +0000</pubDate>
		<guid>http://solutionsfit.com/blog/2007/11/08/alleviating-client-side-back-button-issues-with-ajax4jsf-and-richfaces/#comment-508</guid>
		<description>i have the same problem after try this code.
i am using richface 3.2.0 GA and seam 2.0.1.GA
this is my cample code 

&lt;code&gt;

 
      
     
     
	
	 
    	
   	
	
		
	
	
	
			
   
   	
 

&lt;code&gt;

this code like a data Tabe filter .
After filter the data table by using Checkbox at the top , visit to the next page then i hit the browser back button , my filter list will be deselected .
how to resolve this problem.
we have this problem in our site. we need to fix this bug.

by
Thiagu.m</description>
		<content:encoded><![CDATA[<p>i have the same problem after try this code.<br />
i am using richface 3.2.0 GA and seam 2.0.1.GA<br />
this is my cample code </p>
<p><code></p>
<p></code><code></p>
<p>this code like a data Tabe filter .<br />
After filter the data table by using Checkbox at the top , visit to the next page then i hit the browser back button , my filter list will be deselected .<br />
how to resolve this problem.<br />
we have this problem in our site. we need to fix this bug.</p>
<p>by<br />
Thiagu.m</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
