I did some simple experiments using entityManager.getDelegate() and these are what I observed:<div>1) The Hibernate Session backing the EntityManager for the SessionBean is always the same for the current session of the user</div>

<div>2) The Hibernate Session injected into the ManagedBean is always a new Session, of course different from that in use by the container EJB</div><div><br></div><div>Now we can choose to:</div><div><br></div><div>1) Ignore this !!</div>

<div>2) Don&#39;t ignore and try to figure out if this way we can find different object using the find method</div><div>3) Use the SessionContext to point to the current Hibernate Session of the Stateful EJB (what I proposed, but we are discussing about its complexity)</div>

<div><br></div><div>In my opinion adding two lines of code to the current template to inject the SessionContext and then get the business Interface is comparable to that of writing a new managed bean and inject in it a different EntityManager.</div>

<div><br></div><div>What do you think ?</div><div> <br><br><div class="gmail_quote">2012/8/7 Richard Kennard <span dir="ltr">&lt;<a href="mailto:richard@kennardconsulting.com" target="_blank">richard@kennardconsulting.com</a>&gt;</span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">No, that&#39;s what I meant. But I guess JBoss AS messes up :(<br>
<br>
What did you decide about if it&#39;s injecting &#39;the same Hibernate Session&#39;?<br>
<br>
Regards,<br>
<br>
Richard.<br>
<div class="im"><br>
On 7/08/2012 6:34 PM, Luca Masini wrote:<br>
&gt; I yet tried this and it works with WLS 12c, but then on JBoss AS it starts thinking that the Converter interface is also the EJB Local interface and the<br>
&gt; JSF layer is unable to find any business method of the no-interface view.<br>
&gt;<br>
&gt; Or do you mean something else ?<br>
&gt;<br>
</div>&gt; 2012/8/7 Richard Kennard &lt;<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;<br>


<div class="im">&gt;<br>
&gt;     Luca,<br>
&gt;<br>
&gt;     Yes I agree, we are mixing sessions here. I was hoping the Converter was doing such a &#39;lightweight&#39; operation that we&#39;d get away with it.<br>
&gt;<br>
&gt;     But it would be great if we could avoid that complication. It appears that if you use @ManagedBean you can do all injections as usual. So that may<br>
&gt;     give you<br>
&gt;     some options. For example, what if the top-level class was itself the converter, so it was a @ManagedBean as well as a @Named? Does it then work to do...<br>
&gt;<br>
&gt;          ... converter=&quot;#{groupBean}&quot;<br>
&gt;<br>
&gt;     ...and therefore reuse the same @PersistenceContext?<br>
&gt;<br>
&gt;     Regards,<br>
&gt;<br>
&gt;     Richard.<br>
&gt;<br>
&gt;     On 7/08/2012 5:45 PM, Luca Masini wrote:<br>
&gt;     &gt; Thank you for the updated, I tested it on JBoss AS 7.1.1 and WebLogic 12c and it works great !!<br>
&gt;     &gt;<br>
&gt;     &gt; I&#39;ll take time today to try to TomEE too, but I wanted to answer to you before it&#39;s too late on your timezone :)<br>
&gt;     &gt;<br>
&gt;     &gt; But I would like to discuss one implementation choice. In the ManagedBean you inject the entityManager using the @PersistenceContext annotation.<br>
&gt;     &gt;<br>
&gt;     &gt; We need to investigate if this is the same session of the Stateful EJB that is backing the JSF page, otherwise we can have two session and so diffent<br>
&gt;     &gt; view of the same DB data.<br>
&gt;     &gt;<br>
&gt;     &gt; In fact using an extended persistence context on the Stateful EJB has many advantages but raise the bar on difficulty of such simple things.<br>
&gt;     &gt;<br>
&gt;     &gt; What do you think ?? Now I&#39;m doing some experiments to understand if that ManagedBean who is Dependent has the same Conversation scope of the Stateful<br>
&gt;     &gt; and in case if Weld inject the same Hibernate Session.<br>
&gt;     &gt;<br>
&gt;     &gt; Hope to hear your though soon.<br>
&gt;     &gt;<br>
&gt;     &gt; Ciao.<br>
&gt;     &gt;<br>
</div>&gt;     &gt; 2012/8/7 Richard Kennard &lt;<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


