All Samples(77) | Call(69) | Derive(0) | Import(8)
src/p/y/pysaml2-2.0.0/example/sp-wsgi/sp.py pysaml2(Download)
from saml2.httputil import Response from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.httputil import SeeOther from saml2.httputil import Unauthorized
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response) except VerificationError, err: resp = ServiceError("Verification error: %s" % (err,))
return resp(self.environ, self.start_response) except Exception, err: resp = ServiceError("Other error: %s" % (err,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-HEAD/example/sp-wsgi/sp.py pysaml2(Download)
from saml2.httputil import Response from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.httputil import SeeOther from saml2.httputil import Unauthorized
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response) except VerificationError, err: resp = ServiceError("Verification error: %s" % (err,))
return resp(self.environ, self.start_response) except Exception, err: resp = ServiceError("Other error: %s" % (err,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-2.0.0/example/idp2/idp.py pysaml2(Download)
from saml2.httputil import Unauthorized from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.ident import Unknown from saml2.metadata import create_metadata_string
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-2.0.0/example/idp2/service.py pysaml2(Download)
from saml2.httputil import Unauthorized from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.ident import Unknown from saml2.s_utils import rndstr, exception_trace
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-2.0.0/example/idp2_repoze/idp.py pysaml2(Download)
from saml2.httputil import Unauthorized from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.ident import Unknown from saml2.metadata import create_metadata_string
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-HEAD/example/idp2_repoze/idp.py pysaml2(Download)
from saml2.httputil import Unauthorized from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.ident import Unknown from saml2.metadata import create_metadata_string
except UnknownPrincipal, excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding, excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-HEAD/example/idp2/idp.py pysaml2(Download)
from saml2.httputil import Unauthorized from saml2.httputil import BadRequest from saml2.httputil import ServiceError from saml2.ident import Unknown from saml2.metadata import create_metadata_string
except UnknownPrincipal as excp: logger.error("UnknownPrincipal: %s" % (excp,)) resp = ServiceError("UnknownPrincipal: %s" % (excp,)) return resp(self.environ, self.start_response) except UnsupportedBinding as excp: logger.error("UnsupportedBinding: %s" % (excp,)) resp = ServiceError("UnsupportedBinding: %s" % (excp,)) return resp(self.environ, self.start_response)
src/p/y/pysaml2-2.0.0/example/idp_repoze/idp.py pysaml2(Download)
from urlparse import parse_qs from saml2.httputil import Unauthorized, NotFound, BadRequest from saml2.httputil import ServiceError from saml2.httputil import Response from saml2.pack import http_form_post_message
if req is None: resp = ServiceError("Failed to parse the SAML request") return resp(environ, start_response)