This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-rampart.git
commit 206965aaaa67b6c47259d9a5039ac01c7a599386 Author: Robert Lazarski <robertlazar...@gmail.com> AuthorDate: Fri Nov 1 08:45:24 2024 -1000 RAMPART-448 NullPointerException in RampartUtil.setKeyIdentifierType() when signing response --- .../rampart-core/src/main/java/org/apache/rampart/util/RampartUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rampart-core/src/main/java/org/apache/rampart/util/RampartUtil.java b/modules/rampart-core/src/main/java/org/apache/rampart/util/RampartUtil.java index 8f5f1114..78c6ae64 100644 --- a/modules/rampart-core/src/main/java/org/apache/rampart/util/RampartUtil.java +++ b/modules/rampart-core/src/main/java/org/apache/rampart/util/RampartUtil.java @@ -1479,7 +1479,7 @@ public class RampartUtil { && ((Wss11) wss).isMustSupportRefThumbprint()) { secBase.setKeyIdentifierType(WSConstants.THUMBPRINT_IDENTIFIER); } else if (log.isDebugEnabled()) { - log.debug("RampartUtil.setKeyIdentifierType() attempted secpolicy Wss10 and Wss111 but was not able to identify the correcc constant to set on WSSecBase.setKeyIdentifierType()" ); + log.debug("RampartUtil.setKeyIdentifierType() attempted secpolicy Wss10 and Wss11 but was not able to identify the correcc constant to set on WSSecBase.setKeyIdentifierType()" ); } }