diff options
-rw-r--r-- | coip/apps/saml2/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coip/apps/saml2/views.py b/coip/apps/saml2/views.py index 28f533d..f109094 100644 --- a/coip/apps/saml2/views.py +++ b/coip/apps/saml2/views.py @@ -124,6 +124,6 @@ def aq(request): aa_response = _aa_reply(aa, aq, claims, sp_entityid) xml = soap.make_soap_enveloped_saml_thingy(aa_response) logging.debug(xml) - return HttpResponse(content=xml, content_type="application/soap+xml") + return HttpResponse(content=xml, content_type="text/xml") else: return HttpResponseBadRequest("<html><head><title>No</title></head><body><h1>Bad Request</h1><p>Go sell crazy someplace else, we're all stocked up here!</p></body></html>")
\ No newline at end of file |