summaryrefslogtreecommitdiff
path: root/src/saml2/soap.py
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2013-01-24 10:39:51 +0100
committerRoland Hedberg <roland.hedberg@adm.umu.se>2013-01-24 10:39:51 +0100
commitb295a359b994fccddbbd16935434bc32563d5d2c (patch)
tree04e00d00935bdaadec8c10d345171e9b59e2e609 /src/saml2/soap.py
parentcf2d75b70d2af5fa1005fc2476d27592e85c8e5d (diff)
downloadpysaml2-b295a359b994fccddbbd16935434bc32563d5d2c.tar.gz
Fixed so ECP now works both on SP, IdP and Client side. Minor tweaks left.
Diffstat (limited to 'src/saml2/soap.py')
-rw-r--r--src/saml2/soap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saml2/soap.py b/src/saml2/soap.py
index 6c87a818..ac2c515f 100644
--- a/src/saml2/soap.py
+++ b/src/saml2/soap.py
@@ -65,8 +65,8 @@ def parse_soap_enveloped_saml_logout_request(text):
expected_tag = '{%s}LogoutRequest' % SAMLP_NAMESPACE
return parse_soap_enveloped_saml_thingy(text, [expected_tag])
-def parse_soap_enveloped_saml_authentication_request(text):
- expected_tag = '{%s}AuthenticationRequest' % SAMLP_NAMESPACE
+def parse_soap_enveloped_saml_authn_request(text):
+ expected_tag = '{%s}AuthnRequest' % SAMLP_NAMESPACE
return parse_soap_enveloped_saml_thingy(text, [expected_tag])
def parse_soap_enveloped_saml_artifact_resolve(text):