Replies: 3 comments
-
source of the quote: https://github.com/node-saml/passport-saml/tree/d5ab7be931d894aab4844d0e19b9915b546c411a#config-parameter-details If you check ultimate documentation (source code) you'll see that the only place where that configration option is used is: passport-saml/src/node-saml/saml.ts Lines 267 to 269 in d5ab7be where it is used to determine whether ACS URL is added to AuthnRequest (btw. link points to version v3.2.0 because that version of node-saml/passport-saml repository's content contains also stuff which has been since then splitted to node-saml/node-saml repository).
Furthermore
Rationale for
|
Beta Was this translation helpful? Give feedback.
-
Hi @srd90, The issue I'm facing here is that I want to use passport-SAML to authenticate via an ISAM instance (IBM Security Access Manager). That was why I tried to get rid of the AssertionConsumerService entry in the first place. But seing that it is a mandatory field, my question is: does anyone have any suggestion on what to try to get this scenario working? I run out of ideas long time ago, and I think there is something I'm defnintely doing wrong in all this . Thanks so much for your help, and regards. |
Beta Was this translation helpful? Give feedback.
-
I wouldn't normally suggest it, but you can capture the metadata and modify it how you need and then pass that along to the service for federation. The two don't need to be linked in real-time. Also, you might find that working with |
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
I'm trying to configure a Strategy that does not include the AssertionConsumerServiceURL in the metadata.xml.
For that, I set the option disableRequestAcsUrl to true. But every time I generate the metadata.xml file, the AssertionConsumerServiceURL field remains there, and I cannot get rid of it.
Here is the SAML Strategy I'm defining:
And this is the resulting medatada XML file:
Am I doing anything wrong? I'm completely lost :(
Thanks in advance, and regards!
Alex
Beta Was this translation helpful? Give feedback.
All reactions