Re: Securing Tomcat cluster communication

2011-11-23 Thread Afkham Azeez
Thanks Filip. I will try to implement this & contribute it back to Tomcat if that would be useful. Azeez On Thu, Nov 24, 2011 at 2:06 AM, Filip Hanik - Dev Lists wrote: > Yes, that way you could encrypt your data packets and not worry about the > wire protocol. > the placement of the intercepto

Re: Securing Tomcat cluster communication

2011-11-23 Thread Filip Hanik - Dev Lists
Yes, that way you could encrypt your data packets and not worry about the wire protocol. the placement of the interceptor will be important, so that you don't encrypt packets you don't need to (like ping and failure detection) Filip On 11/23/2011 10:53 AM, Afkham Azeez wrote: On Wed, Nov 23,

Re: Securing Tomcat cluster communication

2011-11-23 Thread Afkham Azeez
On Wed, Nov 23, 2011 at 8:48 PM, Filip Hanik - Dev Lists wrote: > On 10/6/2011 8:31 AM, Afkham Azeez wrote: > >> I had a look at the Tribes code. Can somebody please explain how >> Channel.SEND_OPTIONS_SECURE works? >> > not yet implemented :( > What is the proper way of implementing this if I w

Re: Securing Tomcat cluster communication

2011-11-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Afkham, On 10/6/11 10:17 AM, Afkham Azeez wrote: > Is there a way to do authentication in Tribes when new members try > to join a cluster so that unauthorized nodes cannot join in? Also, > when clustering messages are sent back & forth, how do we ensu

Re: Securing Tomcat cluster communication

2011-11-23 Thread Filip Hanik - Dev Lists
On 10/6/2011 8:31 AM, Afkham Azeez wrote: I had a look at the Tribes code. Can somebody please explain how Channel.SEND_OPTIONS_SECURE works? not yet implemented :( > From the JavaDoc: SEND_OPTIONS_SECURE - Message is sent over an encrypted channel How is this encrypted channel setup? How do

Re: Securing Tomcat cluster communication

2011-10-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Azeez, On 10/6/2011 10:17 AM, Afkham Azeez wrote: > Is there a way to do authentication in Tribes when new members try > to join a cluster so that unauthorized nodes cannot join in? Also, > when clustering messages are sent back & forth, how do we ens

Re: Securing Tomcat cluster communication

2011-10-06 Thread Afkham Azeez
Thanks Alexander. That would work for authentication. But how could we achieve confidentiality when it comes to the clustering messages (state replication etc)? On Thu, Oct 6, 2011 at 7:52 PM, Alexander Diedler wrote: > Hello, > Please search for "secret" in > http://tomcat.apache.org/connectors-

Re: Securing Tomcat cluster communication

2011-10-06 Thread Afkham Azeez
I had a look at the Tribes code. Can somebody please explain how Channel.SEND_OPTIONS_SECURE works? >From the JavaDoc: SEND_OPTIONS_SECURE - Message is sent over an encrypted channel How is this encrypted channel setup? How do we define the keys/keystores etc? On Thu, Oct 6, 2011 at 7:47 PM, Af