-
-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeConsumingService support. #117
Conversation
First pass at adding AttributeConsumingService support in the AuthnRequest.
Feature/requested attrib support, feature branch -> master branch
Conflicts: setup.py
@@ -119,7 +182,7 @@ def builder(sp, authnsign=False, wsign=False, valid_until=None, cache_duration=N | |||
str_contacts = '\n'.join(contacts_info) | |||
|
|||
metadata = """<?xml version="1.0"?> | |||
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" | |||
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add xmlns:saml namespace here only if attribute_consuming_service defined?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, i'll add that in.
@pitbulk please review added new unti tests - circle-ci now passes |
ping @pitbulk any further comments on this? |
Hi @jimmyislive I had no time to review it. It will take some time, right now focus on other tasks sorry. |
At python3-saml we following a XML template strategy, but here we build the XML by concat strings. |
No description provided.