Anshu Mishra
Anshu Mishra

Reputation: 11

JBoss 7 support for TLS1.1 and TLS1.2

I am new to the JBoss server and I need to migrate my application from JBoss 5.1 to JBoss 7.

Currently JBoss 5.1 is using SSLProtocal=TLS and in JBoss 7 I need to use SSLProtocal=TLSv1.0,TLSv1.1,TLSv1.2 as per the JBoss documentation.


Can anyone help me on following points:

Upvotes: 1

Views: 3671

Answers (1)

Philippe Marschall
Philippe Marschall

Reputation: 4604

  1. You should not migrate to JBoss AS 7.1, it is old and has many bugs. If you're looking for the community application server from JBoss you should migrate to WildFly AS 10.1. If you're talking about EAP, then version 7 is fine.
  2. JBoss AS 7.1 does support TLS1.0, TLS1.1 and TLS1.2. See https://wildscribe.github.io/JBoss%20AS7/7.1.1/subsystem/web/connector/ssl/configuration/index.html
  3. The TLS version of one client does not have any effect on the TLS version of an other client.

Upvotes: 1

Related Questions