<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 4, 2016 at 11:15 PM, David M. Lloyd <span dir="ltr">&lt;<a href="mailto:david.lloyd@redhat.com" target="_blank">david.lloyd@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 05/04/2016 08:12 AM, Stuart Douglas wrote:<br>
&gt;<br>
&gt;<br>
&gt; On Wed, May 4, 2016 at 11:03 PM, David M. Lloyd &lt;<a href="mailto:david.lloyd@redhat.com">david.lloyd@redhat.com</a><br>
</span><span class="">&gt; &lt;mailto:<a href="mailto:david.lloyd@redhat.com">david.lloyd@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     Getting transactions and SFSB to share a load-balancing behavior will<br>
&gt;     hopefully be possible though.  I guess it&#39;ll require some thought to<br>
&gt;     make it easy to avoid situations where (for example) two SFSB are spread<br>
&gt;     to different nodes and then you try to create a UserTransaction which<br>
&gt;     includes both.<br>
&gt;<br>
&gt;<br>
&gt; Once you start using a SFSB or a Transaction you should get a session<br>
&gt; cookie, which should give you affinity to the relevant node (based on<br>
&gt; the assumption the load balancer supports sticky sessions).<br>
<br>
</span>Yeah I was just thinking though: does that ID apply to all future<br>
invocations across all EJBs pointing at the node URL, or just EJB<br>
invocations on that SFSB/transaction for its lifetime?  It seems like<br>
you are suggesting that all invocations then get that session ID (which<br>
is probably OK, I just like to play devil&#39;s advocate whenever possible).<br></blockquote><div><br></div><div>I am not 100% sure the best way to handle it. When a transaction or SFSB session is open this makes sense, although once all sessions/transactions has been closed there is no real reason to keep using the same session id (at the moment there is no real way for the client to know that a SFSB is gone though, maybe we need a response header to let a client know a specified session is no longer valid).</div><div> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Also, there is an edge case where separate threads create SFSBs<br>
simultaneously which we&#39;d want to ensure works as expected, in either case.<br></blockquote><div><br></div><div>Yes, it should be possible to make this work as expected.<br><br></div><div>Stuart<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
&gt;<br>
&gt; Stuart<br>
&gt;<br>
&gt;<br>
&gt;     On 05/04/2016 05:36 AM, Stuart Douglas wrote:<br>
&gt;     &gt; The purpose is to enable load balancer based clustering to work.<br>
&gt;     &gt; Basically even though there is no underlying web session the JSESSIONID<br>
&gt;     &gt; cookie will make sure that the load balancer delivers the request to the<br>
&gt;     &gt; correct backend server.<br>
&gt;     &gt;<br>
&gt;     &gt; Basically existing load balancers already support sticky sessions, and<br>
&gt;     &gt; we are just piggy backing on that, as the primary customer use case for<br>
&gt;     &gt; this is allowing EJB calls through a HTTP load balancer.<br>
&gt;     &gt;<br>
&gt;     &gt; Stuart<br>
&gt;     &gt;<br>
&gt;     &gt; On Wed, May 4, 2016 at 7:56 PM, Tomaž Cerar &lt;<a href="mailto:tomaz.cerar@gmail.com">tomaz.cerar@gmail.com</a> &lt;mailto:<a href="mailto:tomaz.cerar@gmail.com">tomaz.cerar@gmail.com</a>&gt;<br>
</span><span class="">&gt;     &gt; &lt;mailto:<a href="mailto:tomaz.cerar@gmail.com">tomaz.cerar@gmail.com</a> &lt;mailto:<a href="mailto:tomaz.cerar@gmail.com">tomaz.cerar@gmail.com</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
&gt;     &gt;     One thing that seems somewhat odd to me is the usage of JSESSIONID<br>
&gt;     &gt;     for tracking session state.<br>
&gt;     &gt;     That cookie/param is used for servlet http sessions and given that<br>
&gt;     &gt;     this is pure EJB without any servlets<br>
&gt;     &gt;     it would be bit confusing to require it. Or will this rely on<br>
&gt;     &gt;     session tracking from undertow-servlet?<br>
&gt;     &gt;<br>
&gt;     &gt;     --<br>
&gt;     &gt;     tomaz<br>
&gt;     &gt;<br>
&gt;     &gt;     On Wed, May 4, 2016 at 7:50 AM, Stuart Douglas<br>
&gt;     &gt;     &lt;<a href="mailto:stuart.w.douglas@gmail.com">stuart.w.douglas@gmail.com</a> &lt;mailto:<a href="mailto:stuart.w.douglas@gmail.com">stuart.w.douglas@gmail.com</a>&gt;<br>
</span>&gt;     &lt;mailto:<a href="mailto:stuart.w.douglas@gmail.com">stuart.w.douglas@gmail.com</a><br>
<span class="">&gt;     &lt;mailto:<a href="mailto:stuart.w.douglas@gmail.com">stuart.w.douglas@gmail.com</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
&gt;     &gt;         Hi everyone,<br>
&gt;     &gt;<br>
&gt;     &gt;         I have started looking into support for service invocation over<br>
&gt;     &gt;         HTTP. Unlike our existing HTTP upgrade support this will map EJB<br>
&gt;     &gt;         requests/responses directly to HTTP requests and responses,<br>
&gt;     &gt;         which should allow it to be used behind existing load balancers.<br>
&gt;     &gt;<br>
&gt;     &gt;         I have started an initial description of the protocol at:<br>
&gt;     &gt;<a href="https://github.com/stuartwdouglas/wildfly-http-client/blob/master/docs/wire-spec-v1.asciidoc" rel="noreferrer" target="_blank">https://github.com/stuartwdouglas/wildfly-http-client/blob/master/docs/wire-spec-v1.asciidoc</a><br>
&gt;     &gt;<br>
&gt;     &gt;         The intention is to follow HTTP semantics as closely as<br>
&gt;     &gt;         possible. Clustering will be provided in a similar manner to web<br>
&gt;     &gt;         clustering (i.e. it will require a load balancer, and work in a<br>
&gt;     &gt;         similar manner to web clustering).<br>
&gt;     &gt;<br>
&gt;     &gt;         There is still plenty work that needs to be done (especially<br>
&gt;     &gt;         around security), so if anyone has any feedback let me know.<br>
&gt;     &gt;<br>
&gt;     &gt;         Stuart<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;         _______________________________________________<br>
&gt;     &gt;         wildfly-dev mailing list<br>
&gt;     &gt;<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;<br>
</span>&gt;     &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<span class="">&gt;     &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;&gt;<br>
&gt;     &gt;<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &gt; _______________________________________________<br>
&gt;     &gt; wildfly-dev mailing list<br>
</span>&gt;     &gt;<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;<br>
<span class="">&gt;     &gt;<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;     &gt;<br>
&gt;<br>
&gt;     --<br>
&gt;     - DML<br>
&gt;     _______________________________________________<br>
&gt;     wildfly-dev mailing list<br>
</span>&gt;     <a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;<br>
<div class="HOEnZb"><div class="h5">&gt;     <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;<br>
&gt;<br>
<br>
--<br>
- DML<br>
_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a></div></div></blockquote></div><br></div></div>