I had this same issue.
If you follow these steps, all you are doing is backing up, then editing the server.xml file.
I will copy paste GE's tutorial on how I fixed my issue:
1.On the application server, stop the JBoss service using Windows Task Manager >
Services.
2..On the application server, locate the JBoss server.xml file (usually C:\Program
Files\<Centricity Practice Solution>\jboss\server\default\deploy\jbossweb.sar\).
Where <Centricity Practice Solution> is the name of your application.
3 If necessary, alter the permissions of this file to allow editing.
a Right-click the file and select Properties.
b Select the Security tab, and then click Edit…
The permissions for server.xml opens.
c Highlight the 'Users (…\Users) row and select the Modify check box under the
Allow column for Write.
d Click OK and then OK again to close permissions.
4 Select the server.xml file and press Ctrl + C, and then Ctrl + V to create a copy
named server.xml – Copy.
5 Edit the original server.xml file in a text editor, such as Notepad++. This file uses
UNIX-style line endings and will appear oddly formatted in some text editors. You
may wish to use a text editor that understands this line ending style, such as
Notepad++.
6 Find the xml tag Connector that also has the attribute sslProtocol. There are
multiple Connector tags; be sure to alter only the one with the attribute
sslProtocol, there will be only one of these. Make two changes to this tag.
a Change the value of the sslProtocol attribute to TLSv1 (It should currently be
TLS).
b Add a new attribute to the same tag named ciphers with the value:
TLS_RSA_WITH_AES_128_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5,
SSL_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA
,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3D
ES_EDE_CBC_SHA
The file should look like this...
Before:
<Connector … sslProtocol="TLS"/>
After:
<Connector … sslProtocol="TLSv1"
ciphers="TLS_RSA_WITH_AES_128_CBC_SHA,SSL_RSA_WITH_RC4_1
28_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_3DES_EDE_CB
C_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH
_3DES_EDE_CBC_SHA"/>
7 Restart the JBoss service using Windows Task Manager > Services.
Posted : May 31, 2017 11:52 am