Replies: 1 comment
-
The necessary changes were implemented in #166 and #167 and part of the 2.3.0 release. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We discovered an issue where our Receipt messages always used
X509v3
instead ofX509PKIPathv1
in the SecurityTokenReference.Reason seems to be that in
AS4RequestHandler
there are multiple code paths where theAS4SigningParams
are created via constructornew AS4SigningParams
without the ability to modify them externally (by e.g. settingsetUseSingleCertificate(false)
):Therefore, e.g. (and other places)
AS4RequestHandler#_signResponseIfNeeded
uses these signing params withsetUseSingleCertificate(true)
as default.Is there something missing to customize the signing params?
Beta Was this translation helpful? Give feedback.
All reactions