and then locate the entries in the file as below.
<!-- SSL/TLS Connector configuration using the admin devl guide keystore
<Connector port="8443" address="${jboss.bind.address}"
maxThreads="100" minSpareThreads="5" maxSpareThreads="15"
scheme="https" secure="true" clientAuth="false"
keystoreFile="${jboss.server.home.dir}/conf/sdp.keystore"
keystorePass="sdpsecured" sslProtocol = "TLS" />
Please replace the file name sdp.keystore with the pfx file name (name.pfx)
and also enter the keystoreType="pkcs12" after the file name and also replace the 'sdpsecured' with the password for the .pfx file.
The entries should be as given below
keystoreFile="${jboss.server.home.dir}/conf/name.pfx" keystoreType="pkcs12"
keystorePass="your password" sslProtocol = "TLS" />