<div><div class="h5">&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;     Luca,<br>
&gt;     &gt;<br>
&gt;     &gt;     Thank you for your time and patience in working through this with me. I appreciate your enthusiasm and professionalism.<br>
&gt;     &gt;<br>
&gt;     &gt;     I took a look at your sample Test Case. My apologies. The example I linked to was using a runtime version of Metawidget, not a static version.<br>
&gt;     I had<br>
&gt;     &gt;     underestimated the difference that would make. It seems you need to use an explicit id (eg. @FacesConverter(&quot;groupConverter&quot;) and<br>
&gt;     &lt;h:selectOneMenu ...<br>
&gt;     &gt;     converter=&quot;groupConverter&quot;&gt;). Otherwise JSF cannot automatically determine the variable&#39;s type (because we are temporarily storing it in<br>
&gt;     &gt;     #{requestScope[...]}).<br>
&gt;     &gt;<br>
&gt;     &gt;     However, even this does work 100%. It adds the group but, before you click Save, it is unable to display the group name.<br>
&gt;     &gt;<br>
&gt;     &gt;     So now I am coming around to your idea!<br>
&gt;     &gt;<br>
&gt;     &gt;     However I&#39;d still like to simplify things as much as possible, because this is actually a bug scheduled to be fixed in JSF 2.2<br>
&gt;     &gt;     (<a href="http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-763" target="_blank">http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-763</a>). I have experimented and come up with something a little quirky but not too bad<br>


&gt;     (in my<br>
&gt;     &gt;     opinion). Sent to your other e-mail address.<br>
&gt;     &gt;<br>
&gt;     &gt;     Please let me know if it works for you, and any improvements you think we could make.<br>
&gt;     &gt;<br>
&gt;     &gt;     Regards,<br>
&gt;     &gt;<br>
&gt;     &gt;     Richard.<br>
&gt;     &gt;<br>
&gt;     &gt;     On 6/08/2012 8:39 PM, Luca Masini wrote:<br>
&gt;     &gt;     &gt; Great to hear this for me, this philosophy is one of the main reason because I love forge !!<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; But I also need, on my side, to make it works under WebLogic and TomEE, so we need a solution to this problem.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; I created and sent you a test case (forgive the package name, I was in a hurry !!), you can reproduce the problem this way:<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; 1) Create a group<br>
&gt;     &gt;     &gt; 2) Go into the Account creation form and try to associate a group to the Account<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; The problem is recreated.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; Thank you for your invaluable support.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; L.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; 2012/8/6 Richard Kennard &lt;<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


</div></div><div class="im">&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;<br>


&gt;     &gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;&gt;&gt;<br>


&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     Luca,<br>
&gt;     &gt;     &gt;<br>
</div><div class="im">&gt;     &gt;     &gt;      &gt; factory that hide that complexity<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     One of the main challenges we have is that there *is* nowhere to &#39;hide that complexity&#39;. Everything we generate is part of user&#39;s final<br>
&gt;     &gt;     project. They<br>
&gt;     &gt;     &gt;     will<br>
&gt;     &gt;     &gt;     see it, and therefore will need to understand and maintain it. We *did* originally try creating base classes/factories, but then we are<br>
&gt;     essentially<br>
&gt;     &gt;     &gt;     creating a Forge-specific, undocumented, unsupported framework on top of EE.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     Could you please ZIP up your sample app and send it to me at <a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;<br>


&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;<br>
</div><div class="im">&gt;     &gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;&gt;? Then I can try and<br>
&gt;     &gt;     &gt;     reproduce the errors you&#39;re seeing.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     Regards,<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     Richard.<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     On 6/08/2012 6:56 PM, Luca Masini wrote:<br>
&gt;     &gt;     &gt;     &gt; Thank you for your feedback Richard.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; I tried your proposal and it breaks something else because the annotated class is used everywhere to convert the POJO, and on the log I<br>
&gt;     can find<br>
&gt;     &gt;     &gt;     this line:<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; 10:45:46,485 INFO  [javax.enterprise.resource.webcontainer.jsf.renderkit] (http--127.0.0.1-8080-2) WARNING: FacesMessage(s) have been<br>
&gt;     &gt;     enqueued, but may<br>
&gt;     &gt;     &gt;     &gt; not have been displayed.<br>
&gt;     &gt;     &gt;     &gt; sourceId=create:accountBeanAccountGroupsSelect[severity=(ERROR 2), summary=(create:accountBeanAccountGroupsSelect: Validation Error:<br>
&gt;     Value is not<br>
&gt;     &gt;     &gt;     valid),<br>
&gt;     &gt;     &gt;     &gt; detail=(create:accountBeanAccountGroupsSelect: Validation Error: Value is not valid)]<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; Regarding the solution I proposed, I agree that generated code must be simple, but I really can&#39;t figure another way to inject an extended<br>
&gt;     &gt;     persistence<br>
&gt;     &gt;     &gt;     &gt; context inside a client object.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; In case we factor out the converter and write an util class with a factory that hide that complexity.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; What do you think ?<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; 2012/8/6 Richard Kennard &lt;<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;<br>


