14

we get the following exception in our application under tomcat which is using cas.

java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

when I google for it I found some guess and solutions but no one can help me .

here is a part of our tomcat server.xml file:

<Connector SSLEnabled="true" clientAuth="false" keystoreFile="conf/.keystore" maxThreads="150" port="8443" protocol="HTTP/1.1" scheme="https" secure="true" sslProtocol="TLS"/>

we point to our generated keystore.

John Saunders
  • 160,644
  • 26
  • 247
  • 397
Jimmy1980
  • 167
  • 1
  • 1
  • 4

1 Answers1

21

This bizarre error message usually means that your specified truststore was not found where you said it was.

user207421
  • 305,947
  • 44
  • 307
  • 483