You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for configuring WSS4J's USE_SINGLE_CERTIFICATE option
This commit allows to configure the `USE_SINGLE_CERTIFICATE` option,
which enables the choice of using valueType X509PKIPathv1 instead of
X509v3.
See gh-153
Copy file name to clipboardExpand all lines: spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java
+8
Original file line number
Diff line number
Diff line change
@@ -595,6 +595,14 @@ public void setEnableRevocation(boolean enableRevocation) {
595
595
this.enableRevocation = enableRevocation;
596
596
}
597
597
598
+
/**
599
+
* Enables the {@code useSingleCertificate} attribute on WS-Security headers on outgoing messages. Default is
0 commit comments