</div>&gt;     &gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


<div><div class="h5">&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;<br>


&gt;     &gt;     &gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a> &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt; &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a><br>


&gt;     &lt;mailto:<a href="mailto:richard@kennardconsulting.com">richard@kennardconsulting.com</a>&gt;&gt;&gt;&gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     Luca,<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     Thanks for your time and help debugging this. I think we need to proceed with caution.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     We&#39;re basically talking about hacks to work around bugs in the app server/shortcomings in the EE spec. The problem is these hacks are<br>
&gt;     &gt;     going to get<br>
&gt;     &gt;     &gt;     &gt;     re-generated for every domain entity (potentially dozens of times). It&#39;s critical we try to keep our generated code as clean as<br>
&gt;     possible. In<br>
&gt;     &gt;     &gt;     &gt;     particular, we<br>
&gt;     &gt;     &gt;     &gt;     must keep the &#39;semantic complexity&#39; low.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     The solution you&#39;re suggesting (injecting a SessionContext, taking EJBObject using getBusinessInterface etc) sounds like a lot of<br>
&gt;     &#39;semantic<br>
&gt;     &gt;     &gt;     &gt;     complexity&#39; for<br>
&gt;     &gt;     &gt;     &gt;     new users to understand?<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     It&#39;s really important we try to find the cleanest approach. We tried/rejected a lot of variations when developing the current code.<br>
&gt;     &gt;     Here&#39;s one<br>
&gt;     &gt;     &gt;     that&#39;s not<br>
&gt;     &gt;     &gt;     &gt;     quite as nice as the current one, but may work properly across TomEE/Weblogic/JBoss. Could you try it for me?<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     1. Remove all references in the generated Facelets code to: converter=&quot;#{foo.converter}&quot;<br>
&gt;     &gt;     &gt;     &gt;     2. Remove the &#39;getConverter()&#39; method inside each xxxBean and replace with a static inner class that looks like:<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;          @FacesConverter( forClass = xxx.class )<br>
&gt;     &gt;     &gt;     &gt;          public static class xxxConverter<br>
&gt;     &gt;     &gt;     &gt;              implements Converter {<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;              @Override<br>
&gt;     &gt;     &gt;     &gt;              public Object getAsObject( FacesContext context, UIComponent component, String value ) {<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;                  // EntityManager injection not reliable on all platforms<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;                  xxx entity = new xxx();<br>
&gt;     &gt;     &gt;     &gt;                  entity.setId( Long.valueOf( value ) );<br>
&gt;     &gt;     &gt;     &gt;                  return entity;<br>
&gt;     &gt;     &gt;     &gt;              }<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;              @Override<br>
&gt;     &gt;     &gt;     &gt;              public String getAsString( FacesContext context, UIComponent component, Object value ) {<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;                  ...<br>
&gt;     &gt;     &gt;     &gt;              }<br>
&gt;     &gt;     &gt;     &gt;          }<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     Here&#39;s a complete example:<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; <a href="https://github.com/metawidget/metawidget/blob/master/integration-tests/faces/forge/src/main/java/com/test/view/PersonBean.java" target="_blank">https://github.com/metawidget/metawidget/blob/master/integration-tests/faces/forge/src/main/java/com/test/view/PersonBean.java</a><br>


