diff options
author | John Dennis <jdennis@redhat.com> | 2015-01-26 16:04:40 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-05-08 11:17:02 -0400 |
commit | be55bdf7ee36ad38b25b5f79fc4b82edb2557148 (patch) | |
tree | 27366c06367351b9c14677992f3581a01b504da1 /ipsilon/util/constants.py | |
parent | cfe24fa3dc15d87f3ace944a2d62a0f4c5ee496c (diff) | |
download | ipsilon.git-be55bdf7ee36ad38b25b5f79fc4b82edb2557148.tar.gz ipsilon.git-be55bdf7ee36ad38b25b5f79fc4b82edb2557148.tar.xz ipsilon.git-be55bdf7ee36ad38b25b5f79fc4b82edb2557148.zip |
Implement ECP in Ipsilon
* add saml2/SSO/SOAP endpoint.
* add check for lasso version, ECP endpoint only exposed in metadata
if lasso has full ECP support.
* add SSO_SOAP soap authentication handler (used for ECP).
* add SAML binding to transaction so we can determine if cookies
and other HTTP concepts are expected. Each handler is responsible
for setting the binding.
* add some constants needed for ECP
https://fedorahosted.org/ipsilon/ticket/4
Signed-off-by: John Dennis <jdennis@redhat.com>
Reviewed-by: Rob Crittenden <rcritten@redhat.com>
Diffstat (limited to 'ipsilon/util/constants.py')
-rw-r--r-- | ipsilon/util/constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipsilon/util/constants.py b/ipsilon/util/constants.py new file mode 100644 index 0000000..5de4cf8 --- /dev/null +++ b/ipsilon/util/constants.py @@ -0,0 +1,4 @@ +# Copyright (C) 2015 Ipsilon project Contributors, for license see COPYING + +SOAP_MEDIA_TYPE = 'application/soap+xml' +XML_MEDIA_TYPE = 'text/xml' |