X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=isapi_shib%2Fisapi_shib.cpp;h=e04bdcdbf5426d04d582d3f4cb176712c13033ee;hb=c7edcac223ff582f749005f45e14472b0907c6f7;hp=80991106a609e6b38c16eb727cc53ea26750b146;hpb=c07d803effcb23bdadf24032e19763390950a912;p=shibboleth%2Fsp.git diff --git a/isapi_shib/isapi_shib.cpp b/isapi_shib/isapi_shib.cpp index 8099110..e04bdcd 100644 --- a/isapi_shib/isapi_shib.cpp +++ b/isapi_shib/isapi_shib.cpp @@ -601,8 +601,9 @@ extern "C" DWORD WINAPI HttpFilterProc(PHTTP_FILTER_CONTEXT pfc, DWORD notificat return WriteClientError(pfc,"Shibboleth Filter caught an exception, check Event Log for details."); } catch(...) { + LogEvent(NULL, EVENTLOG_ERROR_TYPE, 2100, NULL, "Shibboleth Filter threw an unknown exception."); if (g_catchAll) - return WriteClientError(pfc,"Shibboleth Filter caught an unknown exception."); + return WriteClientError(pfc,"Shibboleth Filter threw an unknown exception."); throw; } @@ -918,8 +919,9 @@ extern "C" DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB) return WriteClientError(lpECB,"Shibboleth Extension caught an exception, check Event Log for details."); } catch(...) { + LogEvent(NULL, EVENTLOG_ERROR_TYPE, 2100, NULL, "Shibboleth Extension threw an unknown exception."); if (g_catchAll) - return WriteClientError(lpECB,"Shibboleth Extension caught an unknown exception."); + return WriteClientError(lpECB,"Shibboleth Extension threw an unknown exception."); throw; }