&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     Regards,<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     Richard.<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     On 3/08/2012 9:17 PM, Luca Masini wrote:<br>
&gt;     &gt;     &gt;     &gt;     &gt; The fact is that we have an extended persistente unit bound to the stateful ejb, so can&#39;t be injected or looked up.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; I&#39;ve found a solution working on my three target App Server (TomEE, Weblogic, JBoss).<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; Inject a SessionContext and take the EJBObject using the getBusinessInterface method.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; For some strange reason SessionContext and his Ejb have different lifecycle so we need to take it before it is returned to the<br>
&gt;     jsf client.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; This way it works.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; Il giorno venerdė 3 agosto 2012, Richard Kennard ha scritto:<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     Yes, you could try that. The history to this decision was:<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     1. The Converter needs to use an EntityManager to load the entity<br>
&gt;     &gt;     &gt;     &gt;     &gt;     2. For some reason you cannot (yet) inject EntityManagers into FacesConverters<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     So I made the Converter an inner class of the xxxBean, so that it could access the bean&#39;s EntityManager. However there would<br>
&gt;     be other<br>
&gt;     &gt;     &gt;     &gt;     approaches, such as<br>
&gt;     &gt;     &gt;     &gt;     &gt;     looking up the EntityManager via JNDI or something.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     Regards,<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     Richard.<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     On 3/08/2012 8:15 PM, Thomas Frühbeck wrote:<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; Did you think of separating Converter and backing bean implementation?<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; AFAIK the backing bean _provides_ a converter e.g.: #{xxxxxBean.converter} but should not implement Converter itself?<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; Thomas<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; Am 03.08.2012 11:13, schrieb Luca Masini:<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; I&#39;m going crazy to let the generated faces scaffolding run on both WLS and JBoss.<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; Infact if I let the Bean implements the Converter interface then WLS works but JBoss complaints about missing method, it&#39;s<br>
&gt;     like<br>
&gt;     &gt;     that the<br>
&gt;     &gt;     &gt;     &gt;     implemented<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; interface is the Local interface for the bean and no other method is found but those in the Converter interface itself.<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; So I remove the interface and everything work without the getConverter method, getAsObject and getAsString are method of<br>
&gt;     the now<br>
&gt;     &gt;     &gt;     interface bean.<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; On the counter side WLS is unable to call methods from the EL into faces files that are not part of the Converter interface.<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; So I&#39;m in a deadlock. I&#39;m unable to let it works on both the Java EE 6 server. I&#39;m sure that a solution exist, but whichi ?<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; --<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


</div></div>&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


<div class="im">&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


</div>&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>
<div class="im">&gt;     &gt;     &gt;     &lt;javascript:;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;&gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


</div>&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


<div class="im">&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>


</div>&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>
<div class="im HOEnZb">&gt;     &gt;     &gt;     &lt;javascript:;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt;     &gt;     forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


</div><div class="im HOEnZb">&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>


&gt;     &gt;     &lt;javascript:;&gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; --<br>
&gt;     &gt;     &gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt;     &gt;     &gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt;     &gt; forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
</div><div class="im HOEnZb">&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


</div><div class="im HOEnZb">&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>


&gt;     &gt;     &gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt;     forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>


</div><div class="im HOEnZb">&gt;     &gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


</div><div class="HOEnZb"><div class="h5">&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>


&gt;     &gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; --<br>
&gt;     &gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt;     &gt;     &gt;     &gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt;     &gt;     &gt;     &gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt;     &gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     &gt; forge-dev mailing list<br>
&gt;     &gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>


&gt;     &gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt;     forge-dev mailing list<br>
&gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


&gt;     &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>


&gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; --<br>
&gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt;     &gt;     &gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt;     &gt;     &gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt;     &gt;     &gt; ****************************************<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt;<br>
&gt;     &gt;     &gt; _______________________________________________<br>
&gt;     &gt;     &gt; forge-dev mailing list<br>
&gt;     &gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


&gt;     &gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;<br>
&gt;     &gt;     _______________________________________________<br>
&gt;     &gt;     forge-dev mailing list<br>
&gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt; &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;&gt;<br>


&gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; --<br>
&gt;     &gt; ****************************************<br>
&gt;     &gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt;     &gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt;     &gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt;     &gt; ****************************************<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; _______________________________________________<br>
&gt;     &gt; forge-dev mailing list<br>
&gt;     &gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>
&gt;     &gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;<br>
&gt;     _______________________________________________<br>
&gt;     forge-dev mailing list<br>
&gt;     <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a>&gt;<br>
&gt;     <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; ****************************************<br>
&gt; <a href="http://www.lucamasini.net" target="_blank">http://www.lucamasini.net</a><br>
&gt; <a href="http://twitter.com/lmasini" target="_blank">http://twitter.com/lmasini</a><br>
&gt; <a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9" target="_blank">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>
&gt; ****************************************<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; forge-dev mailing list<br>
&gt; <a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
<br>
_______________________________________________<br>
forge-dev mailing list<br>
<a href="mailto:forge-dev@lists.jboss.org">forge-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/forge-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/forge-dev</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>****************************************<br><a href="http://www.lucamasini.net">http://www.lucamasini.net</a><br><a href="http://twitter.com/lmasini">http://twitter.com/lmasini</a><br>

<a href="http://www.linkedin.com/pub/luca-masini/7/10/2b9">http://www.linkedin.com/pub/luca-masini/7/10/2b9</a><br>****************************************<br>
</div>