<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><div>&gt;&gt;&gt;the main concern is that JTA transactions simply aren't available in a servlet environment (without extra configuration).<br>AFAIK, you can use UserTransaction object<br></div><div style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><br>--Gurkan<br><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font face="Tahoma" size="2"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> Dan Allen &lt;dan.j.allen@gmail.com&gt;<br><b><span style="font-weight: bold;">To:</span></b> reza_rahman@lycos.com<br><b><span style="font-weight: bold;">Cc:</span></b> Weld-Dev &lt;weld-dev@lists.jboss.org&gt;<br><b><span style="font-weight: bold;">Sent:</span></b> Tue, November 24, 2009 10:05:02 PM<br><b><span style="font-weight: bold;">Subject:</span></b>
 Re: [weld-dev] persistence and transactions outside Java EE<br></font><br><meta http-equiv="x-dns-prefetch-control" content="off">We actually have parallel conversations going here. Putting aside the question of JTA overhead, the main concern is that JTA transactions simply aren't available in a servlet environment (without extra configuration). Hence my idea of having a lightweight transactional bean that makes use of local transactions rather than requiring JTA transactions provided by an EJB (or EJB lite) container.<br>
<br>Or perhaps, it's all unnecessary and we just tell people to use EJB lite if they want transactions and persistence.<br><br>-Dan<br><br><div class="gmail_quote">On Tue, Nov 24, 2009 at 2:49 PM, Reza Rahman <span dir="ltr">&lt;<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Gurkan,<br>
<br>
Thanks for that...reading through JTA/JCA has been on my wish-list for a<br>
while, I just haven't gotten around to it yet - the blog post exploring<br>
JTA performance would have been my final impetus :-).<br>
<br>
So the real overhead of JTA in optimized mode is what exactly (as far as<br>
you know)?<br>
<br>
Cheers,<br>
<font color="#888888">Reza<br>
</font><div><div></div><div class="h5"><br>
<br>
Gurkan Erdogdu wrote:<br>
&gt; Hi;<br>
&gt;<br>
&gt; Actually one-phase commit optimization is required for the Transaction<br>
&gt; Managers.<br>
&gt;<br>
&gt; See JCA 1.6 --&gt; Section 7.6.3.3<br>
&gt;<br>
&gt; --Gurkan<br>
&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt; *From:* Reza Rahman &lt;<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a>&gt;<br>
&gt; *To:* Weld-Dev &lt;<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; *Sent:* Tue, November 24, 2009 8:47:32 PM<br>
&gt; *Subject:* Re: [weld-dev] persistence and transactions outside Java EE<br>
&gt;<br>
&gt; Emmanuel,<br>
&gt;<br>
&gt; From what I understand, this is an optimization that almost all sane<br>
&gt; JTA providers have but it is not standards defined behavior. Also, I<br>
&gt; think a sane JTA transaction manager could work with a non-XA resource<br>
&gt; in optimized/local mode (again something I think could be defined at the<br>
&gt; spec level but isn't).<br>
&gt;<br>
&gt; I'm looking into some of these issues myself vis-a-vis Resin's<br>
&gt; transaction manager and am thinking this could be a valuable blog topic<br>
&gt; to help clear the air on some of this...<br>
&gt;<br>
&gt; Cheers,<br>
&gt; Reza<br>
&gt;<br>
&gt;<br>
&gt; Emmanuel Bernard wrote:<br>
&gt; &gt; Transaction Managers do not engage in distributed transactions if<br>
&gt; &gt; there is a single resource and that happens automatically.<br>
&gt; &gt; JTA != 2PC.<br>
&gt; &gt; Jonathan, correct me if I'm wrong, but I'm sure that's something you<br>
&gt; &gt; guys have had in the product virtually for ever.<br>
&gt; &gt;<br>
&gt; &gt; On 24 nov. 09, at 18:18, Arbi Sookazian wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; This is a good idea from a corporate developer's perspective<br>
&gt; &gt;&gt; anyways. &nbsp;JEE platform needs to keep things as simple as possible<br>
&gt; &gt;&gt; (esp. in terms of configuration) for the typical JEE dev.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; "Promotable transactions optimize distributed transactions by<br>
&gt; &gt;&gt; deferring the creation of a distributed transaction until it is<br>
&gt; &gt;&gt; needed. If only one resource manager is required, no distributed<br>
&gt; &gt;&gt; transaction occurs."<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; src: <a rel="nofollow" target="_blank" href="http://msdn.microsoft.com/en-us/library/ms172070%28VS.80%29.aspx">http://msdn.microsoft.com/en-us/library/ms172070%28VS.80%29.aspx</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Instead of focusing on how "apparently" bad the Spring stack is, I<br>
&gt; &gt;&gt; would recommend focusing on expanding on the good ideas that .NET<br>
&gt; &gt;&gt; platform has (like the late addition of MVC frmwk in <a rel="nofollow" target="_blank" href="http://ASP.NET">ASP.NET</a><br>
&gt; &gt;&gt; &lt;<a rel="nofollow" target="_blank" href="http://ASP.NET">http://ASP.NET</a>&gt;!)<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Corporate devs are looking to design and code use cases<br>
&gt; &gt;&gt; easily/quickly and not worry too much about system level issues,<br>
&gt; &gt;&gt; clustering and lack of tooling, etc. &nbsp;An integrated solution like<br>
&gt; &gt;&gt; .NET with the .NET Visual Studio IDE is very attractive (although<br>
&gt; &gt;&gt; somewhat limiting perhaps b/c the APIs/frmwks are "locked" down).<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; We have to make way too many decisions about what frmwks and<br>
&gt; &gt;&gt; libraries to use in JEE (this problem seems to always be getting<br>
&gt; &gt;&gt; worse as the years go by unfortunately).<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; On Tue, Nov 24, 2009 at 9:03 AM, Reza Rahman &lt;<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a><br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a>&gt;<br>
</div></div><div><div></div><div class="h5">&gt; &gt;&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:reza_rahman@lycos.com" target="_blank" href="mailto:reza_rahman@lycos.com">reza_rahman@lycos.com</a>&gt;&gt;&gt; wrote:<br>

&gt; &gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;Dan,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;Personally, I think the most elegant solution in terms of Java EE is<br>
&gt; &gt;&gt; &nbsp; &nbsp;simply to standardize "promotable" transactions. Specifically,<br>
&gt; &gt;&gt; &nbsp; &nbsp;JTA could<br>
&gt; &gt;&gt; &nbsp; &nbsp;be modified to use local transactions by default and only promote<br>
&gt; &gt;&gt; &nbsp; &nbsp;transactions to distributed mode as the need arises. The<br>
&gt; &gt;&gt; &nbsp; &nbsp;Microsoft guys<br>
&gt; &gt;&gt; &nbsp; &nbsp;have had promotable transactions for ages, I am not sure why we<br>
&gt; don't<br>
&gt; &gt;&gt; &nbsp; &nbsp;have it in Java EE too. This would make the "lightweight" vs<br>
&gt; &gt;&gt; &nbsp; &nbsp;"heavyweight" debate moot and keep things simple/consistent from a<br>
&gt; &gt;&gt; &nbsp; &nbsp;developer's perspective while most of the systems-level issues<br>
&gt; &gt;&gt; &nbsp; &nbsp;are dealt<br>
&gt; &gt;&gt; &nbsp; &nbsp;by the container where these things belong instead of a steady<br>
&gt; &gt;&gt; &nbsp; &nbsp;leak as a<br>
&gt; &gt;&gt; &nbsp; &nbsp;development concern.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;Cheers,<br>
&gt; &gt;&gt; &nbsp; &nbsp;Reza<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;Dan Allen wrote:<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; I was talking to someone about this topic post-Devoxx. I came<br>
&gt; &gt;&gt; &nbsp; &nbsp;up with<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; an idea that may be worth considering. Perhaps the Java EE<br>
&gt; platform<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; can recognize another class of bean that has persistence and<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; transaction capabilities, but not the rest of EJB. Here's my<br>
&gt; &gt;&gt; &nbsp; &nbsp;proposed<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; breakdown, in terms of airplane seat classes (I was on an<br>
&gt; &gt;&gt; &nbsp; &nbsp;airplane at<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; the time).<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; First class - EJB session bean<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Business class - local transactional bean<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Coach - Simple managed bean<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; The main differientiator of a "business class bean" from an EJB is<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; that it would have the option to use local transactions, just<br>
&gt; &gt;&gt; &nbsp; &nbsp;like an<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; application-managed JPA persistence unit. It would also not<br>
&gt; support<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; any HA concerns. But it would be a drop in replacement for<br>
&gt; &gt;&gt; &nbsp; &nbsp;so-called<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; "lightweight" transaction beans that Spring offers.<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Then, we wouldn't need to do anything special in Weld / Seam 3.<br>
&gt; &gt;&gt; &nbsp; &nbsp;All we<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; would need is to be able to support these types of beans in a<br>
&gt; &gt;&gt; &nbsp; &nbsp;servlet<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; container, the same way that Weld supports those environments.<br>
&gt; &gt;&gt; &nbsp; &nbsp;But it<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; would be a standard part of Java EE (6 MR1 or 7).<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; If we feel like we need to support this use case in Seam, then<br>
&gt; &gt;&gt; &nbsp; &nbsp;clearly<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; there is still something missing in Java EE.<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; -Dan<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; On Wed, Nov 18, 2009 at 6:10 PM, Gavin King<br>
&gt; &gt;&gt; &nbsp; &nbsp;&lt;<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;&gt;&gt;&gt; wrote:<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;I think we should try and follow the Java EE models as<br>
&gt; &gt;&gt; &nbsp; &nbsp;closely as<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;possible for this stuff. We should simply try and make the<br>
&gt; &gt;&gt; &nbsp; &nbsp;Java EE<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;code work outside EE 6.<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;e.g.<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;(1) use a resource declaration with<br>
&gt; &gt;&gt; &nbsp; &nbsp;@PersistenceContext(unitName=....)<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;to define a managed persistence context<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;(2) use JBoss Transactions to manage transactions in a<br>
&gt; &gt;&gt; &nbsp; &nbsp;servlet engine<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;- so instead of having a special tx manager for JDBC, it is<br>
&gt; &gt;&gt; &nbsp; &nbsp;just JTA<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;Or is the 10meg download for JBoss Transactions just no good?<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;--<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;Gavin King<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;<br>
</div></div><div><div></div><div class="h5">&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:gavin.king@gmail.com" target="_blank" href="mailto:gavin.king@gmail.com">gavin.king@gmail.com</a>&gt;&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" target="_blank" href="http://in.relation.to/Bloggers/Gavin">http://in.relation.to/Bloggers/Gavin</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" target="_blank" href="http://hibernate.org">http://hibernate.org</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" target="_blank" href="http://seamframework.org">http://seamframework.org</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;_______________________________________________<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;weld-dev mailing list<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a><br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a><br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; &nbsp; &nbsp;<a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; --<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Dan Allen<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Senior Software Engineer, Red Hat | Author of Seam in Action<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; Registered Linux User #231597<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; <a rel="nofollow" target="_blank" href="http://mojavelinux.com">http://mojavelinux.com</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; <a rel="nofollow" target="_blank" href="http://mojavelinux.com/seaminaction">http://mojavelinux.com/seaminaction</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; <a rel="nofollow" target="_blank" href="http://www.google.com/profiles/dan.j.allen">http://www.google.com/profiles/dan.j.allen</a><br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; _______________________________________________<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; weld-dev mailing list<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; <a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;&gt; <a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;_______________________________________________<br>
&gt; &gt;&gt; &nbsp; &nbsp;weld-dev mailing list<br>
&gt; &gt;&gt; &nbsp; &nbsp;<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt;&gt; &nbsp; &nbsp;<a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; _______________________________________________<br>
&gt; &gt;&gt; weld-dev mailing list<br>
&gt; &gt;&gt; <a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt; &gt;&gt; <a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt; &gt;<br>
</div></div>&gt; &gt; ------------------------------------------------------------------------<br>
<div><div></div><div class="h5">&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; weld-dev mailing list<br>
&gt; &gt; <a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; &gt; <a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; weld-dev mailing list<br>
&gt; <a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a> &lt;mailto:<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a>&gt;<br>
&gt; <a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
&gt;<br>
<br>
_______________________________________________<br>
weld-dev mailing list<br>
<a rel="nofollow" ymailto="mailto:weld-dev@lists.jboss.org" target="_blank" href="mailto:weld-dev@lists.jboss.org">weld-dev@lists.jboss.org</a><br>
<a rel="nofollow" target="_blank" href="https://lists.jboss.org/mailman/listinfo/weld-dev">https://lists.jboss.org/mailman/listinfo/weld-dev</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Dan Allen<br>Senior Software Engineer, Red Hat | Author of Seam in Action<br>Registered Linux User #231597<br><br><a rel="nofollow" target="_blank" href="http://mojavelinux.com">http://mojavelinux.com</a><br>
<a rel="nofollow" target="_blank" href="http://mojavelinux.com/seaminaction">http://mojavelinux.com/seaminaction</a><br><a rel="nofollow" target="_blank" href="http://www.google.com/profiles/dan.j.allen">http://www.google.com/profiles/dan.j.allen</a><br>
<meta http-equiv="x-dns-prefetch-control" content="on"></div></div>
<!-- cg17.c1.mail.mud.yahoo.com compressed/chunked Tue Nov 17 21:32:47 PST 2009 -->
</div><br>

      </body></html>