It is, but:

1. Your output log shows that there is a bug where CAS is picking the callback 
url instead of the actual OAUTH service. So there is something missing there.
2. Even if it picked the right client/service instance, CAS does not support 
SLO for OAUTH/OIDC. You’d need to make it work with the normal CAS logout 
payload. Which means you’d have an OAuth client that expects a SAML-like logout 
request! which is very odd. 
2.1 Or you may get it work with FRONT_CHANNEL logout options assuming 1 is 
fixed, where CAS simply pings your endpoint [speaking from memory here]. 

-- 
Misagh

From: Todd Pratt <[email protected]>
Reply: [email protected] <[email protected]>
Date: February 28, 2017 at 12:41:58 AM
To: CAS Community <[email protected]>
Cc: [email protected] <[email protected]>
Subject:  Re: [cas-user] Re: CAS 5.0.1, FAILURE on sending SLO message  

I was expecting it to send a post or get request to my application when SLO was 
initiated.  Is that not what it's suppose to do?


On Monday, February 27, 2017 at 3:58:40 PM UTC-5, Misagh Moayyed wrote:
I don’t think this would work in the way you describe it. File an issue please, 
and include an exact account of your environment, settings, etc as the template 
describes. If you have an oauth client that can be used for testing, do attach 
that as well. 

-- 
Misagh

From: Todd Pratt <[email protected]>
Reply: [email protected] <[email protected]>
Date: February 27, 2017 at 9:28:46 PM
To: CAS Community <[email protected]>
Subject:  [cas-user] Re: CAS 5.0.1, FAILURE on sending SLO message

I downloaded 5.0.3.1 and it's having the same issue.  The url in 
OAuth20CallbackAuthorizeController is null, link below to the source.  The 
Apache http log messages show the null so I believe that's why the logout 
message is failing.  << "Location: 
https://cas.morleyweb.com:8443/cas/oauth2.0/null[\r][\n]";>   Can anyone confirm 
that Single Logout is working and sending logout messages to OAuth services?


https://github.com/apereo/cas/blob/5.0.x/support/cas-server-support-oauth/src/main/java/org/apereo/cas/support/oauth/web/OAuth20CallbackAuthorizeController.java#L46


On Wednesday, February 22, 2017 at 12:37:25 PM UTC-5, Todd Pratt wrote:
I'm having an issue with getting SLO working on CAS 5.0.1.  From the log I see 
that CAS tries to send a logout message to my test application but I'm getting 
a FAILURE status and it doesn't show a request in the access log of my test 
application.  The service provider for my test application is an OAuth provider 
and I have Back Channel selected with a Logout URL. I included the logs below.  
Any help would be greatly appreciated on why I'm getting this failure on the 
SLO.


2017-02-22 11:38:33,532 INFO [org.apereo.cas.logout.LogoutManagerImpl] - 
<Performing logout operations for 
[TGT-**********************************************avtXJTMv3v-deadshot]>
2017-02-22 11:38:33,535 DEBUG [org.apereo.cas.logout.LogoutManagerImpl] - 
<Handling single logout callback for 
https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso>
2017-02-22 11:38:33,536 DEBUG [org.apereo.cas.util.RegexUtils] - <Pattern 
https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize.* is a valid regex.>
2017-02-22 11:38:33,542 DEBUG 
[org.apereo.cas.logout.SamlCompliantLogoutMessageCreator] - <Generated logout 
message: [<samlp:LogoutRequest 
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" 
ID="LR-1-XgdS2rCfmF0WO1t4tyrtYfIqxoPVlY91zuF" Version="2.0" 
IssueInstant="2017-02-22T11:38:33Z"><saml:NameID 
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">@NOT_USED@</saml:NameID><samlp:SessionIndex>ST-1-D7OjtKMrRrHw4AaCfYwQ-deadshot</samlp:SessionIndex></samlp:LogoutRequest>]>
2017-02-22 11:38:33,543 DEBUG 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Sending 
logout request for 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso]
 to 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso]>
2017-02-22 11:38:33,545 DEBUG 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Prepared 
logout message to send is 
[org.apereo.cas.logout.LogoutHttpMessage@34d4f22a[url=https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso,message=<samlp:LogoutRequest
 xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" 
ID="LR-1-XgdS2rCfmF0WO1t4tyrtYfIqxoPVlY91zuF" Version="2.0" 
IssueInstant="2017-02-22T11:38:33Z"><saml:NameID 
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">@NOT_USED@</saml:NameID><samlp:SessionIndex>ST-1-D7OjtKMrRrHw4AaCfYwQ-deadshot</samlp:SessionIndex></samlp:LogoutRequest>,asynchronous=false,contentType=application/x-www-form-urlencoded,responseCode=0]]>
2017-02-22 11:38:38,579 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Connecting 
socket to cas.mydomain.com/10.24.35.45:443 with timeout 5000>
2017-02-22 11:38:38,586 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Enabled 
protocols: [TLSv1, TLSv1.1, TLSv1.2]>
2017-02-22 11:38:38,586 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Enabled 
cipher suites:[TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, 
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_RSA_WITH_AES_256_CBC_SHA256, 
TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, 
TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, 
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, 
TLS_RSA_WITH_AES_256_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, 
TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, 
TLS_DHE_DSS_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, 
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, 
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, 
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, 
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, 
TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, 
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, 
TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, 
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 
TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, 
TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, 
TLS_DHE_DSS_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, 
TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, 
TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, 
TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, 
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, 
TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, 
SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, 
TLS_EMPTY_RENEGOTIATION_INFO_SCSV]>
2017-02-22 11:38:38,588 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Starting 
handshake>
2017-02-22 11:38:38,664 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Secure 
session established>
2017-02-22 11:38:38,664 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < negotiated 
protocol: TLSv1.2>
2017-02-22 11:38:38,665 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < negotiated 
cipher suite: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384>
2017-02-22 11:38:38,666 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < peer 
principal: CN=*.mydomain.com, OU=Domain Control Validated>
2017-02-22 11:38:38,666 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < peer 
alternative names: [*.mydomain.com, mydomain.com]>
2017-02-22 11:38:38,667 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < issuer 
principal: CN=Go Daddy Secure Certificate Authority - G2, 
OU=http://certs.godaddy.com/repository/, O="GoDaddy.com, Inc.", L=Scottsdale, 
ST=Arizona, C=US>
2017-02-22 11:38:38,720 WARN 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Logout 
message not sent to 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso];
 Continuing processing...>
2017-02-22 11:38:38,721 DEBUG [org.apereo.cas.logout.LogoutManagerImpl] - 
<Captured logout request 
[org.apereo.cas.logout.DefaultLogoutRequest@7b50b528[ticketId=ST-1-D7OjtKMrRrHw4AaCfYwQ-deadshot,service=https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso,status=FAILURE]]>





--------------------------------------------------------------
With Apache HTTP Debug ON


2017-02-22 12:03:50,932 DEBUG 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Sending 
logout request for 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso]
 to 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso]>
2017-02-22 12:03:50,935 DEBUG 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Prepared 
logout message to send is 
[org.apereo.cas.logout.LogoutHttpMessage@73cad41f[url=https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso,message=<samlp:LogoutRequest
 xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" 
ID="LR-1-hUGhz7sDdsPbzc6P5eWG9PTbaPMVdAkpSzd" Version="2.0" 
IssueInstant="2017-02-22T12:03:50Z"><saml:NameID 
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">@NOT_USED@</saml:NameID><samlp:SessionIndex>ST-1-JgG7c6eqPckMVVE33jjB-deadshot</samlp:SessionIndex></samlp:LogoutRequest>,asynchronous=false,contentType=application/x-www-form-urlencoded,responseCode=0]]>
2017-02-22 12:03:50,989 DEBUG 
[org.apache.http.client.protocol.RequestAddCookies] - <CookieSpec selected: 
default>
2017-02-22 12:03:51,016 DEBUG 
[org.apache.http.client.protocol.RequestAuthCache] - <Auth cache not set in the 
context>
2017-02-22 12:03:51,020 DEBUG 
[org.apache.http.impl.conn.PoolingHttpClientConnectionManager] - <Connection 
request: [route: {s}->https://cas.mydomain.com:443][total kept alive: 0; route 
allocated: 0 of 50; total allocated: 0 of 100]>
2017-02-22 12:03:51,063 DEBUG 
[org.apache.http.impl.conn.PoolingHttpClientConnectionManager] - <Connection 
leased: [id: 0][route: {s}->https://cas.mydomain.com:443][total kept alive: 0; 
route allocated: 1 of 50; total allocated: 1 of 100]>
2017-02-22 12:03:51,067 DEBUG [org.apache.http.impl.execchain.MainClientExec] - 
<Opening connection {s}->https://cas.mydomain.com:443>
2017-02-22 12:03:51,098 DEBUG 
[org.apache.http.impl.conn.DefaultHttpClientConnectionOperator] - <Connecting 
to cas.mydomain.com/10.24.35.45:443>
2017-02-22 12:03:51,099 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Connecting 
socket to cas.mydomain.com/10.24.35.45:443 with timeout 5000>
2017-02-22 12:03:51,106 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Enabled 
protocols: [TLSv1, TLSv1.1, TLSv1.2]>
2017-02-22 12:03:51,106 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Enabled 
cipher suites:[TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, 
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_RSA_WITH_AES_256_CBC_SHA256, 
TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, 
TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, 
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, 
TLS_RSA_WITH_AES_256_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, 
TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, 
TLS_DHE_DSS_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, 
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, 
TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, 
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, 
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, 
TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, 
TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, 
TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, 
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 
TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, 
TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, 
TLS_DHE_DSS_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, 
TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, 
TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, 
TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, 
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, 
TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, 
SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, 
TLS_EMPTY_RENEGOTIATION_INFO_SCSV]>
2017-02-22 12:03:51,106 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Starting 
handshake>
2017-02-22 12:03:51,172 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - <Secure 
session established>
2017-02-22 12:03:51,172 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < negotiated 
protocol: TLSv1.2>
2017-02-22 12:03:51,173 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < negotiated 
cipher suite: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384>
2017-02-22 12:03:51,175 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < peer 
principal: CN=*.mydomain.com, OU=Domain Control Validated>
2017-02-22 12:03:51,175 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < peer 
alternative names: [*.mydomain.com, mydomain.com]>
2017-02-22 12:03:51,176 DEBUG 
[org.apereo.cas.authentication.FileTrustStoreSslSocketFactory] - < issuer 
principal: CN=Go Daddy Secure Certificate Authority - G2, 
OU=http://certs.godaddy.com/repository/, O="GoDaddy.com, Inc.", L=Scottsdale, 
ST=Arizona, C=US>
2017-02-22 12:03:51,183 DEBUG 
[org.apache.http.impl.conn.DefaultHttpClientConnectionOperator] - <Connection 
established 10.24.35.45:46430<->10.24.35.45:443>
2017-02-22 12:03:51,184 DEBUG 
[org.apache.http.impl.conn.DefaultManagedHttpClientConnection] - 
<http-outgoing-0: set socket timeout to 5000>
2017-02-22 12:03:51,184 DEBUG [org.apache.http.impl.execchain.MainClientExec] - 
<Executing request POST 
/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso
 HTTP/1.1>
2017-02-22 12:03:51,185 DEBUG [org.apache.http.impl.execchain.MainClientExec] - 
<Target auth state: UNCHALLENGED>
2017-02-22 12:03:51,186 DEBUG [org.apache.http.impl.execchain.MainClientExec] - 
<Proxy auth state: UNCHALLENGED>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
POST 
/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso
 HTTP/1.1>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
Content-Type: application/x-www-form-urlencoded>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
Content-Length: 475>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
Host: cas.mydomain.com>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
Connection: Keep-Alive>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
User-Agent: Apache-HttpClient/4.5.2 (Java/1.8.0_111)>
2017-02-22 12:03:51,189 DEBUG [org.apache.http.headers] - <http-outgoing-0 >> 
Accept-Encoding: gzip,deflate>
2017-02-22 12:03:51,191 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"POST 
/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso
 HTTP/1.1[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"Content-Type: application/x-www-form-urlencoded[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"Content-Length: 475[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"Host: cas.mydomain.com[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"Connection: Keep-Alive[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"User-Agent: Apache-HttpClient/4.5.2 (Java/1.8.0_111)[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"Accept-Encoding: gzip,deflate[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"[\r][\n]">
2017-02-22 12:03:51,192 DEBUG [org.apache.http.wire] - <http-outgoing-0 >> 
"logoutRequest=%3Csamlp%3ALogoutRequest+xmlns%3Asamlp%3D%22urn%3Aoasis%3Anames%3Atc%3ASAML%3A2.0%3Aprotocol%22+ID%3D%22LR-1-hUGhz7sDdsPbzc6P5eWG9PTbaPMVdAkpSzd%22+Version%3D%222.0%22+IssueInstant%3D%222017-02-22T12%3A03%3A50Z%22%3E%3Csaml%3ANameID+xmlns%3Asaml%3D%22urn%3Aoasis%3Anames%3Atc%3ASAML%3A2.0%3Aassertion%22%3E%40NOT_USED%40%3C%2Fsaml%3ANameID%3E%3Csamlp%3ASessionIndex%3EST-1-JgG7c6eqPckMVVE33jjB-deadshot%3C%2Fsamlp%3ASessionIndex%3E%3C%2Fsamlp%3ALogoutRequest%3E">
2017-02-22 12:03:51,204 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"HTTP/1.1 302 Found[\r][\n]">
2017-02-22 12:03:51,205 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"Server: Apache-Coyote/1.1[\r][\n]">
2017-02-22 12:03:51,205 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"X-Application-Context: cas:native:443[\r][\n]">
2017-02-22 12:03:51,205 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"Location: https://cas.mydomain.com/cas/oauth2.0/null[\r][\n]";>
2017-02-22 12:03:51,206 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"Content-Language: en[\r][\n]">
2017-02-22 12:03:51,206 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"Content-Length: 0[\r][\n]">
2017-02-22 12:03:51,207 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"Date: Wed, 22 Feb 2017 17:03:51 GMT[\r][\n]">
2017-02-22 12:03:51,207 DEBUG [org.apache.http.wire] - <http-outgoing-0 << 
"[\r][\n]">
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
HTTP/1.1 302 Found>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
Server: Apache-Coyote/1.1>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
X-Application-Context: cas:native:443>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
Location: https://cas.mydomain.com/cas/oauth2.0/null>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
Content-Language: en>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
Content-Length: 0>
2017-02-22 12:03:51,222 DEBUG [org.apache.http.headers] - <http-outgoing-0 << 
Date: Wed, 22 Feb 2017 17:03:51 GMT>
2017-02-22 12:03:51,231 DEBUG [org.apache.http.impl.execchain.MainClientExec] - 
<Connection can be kept alive indefinitely>
2017-02-22 12:03:51,231 DEBUG 
[org.apache.http.impl.conn.PoolingHttpClientConnectionManager] - <Connection 
[id: 0][route: {s}->https://cas.mydomain.com:443] can be kept alive 
indefinitely>
2017-02-22 12:03:51,232 DEBUG 
[org.apache.http.impl.conn.PoolingHttpClientConnectionManager] - <Connection 
released: [id: 0][route: {s}->https://cas.mydomain.com:443][total kept alive: 
1; route allocated: 1 of 50; total allocated: 1 of 100]>
2017-02-22 12:03:51,242 WARN 
[org.apereo.cas.logout.DefaultSingleLogoutServiceMessageHandler] - <Logout 
message not sent to 
[https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso];
 Continuing processing...>
2017-02-22 12:03:51,243 DEBUG [org.apereo.cas.logout.LogoutManagerImpl] - 
<Captured logout request 
[org.apereo.cas.logout.DefaultLogoutRequest@423a0483[ticketId=ST-1-JgG7c6eqPckMVVE33jjB-deadshot,service=https://cas.mydomain.com/cas/oauth2.0/callbackAuthorize?client_name=CasOAuthClient&client_id=wjaoSJUK4377&redirect_uri=https://qa.mydomain.com/motime/sso,status=FAILURE]]>






--
- CAS gitter chatroom: https://gitter.im/apereo/cas
- CAS mailing list guidelines: https://apereo.github.io/cas/Mailing-Lists.html
- CAS documentation website: https://apereo.github.io/cas
- CAS project website: https://github.com/apereo/cas
---
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/ff743a37-34f8-4cd1-b713-2af66580d6cd%40apereo.org.
--
- CAS gitter chatroom: https://gitter.im/apereo/cas
- CAS mailing list guidelines: https://apereo.github.io/cas/Mailing-Lists.html
- CAS documentation website: https://apereo.github.io/cas
- CAS project website: https://github.com/apereo/cas
---
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/236fcf29-6b95-4a7d-a87d-55f7a9624527%40apereo.org.

-- 
- CAS gitter chatroom: https://gitter.im/apereo/cas
- CAS mailing list guidelines: https://apereo.github.io/cas/Mailing-Lists.html
- CAS documentation website: https://apereo.github.io/cas
- CAS project website: https://github.com/apereo/cas
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/etPan.58b49712.5d4ea9b3.23d8%40unicon.net.

Reply via email to