Created
August 12, 2011 08:24
-
-
Save bulain/1141691 to your computer and use it in GitHub Desktop.
CXF client config with HTTPS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Spring Configuration--> | |
<http:conduit name="https://localhost:8083/WebService"> | |
<http:tlsClientParameters> | |
<sec:keyManagers keyPassword="keypassword"> | |
<sec:keyStore type="PKCS12" password="keypassword" file="keyfile"/> | |
</sec:keyManagers> | |
</http:tlsClientParameters> | |
</http:conduit> | |
<!-- Keystore File Format --> | |
JKS: .jks/.ks | |
JCEKS: .jce | |
PKCS12: .p12/.pfx | |
BKS: .bks | |
UBER: .ubr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment