This repository was archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
500: Key with 'kid' of XYZ could not be found via the '/oauth2/v1/keys' endpoint #1346
Copy link
Copy link
Open
Description
- Create Native OIDC Application in Okta, and select all Allowed Grant Types. Select 'Use Client Authentication'
- Set the login redirect URL to http://localhost:8080/client/callback
git clone https://github.com/stormpath/stormpath-sdk-java.git && git checkout oktacd examples/spring-boot-defaultand update the pom.xml file. Find and replace all occurrences of2.0.1-okta-SNAPSHOTto2.0.0-okta- cd back to
./stormpath-sdk-java&& mvn clean install cd examples/spring-boot-default- Set the required environment variables:
export STORMPATH_CLIENT_BASEURL=[baseurl_from_above]
export OKTA_APPLICATION_ID=[application_id_from_above]
export OKTA_API_TOKEN=[api_token_from_above]
mvn spring-boot:run- Register a user. This works fine
- Try to authenticate the user. This returns a 500 with the following stacktrace:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.1.RELEASE)
2017-07-20 11:57:02.989 INFO 2946 --- [ main] c.s.spring.boot.examples.Application : Starting Application on Micheles-MacBook-Pro.local with PID 2946 (/Users/elle/Stormpath/springboot-okta/stormpath-sdk-java/examples/spring-boot-default/target/classes started by elle in /Users/elle/Stormpath/springboot-okta/stormpath-sdk-java/examples/spring-boot-default)
2017-07-20 11:57:03.000 INFO 2946 --- [ main] c.s.spring.boot.examples.Application : No active profile set, falling back to default profiles: default
2017-07-20 11:57:03.429 INFO 2946 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5dc6b704: startup date [Thu Jul 20 11:57:03 PDT 2017]; root of context hierarchy
2017-07-20 11:57:04.706 WARN 2946 --- [ main] o.s.c.a.ConfigurationClassPostProcessor : Cannot enhance @Configuration bean definition 'stormpathMessageSourceDefinitionPostProcessor' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2017-07-20 11:57:05.301 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' of type [class org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.512 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'validator' of type [class org.springframework.validation.beanvalidation.LocalValidatorFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.641 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [class org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$5dbb8604] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.716 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'objectPostProcessor' of type [class org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.726 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@146def59' of type [class org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.760 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'stormpathWildcardPermissionEvaluator' of type [class com.stormpath.spring.security.authz.permission.evaluator.WildcardPermissionEvaluator] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.761 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'stormpathMethodSecurityExpressionHandler' of type [class org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.804 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'com.stormpath.spring.boot.autoconfigure.StormpathMethodSecurityAutoConfiguration' of type [class com.stormpath.spring.boot.autoconfigure.StormpathMethodSecurityAutoConfiguration$$EnhancerBySpringCGLIB$$6d3f19c6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:05.832 INFO 2946 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [class org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-07-20 11:57:06.574 INFO 2946 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-07-20 11:57:06.617 INFO 2946 --- [ main] o.apache.catalina.core.StandardService : Starting service Tomcat
2017-07-20 11:57:06.620 INFO 2946 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.11
2017-07-20 11:57:06.920 INFO 2946 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2017-07-20 11:57:06.935 INFO 2946 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3510 ms
2017-07-20 11:57:08.446 DEBUG 2946 --- [ost-startStop-1] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:08.460 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 0 of 1073741823; total allocated: 0 of 2147483647]
2017-07-20 11:57:08.563 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:08.566 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Opening connection {s}->https://dev-513386.oktapreview.com:443
2017-07-20 11:57:09.031 DEBUG 2946 --- [ost-startStop-1] .i.c.DefaultHttpClientConnectionOperator : Connecting to dev-513386.oktapreview.com/50.17.226.139:443
2017-07-20 11:57:09.032 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Connecting socket to dev-513386.oktapreview.com/50.17.226.139:443 with timeout 30000
2017-07-20 11:57:09.157 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled protocols: [TLSv1, TLSv1.1, TLSv1.2]
2017-07-20 11:57:09.157 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled cipher suites:[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_128_GCM_SHA256, 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-07-20 11:57:09.158 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Starting handshake
2017-07-20 11:57:09.558 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Secure session established
2017-07-20 11:57:09.558 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated protocol: TLSv1.2
2017-07-20 11:57:09.558 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
2017-07-20 11:57:09.559 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : peer principal: CN=*.oktapreview.com, O="Okta, Inc.", L=San Francisco, ST=California, C=US
2017-07-20 11:57:09.560 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : peer alternative names: [*.oktapreview.com, oktapreview.com]
2017-07-20 11:57:09.562 DEBUG 2946 --- [ost-startStop-1] o.a.h.c.ssl.SSLConnectionSocketFactory : issuer principal: CN=DigiCert SHA2 High Assurance Server CA, OU=www.digicert.com, O=DigiCert Inc, C=US
2017-07-20 11:57:09.581 DEBUG 2946 --- [ost-startStop-1] .i.c.DefaultHttpClientConnectionOperator : Connection established 192.168.6.20:51028<->50.17.226.139:443
2017-07-20 11:57:09.588 DEBUG 2946 --- [ost-startStop-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-0: set socket timeout to 30000
2017-07-20 11:57:09.592 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Executing request GET /api/v1/internal/apps/0oabaqrl51TKl3VKH0h7/settings/clientcreds HTTP/1.1
2017-07-20 11:57:09.592 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:09.595 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> GET /api/v1/internal/apps/0oabaqrl51TKl3VKH0h7/settings/clientcreds HTTP/1.1
2017-07-20 11:57:09.596 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:09.596 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept-Encoding: gzip
2017-07-20 11:57:09.654 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept: application/json
2017-07-20 11:57:09.656 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:09.656 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:09.657 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Connection: Keep-Alive
2017-07-20 11:57:09.727 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "GET /api/v1/internal/apps/0oabaqrl51TKl3VKH0h7/settings/clientcreds HTTP/1.1[\r][\n]"
2017-07-20 11:57:09.728 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:09.728 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:09.728 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:09.728 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:09.728 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:09.780 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:09.780 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "[\r][\n]"
2017-07-20 11:57:09.905 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:09.905 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Date: Thu, 20 Jul 2017 18:57:09 GMT[\r][\n]"
2017-07-20 11:57:09.905 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Server: nginx[\r][\n]"
2017-07-20 11:57:09.906 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:09.906 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:09.906 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Okta-Request-Id: WXD9Be2-6AWgNAh5AdJSJgAABNo[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Limit: 1200[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Remaining: 1199[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Reset: 1500577089[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:09.923 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:09.926 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Expires: 0[\r][\n]"
2017-07-20 11:57:09.926 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:09.926 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:09.926 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: JSESSIONID=1B59F3EF696D0EAF70A64EE233E4950B; Path=/[\r][\n]"
2017-07-20 11:57:09.979 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Keep-Alive: timeout=5, max=100[\r][\n]"
2017-07-20 11:57:09.980 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:09.980 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:09.980 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:09.980 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "92[\r][\n]"
2017-07-20 11:57:09.980 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "{"client_id":"0oabaqrl51TKl3VKH0h7","client_secret":"q2Os5QZyBRhUk4_Is_GAdv5PpxTYvNp2KSUJqFQ6","token_endpoint_auth_method":"client_secret_basic"}[\r][\n]"
2017-07-20 11:57:10.026 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "0[\r][\n]"
2017-07-20 11:57:10.026 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:10.029 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << HTTP/1.1 200 OK
2017-07-20 11:57:10.030 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Date: Thu, 20 Jul 2017 18:57:09 GMT
2017-07-20 11:57:10.030 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Server: nginx
2017-07-20 11:57:10.030 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:10.031 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:10.032 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Okta-Request-Id: WXD9Be2-6AWgNAh5AdJSJgAABNo
2017-07-20 11:57:10.032 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << P3P: CP="HONK"
2017-07-20 11:57:10.034 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Limit: 1200
2017-07-20 11:57:10.035 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Remaining: 1199
2017-07-20 11:57:10.035 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Reset: 1500577089
2017-07-20 11:57:10.035 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Cache-Control: no-cache, no-store
2017-07-20 11:57:10.035 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Pragma: no-cache
2017-07-20 11:57:10.035 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Expires: 0
2017-07-20 11:57:10.114 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:10.114 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:10.114 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: JSESSIONID=1B59F3EF696D0EAF70A64EE233E4950B; Path=/
2017-07-20 11:57:10.115 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Keep-Alive: timeout=5, max=100
2017-07-20 11:57:10.115 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Connection: Keep-Alive
2017-07-20 11:57:10.191 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Transfer-Encoding: chunked
2017-07-20 11:57:10.251 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:10.260 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 0][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:10.262 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:10.407 DEBUG 2946 --- [ost-startStop-1] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:10.419 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:10.422 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:10.423 DEBUG 2946 --- [ost-startStop-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-0: set socket timeout to 30000
2017-07-20 11:57:10.423 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Executing request GET /api/v1/apps/0oabaqrl51TKl3VKH0h7 HTTP/1.1
2017-07-20 11:57:10.423 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:10.507 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> GET /api/v1/apps/0oabaqrl51TKl3VKH0h7 HTTP/1.1
2017-07-20 11:57:10.507 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:10.508 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept-Encoding: gzip
2017-07-20 11:57:10.508 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept: application/json
2017-07-20 11:57:10.508 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Connection: Keep-Alive
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "GET /api/v1/apps/0oabaqrl51TKl3VKH0h7 HTTP/1.1[\r][\n]"
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:10.598 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:10.645 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:10.645 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:10.645 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "[\r][\n]"
2017-07-20 11:57:10.762 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:10.762 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Date: Thu, 20 Jul 2017 18:57:10 GMT[\r][\n]"
2017-07-20 11:57:10.764 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Server: nginx[\r][\n]"
2017-07-20 11:57:10.764 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:10.764 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:10.764 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Vary: Accept-Encoding[\r][\n]"
2017-07-20 11:57:10.768 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Okta-Request-Id: WXD9Bu2-6AWgNAh5AdJSOQAABLE[\r][\n]"
2017-07-20 11:57:10.768 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:10.768 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Limit: 500[\r][\n]"
2017-07-20 11:57:10.768 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Remaining: 499[\r][\n]"
2017-07-20 11:57:10.769 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Reset: 1500577090[\r][\n]"
2017-07-20 11:57:10.769 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:10.769 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:10.769 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Expires: 0[\r][\n]"
2017-07-20 11:57:10.769 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:10.770 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Content-Encoding: gzip[\r][\n]"
2017-07-20 11:57:10.770 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:10.809 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: JSESSIONID=2AE222448E05EB108DFD36251F647896; Path=/[\r][\n]"
2017-07-20 11:57:10.810 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Keep-Alive: timeout=5, max=99[\r][\n]"
2017-07-20 11:57:10.810 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:10.810 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:10.810 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:10.810 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "340[\r][\n]"
2017-07-20 11:57:10.843 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x3][0xad]T[0xc1]n[0xdb]8[0x10][0xfd][0x95][0x5][0xb1][0xc7][0xd8][0x92][0xec]8r|kb[0x17][0xf5]:[0xb1][0x83][0xb5]R`[0xbb]([0x4][0x8a][0x1c]I[0xac])RKRJ[0x1d][0xc3][0xff][0xbe]C[0xc9][0xf5][0x1a][0xdb][0xb4][0xa7][0x9e]D[0x8d]f[0xde][0xbc]y[0xf3][0xa8][0x3][0x11][0x9c][0xcc]H[0xa8]iF[0xff]1r[0x12]%+9[0xfe][0xb8][0xfa][0x10][0x96]1[0xb9]"[0x8a]V[0x80]_[0xb5][0xe0],eR[0x80]r[0x18][0x94]4[0x3][0x89][0xd1]w[0x95]0[0xbf]%`}[0xcc]:[0xea][0x1a][0xeb][0x83][0xf7][0xc9][0xf2][0xe3][0xa2][0xcb][0xb2][0xee][0xb9][0xe6][0xd4][0x81][0xc7][0x1f][0x85]Q<[0x8][0xe3][0xc1](L[0xa2][0xe9]l[0x12][0xcd]F[0xe3]a[0x18][0x86][0x9f]0[0x91][0x19][0xf8]QRx[0xfb]-[0x89]2[0x6][0xd6][0x8a]LH[0xe1][0xf6]dv [0x16]d[0xbe][0x5][0xd3][\n]"
2017-07-20 11:57:10.844 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[0x86][0x4]s*-\[0x11]0F[0x9b]?[0x81][0xb][0x3][0xcc]=[0x1b][0xe4][0xa8][0x1a])[0x91][0x8a].[0x84][0xfa].~[0xbc]"[0xad][0xb8][0x84][0xa4][0x8d][0xd3][0xdb]&[0xab][0x84]K[0xb4][0x96][0x19]5g[0xe0]Rp[0xec]r b[0xb3]%3g[0x1a][0xec][0xf5][0x2]Y�D[0x18]Z[0xd7][0xf]B[0xed]p[0xfc][0xc3][0xa5]T[0xa9][0xc4][0xe0])[0x9][0xb3]r[0x1c][0xb3]1[0x80]Y��F[0xc1]D[0xa1]6[0xea]Q{`[0xb2]yZ[0xac][0x97][0xf3][0xf4]~[0xb3]^/[0xee][0x93]^[0x13][0x8e]b[0xb][0x9c][0xcb][0x83]6[0x16][0xcc][0x1a]W[0x91]@UK[0x14][0xcb][0xc7][0xdc][0xf9]L~?X[0xdd][0x18][0x6][0xc3]n[0xd0]#[0xd6][0xbb]}[0xed]q[0xef][0x9e][0x97][0xf]I[0xba]\[0x13]l[0xef][0x1b][\n]"
2017-07-20 11:57:10.844 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "U[0xf8][0xd2]][0xb7]r[0xfb][0xe9][0xe9][0xeb][0x97][0x96][0xaf]&[0xe3]U:w�L[0x92][0xed]b>[0x88][0xff]z[0x1a][0xbc][0xbe][0x1f]G[0xf0]Erw}[0xb7]u[0x1b][0xb5][0xe2][0x85][0xaf][0xd7](Oy[0xdf]{[0x0]1z7[0xa4]?3[0x8f][0xd3];P)(^k[0xa1]\[0xea][0xeb][0xd3][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "\[0xa9]}[0xf7]S[0xbd][0x5]\[0xbf]K3j[0x5]#GO[0x13][0x9c]C[0x9a][0xdd][0xd8][0xa8]+>0[0xa8][0xb4][0x13][0xb9]`[0xd4][0x9][0xad][0xba]/m[0xad][0xfc]C[0x81]{[0xd1][0x6]5F>Z)[0xdc]:& [0xf8]|[0xb9]}w[0xf7][0xb0][0x98]{[0xde][0x15][0xfa][0x86][0x16][0xa8]F[0xef][0x85][0x12]d}[0xb6][0x86]o[0xf8][0xf6]\[0x8d][0x11][0x17][0xee][0xd1][0xe9][0xc5][0xbb]9[0x19][0xcc][0xc7][0xfc]2I[0xe9]\=[0xb][0x2][0xa9][0x19][0x95][0xa5][0xb6]n6[\r][0xa7]a[0xd0][0xf][0x18]`[0xc][0xad][0xc4]v[0x4]w[0x8e][0xcb][0xaf]q[0x0]H[0xfd]z[0xba][0xd2]N"[0xdc][0x97][0xe0][0xe9][0xb7]#[0xf3][0x96][0xc0][0xe4][0xc2]P[0x14][0xed][0x9c][0xe9][0xd5][0xd3]F[0xbc]v[0x1a][0xa4]][0x92][0x7][0xcc][0x11][0xb3]<[0xd7][0xd6][0xd4]Z[0x14][0x84]{Dt[0x8a]`[0xc2]y([0xd4][0x11][0xcf]}[0xe5][0xc9][0x19][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[0xdf]Z[0xe8][0x14][0xef]l[0xda][0xa9][0x8a][0xf6][0xd1][0xc8][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "u[0xed][0xaf]}[0x85][0x93]6[0x15][0x82][0x95][0xd8][0x8]e[0xf5][0x83]Z[0x9c]T[0xd7][0x91][0xbf][0xef][0x82][\r][0xf5][0xce]Q[0xc6][0xd5][0x90][0xe9]*[0xc0][0xde][0xe0]l [0xaa][0x2][0xa5]([0xb4][\r]8[0xe4][0xb4][0x91]nx[0x13][0xc7][0xe1]h4[0xcd][0xb3][0x90][0xd3][0xec][0xfa][0x96]F7[0xb7][0x13][0xc8][0xaf][0xaf]C:[0x19][0xc5][0xb7]Y6[0xac][0xd1][0x96]g[0xcf][0x8a][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[0xb7][0x15][0xf8][0xd0][0xb1][0xa7]~[0xba]Z[0xff][0xd1][0xba][0xf8][0x1b][0xf5]W[0xec];[0x82][0x1c][0xda][0xc1]$[0x1a][0x8f][0xa7]7[0x1d][0xc3][0xda]@+[0xe0][0xa5]cY[0xea][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[0x82][0xb][0x84][0xe0][0xad]?_@[0xa5][0x9a][0xbc][0xc6]M[0xb9][0xcb][0x1e]o[0xf6]q[0xf6][0xb8][0xf][0xb][0xff];<[0x89][0xe7][0xe0][0xab][0xb]JW[0xc9][0x8e][0xa2][0xbf][0x9c][0x9d]|[0xff]S[0xe9]'$h-[0x82]6[\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "p/[0xf6][0xed][0xfe]=&.[0x87][0x3]ES[0xb7][0xa7];[0xff][0xb];H[0x91][0x3][0xdb]3[0x9][0xb8][0xa6]s[0xb]lX[0x18][0xdd][0xd4][0xbf]z[0x9c][0x13][0xe8][0xf1]x[0xfc][0x17][0xb7][0xde][0xac][0xe8]o[0x6][0x0][0x0][\r][\n]"
2017-07-20 11:57:10.845 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "0[\r][\n]"
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << HTTP/1.1 200 OK
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Date: Thu, 20 Jul 2017 18:57:10 GMT
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Server: nginx
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Vary: Accept-Encoding
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Okta-Request-Id: WXD9Bu2-6AWgNAh5AdJSOQAABLE
2017-07-20 11:57:10.846 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << P3P: CP="HONK"
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Limit: 500
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Remaining: 499
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Reset: 1500577090
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Cache-Control: no-cache, no-store
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Pragma: no-cache
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Expires: 0
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Content-Encoding: gzip
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:10.847 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: JSESSIONID=2AE222448E05EB108DFD36251F647896; Path=/
2017-07-20 11:57:10.848 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Keep-Alive: timeout=5, max=99
2017-07-20 11:57:10.848 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Connection: Keep-Alive
2017-07-20 11:57:10.848 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Transfer-Encoding: chunked
2017-07-20 11:57:10.848 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:10.850 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 0][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:10.850 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:11.931 DEBUG 2946 --- [ost-startStop-1] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:11.931 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:11.932 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:11.932 DEBUG 2946 --- [ost-startStop-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-0: set socket timeout to 30000
2017-07-20 11:57:11.932 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Executing request GET /.well-known/openid-configuration HTTP/1.1
2017-07-20 11:57:11.933 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:11.933 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> GET /.well-known/openid-configuration HTTP/1.1
2017-07-20 11:57:11.933 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:12.045 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept-Encoding: gzip
2017-07-20 11:57:12.045 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Accept: application/json
2017-07-20 11:57:12.045 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:12.046 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:12.046 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 >> Connection: Keep-Alive
2017-07-20 11:57:12.047 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "GET /.well-known/openid-configuration HTTP/1.1[\r][\n]"
2017-07-20 11:57:12.158 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:12.160 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:12.160 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:12.161 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:12.161 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:12.164 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:12.165 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 >> "[\r][\n]"
2017-07-20 11:57:12.264 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:12.265 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Date: Thu, 20 Jul 2017 18:57:12 GMT[\r][\n]"
2017-07-20 11:57:12.365 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Server: nginx[\r][\n]"
2017-07-20 11:57:12.366 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:12.367 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:12.367 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Okta-Request-Id: WXD9CO2-6AWgNAh5AdJSVQAABMs[\r][\n]"
2017-07-20 11:57:12.368 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:12.368 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Limit: 10000[\r][\n]"
2017-07-20 11:57:12.368 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Remaining: 9999[\r][\n]"
2017-07-20 11:57:12.368 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Rate-Limit-Reset: 1500577092[\r][\n]"
2017-07-20 11:57:12.432 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:12.432 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:12.433 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Expires: 0[\r][\n]"
2017-07-20 11:57:12.433 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:12.433 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "X-Robots-Tag: none[\r][\n]"
2017-07-20 11:57:12.433 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:12.433 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Set-Cookie: JSESSIONID=60D03C9B3D601CE9EBE42E424971B77C; Path=/[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Keep-Alive: timeout=5, max=98[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "729[\r][\n]"
2017-07-20 11:57:12.434 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << HTTP/1.1 200 OK
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Date: Thu, 20 Jul 2017 18:57:12 GMT
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Server: nginx
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Okta-Request-Id: WXD9CO2-6AWgNAh5AdJSVQAABMs
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << P3P: CP="HONK"
2017-07-20 11:57:12.435 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Limit: 10000
2017-07-20 11:57:12.436 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Remaining: 9999
2017-07-20 11:57:12.436 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Rate-Limit-Reset: 1500577092
2017-07-20 11:57:12.436 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Cache-Control: no-cache, no-store
2017-07-20 11:57:12.436 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Pragma: no-cache
2017-07-20 11:57:12.515 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Expires: 0
2017-07-20 11:57:12.515 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:12.516 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << X-Robots-Tag: none
2017-07-20 11:57:12.516 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:12.516 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Set-Cookie: JSESSIONID=60D03C9B3D601CE9EBE42E424971B77C; Path=/
2017-07-20 11:57:12.654 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Keep-Alive: timeout=5, max=98
2017-07-20 11:57:12.654 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Connection: Keep-Alive
2017-07-20 11:57:12.654 DEBUG 2946 --- [ost-startStop-1] org.apache.http.headers : http-outgoing-0 << Transfer-Encoding: chunked
2017-07-20 11:57:12.655 DEBUG 2946 --- [ost-startStop-1] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:12.656 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "{"issuer":"https://dev-513386.oktapreview.com","authorization_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/authorize","token_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/token","userinfo_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/userinfo","registration_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/clients","jwks_uri":"https://dev-513386.oktapreview.com/oauth2/v1/keys","response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"grant_types_supported":["authorization_code","implicit","refresh_token","password"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","none"],"claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"code_challenge_methods_supported":["S256"],"introspection_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/introspect","introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","none"],"revocation_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/revoke","revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","none"],"end_session_endpoint":"https://dev-513386.oktapreview.com/oauth2/v1/logout"}"
2017-07-20 11:57:12.745 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:12.746 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "0[\r][\n]"
2017-07-20 11:57:12.746 DEBUG 2946 --- [ost-startStop-1] org.apache.http.wire : http-outgoing-0 << "[\r][\n]"
2017-07-20 11:57:12.746 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 0][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:12.746 DEBUG 2946 --- [ost-startStop-1] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 0][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:15.456 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-07-20 11:57:15.457 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-07-20 11:57:15.457 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-07-20 11:57:15.458 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-07-20 11:57:15.459 INFO 2946 --- [ost-startStop-1] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
2017-07-20 11:57:15.460 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'stormpathFilter' to urls: [/*]
2017-07-20 11:57:15.460 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'stormpathSecurityContextPersistenceFilter' to: [/*]
2017-07-20 11:57:15.460 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'socialCallbackSpringSecurityProcessingFilter' to: [/*]
2017-07-20 11:57:15.460 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'contentNegotiationSpringSecurityAuthenticationFilter' to: [/*]
2017-07-20 11:57:15.461 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'springSecurityResolvedAccountFilter' to: [/*]
2017-07-20 11:57:15.461 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'stormpathWrapperFilter' to: [/*]
2017-07-20 11:57:15.461 INFO 2946 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-07-20 11:57:15.703 INFO 2946 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5dc6b704: startup date [Thu Jul 20 11:57:03 PDT 2017]; root of context hierarchy
2017-07-20 11:57:15.863 INFO 2946 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/]}" onto java.lang.String com.stormpath.spring.boot.examples.HelloController.home(javax.servlet.http.HttpServletRequest)
2017-07-20 11:57:15.867 INFO 2946 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/restricted]}" onto java.lang.String com.stormpath.spring.boot.examples.HelloController.restricted(javax.servlet.http.HttpServletRequest,org.springframework.ui.Model)
2017-07-20 11:57:15.868 INFO 2946 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto java.lang.String com.stormpath.spring.boot.examples.RestrictedErrorController.error(javax.servlet.http.HttpServletRequest,org.springframework.ui.Model)
2017-07-20 11:57:15.983 INFO 2946 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-07-20 11:57:15.984 INFO 2946 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-07-20 11:57:16.068 INFO 2946 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-07-20 11:57:16.075 INFO 2946 --- [ main] oConfiguration$WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2017-07-20 11:57:16.363 INFO 2946 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: OrRequestMatcher [requestMatchers=[Ant [pattern='/css/**'], Ant [pattern='/js/**'], Ant [pattern='/images/**'], Ant [pattern='/webjars/**'], Ant [pattern='/**/favicon.ico'], Ant [pattern='/error']]], []
2017-07-20 11:57:16.702 INFO 2946 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3371486, com.stormpath.spring.filter.StormpathWrapperFilter@1a8751a1, org.springframework.security.web.context.SecurityContextPersistenceFilter@6e3978d4, org.springframework.security.web.header.HeaderWriterFilter@3413264, org.springframework.web.filter.CorsFilter@28ed2566, org.springframework.security.web.csrf.CsrfFilter@33e1d888, com.stormpath.sdk.servlet.filter.account.AccountResolverFilter@6824f91c, org.springframework.security.web.authentication.logout.LogoutFilter@1f8493d8, com.stormpath.spring.filter.StormpathSecurityContextPersistenceFilter@3c89babd, com.stormpath.spring.security.provider.SocialCallbackSpringSecurityProcessingFilter@5f35a393, com.stormpath.spring.filter.ContentNegotiationSpringSecurityAuthenticationFilter@4b1254c9, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@12859ab8, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4f913d5f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@604a1d60, org.springframework.security.web.session.SessionManagementFilter@247d6d7f, org.springframework.security.web.access.ExceptionTranslationFilter@64066196, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1d0a089b]
2017-07-20 11:57:16.730 INFO 2946 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@25f32609, com.stormpath.spring.filter.StormpathWrapperFilter@1a8751a1, org.springframework.security.web.context.SecurityContextPersistenceFilter@68158d1b, org.springframework.security.web.header.HeaderWriterFilter@940c7f5, org.springframework.web.filter.CorsFilter@1ec3716d, org.springframework.security.web.csrf.CsrfFilter@3c8b802c, com.stormpath.sdk.servlet.filter.account.AccountResolverFilter@6824f91c, org.springframework.security.web.authentication.logout.LogoutFilter@6588db3b, com.stormpath.spring.filter.StormpathSecurityContextPersistenceFilter@3c89babd, com.stormpath.spring.security.provider.SocialCallbackSpringSecurityProcessingFilter@5f35a393, com.stormpath.spring.filter.ContentNegotiationSpringSecurityAuthenticationFilter@4b1254c9, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1d46a5b1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1236a683, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@ba9984c, org.springframework.security.web.session.SessionManagementFilter@87fe6d8, org.springframework.security.web.access.ExceptionTranslationFilter@2b7bcbbb, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6a54502e]
2017-07-20 11:57:16.843 INFO 2946 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: OrRequestMatcher [requestMatchers=[Ant [pattern='/**']]], [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@414e2edb, com.stormpath.spring.filter.StormpathWrapperFilter@1a8751a1, org.springframework.security.web.context.SecurityContextPersistenceFilter@f578705, org.springframework.security.web.header.HeaderWriterFilter@916f562, org.springframework.web.filter.CorsFilter@6269af04, org.springframework.security.web.csrf.CsrfFilter@4ee06491, com.stormpath.sdk.servlet.filter.account.AccountResolverFilter@6824f91c, org.springframework.security.web.authentication.logout.LogoutFilter@4f91f314, com.stormpath.spring.filter.StormpathSecurityContextPersistenceFilter@3c89babd, com.stormpath.spring.security.provider.SocialCallbackSpringSecurityProcessingFilter@5f35a393, com.stormpath.spring.filter.ContentNegotiationSpringSecurityAuthenticationFilter@4b1254c9, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@7c2a8264, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5288a2b4, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6c0bf062, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2d77f6f5, org.springframework.security.web.session.SessionManagementFilter@5c2b7c1c, org.springframework.security.web.access.ExceptionTranslationFilter@57f15e6d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4970d428]
2017-07-20 11:57:16.968 INFO 2946 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/assets/css/*stormpath.css] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-07-20 11:57:16.969 INFO 2946 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/assets/js/*stormpath.js] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-07-20 11:57:17.479 INFO 2946 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-07-20 11:57:17.633 INFO 2946 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-07-20 11:57:17.644 INFO 2946 --- [ main] c.s.spring.boot.examples.Application : Started Application in 15.13 seconds (JVM running for 21.336)
2017-07-20 11:57:18.276 INFO 2946 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-07-20 11:57:18.276 INFO 2946 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-07-20 11:57:18.322 INFO 2946 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 45 ms
2017-07-20 11:57:21.216 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:21.217 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:21.217 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.impl.conn.CPool : Connection [id:0][route:{s}->https://dev-513386.oktapreview.com:443][state:null] expired @ Thu Jul 20 11:57:17 PDT 2017
2017-07-20 11:57:21.218 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-0: Close connection
2017-07-20 11:57:21.257 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 1][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:21.258 DEBUG 2946 --- [nio-8080-exec-2] o.a.http.impl.execchain.MainClientExec : Opening connection {s}->https://dev-513386.oktapreview.com:443
2017-07-20 11:57:21.259 DEBUG 2946 --- [nio-8080-exec-2] .i.c.DefaultHttpClientConnectionOperator : Connecting to dev-513386.oktapreview.com/50.17.226.139:443
2017-07-20 11:57:21.261 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : Connecting socket to dev-513386.oktapreview.com/50.17.226.139:443 with timeout 30000
2017-07-20 11:57:21.338 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled protocols: [TLSv1, TLSv1.1, TLSv1.2]
2017-07-20 11:57:21.338 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled cipher suites:[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_128_GCM_SHA256, 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-07-20 11:57:21.338 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : Starting handshake
2017-07-20 11:57:21.425 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : Secure session established
2017-07-20 11:57:21.425 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated protocol: TLSv1.2
2017-07-20 11:57:21.425 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
2017-07-20 11:57:21.426 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : peer principal: CN=*.oktapreview.com, O="Okta, Inc.", L=San Francisco, ST=California, C=US
2017-07-20 11:57:21.426 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : peer alternative names: [*.oktapreview.com, oktapreview.com]
2017-07-20 11:57:21.426 DEBUG 2946 --- [nio-8080-exec-2] o.a.h.c.ssl.SSLConnectionSocketFactory : issuer principal: CN=DigiCert SHA2 High Assurance Server CA, OU=www.digicert.com, O=DigiCert Inc, C=US
2017-07-20 11:57:21.427 DEBUG 2946 --- [nio-8080-exec-2] .i.c.DefaultHttpClientConnectionOperator : Connection established 192.168.6.20:51061<->50.17.226.139:443
2017-07-20 11:57:21.427 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-1: set socket timeout to 30000
2017-07-20 11:57:21.427 DEBUG 2946 --- [nio-8080-exec-2] o.a.http.impl.execchain.MainClientExec : Executing request GET /api/v1/idps HTTP/1.1
2017-07-20 11:57:21.427 DEBUG 2946 --- [nio-8080-exec-2] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:21.428 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> GET /api/v1/idps HTTP/1.1
2017-07-20 11:57:21.470 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> Accept-Encoding: gzip
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> Accept: application/json
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 >> Connection: Keep-Alive
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "GET /api/v1/idps HTTP/1.1[\r][\n]"
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:21.471 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:21.518 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:21.518 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:21.518 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 >> "[\r][\n]"
2017-07-20 11:57:21.674 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:21.674 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Date: Thu, 20 Jul 2017 18:57:21 GMT[\r][\n]"
2017-07-20 11:57:21.674 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Server: nginx[\r][\n]"
2017-07-20 11:57:21.674 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:21.676 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:21.676 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Vary: Accept-Encoding[\r][\n]"
2017-07-20 11:57:21.676 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "X-Okta-Request-Id: WXD9EbU464EA-epJUnPJVQAAAaM[\r][\n]"
2017-07-20 11:57:21.676 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:21.676 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "X-Rate-Limit-Limit: 1200[\r][\n]"
2017-07-20 11:57:21.686 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "X-Rate-Limit-Remaining: 1198[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "X-Rate-Limit-Reset: 1500577089[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Expires: 0[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Link: <https://dev-513386.oktapreview.com/api/v1/idps?limit=20>; rel="self"[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Link: <https://dev-513386.oktapreview.com/api/v1/idps?after=0oab9r61n8Z9VFflB0h7&limit=20>; rel="next"[\r][\n]"
2017-07-20 11:57:21.687 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:21.689 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Content-Encoding: gzip[\r][\n]"
2017-07-20 11:57:21.689 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:21.689 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Set-Cookie: JSESSIONID=70B9EE69BCB317FBF0071BB055E2EF22; Path=/[\r][\n]"
2017-07-20 11:57:21.689 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Keep-Alive: timeout=5, max=100[\r][\n]"
2017-07-20 11:57:21.727 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:21.727 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:21.727 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "[\r][\n]"
2017-07-20 11:57:21.727 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "2cd[\r][\n]"
2017-07-20 11:57:21.727 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x3][0xa5]T[0xc1]n[0xe2]0[0x10][0xfd][0x95][0x95][0xf][0x9c][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "$[0xd0]@[0x13][0x9][0xad]X[0xa0],[0x12][0x94][0xb6][0xa4]=[0xb4][0xaa][0x90]q\[0xf0][0xc6][0xb1]-[0xc7][0x81][0xb6]([0xff][0xde][0xb1][0x3]-U{[0xdb][0xb][0xce]xf[0xde][0xbc][0x99]y[0xe6]q[0x8f]X[0x82]"[0xe4]I[0xbc][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "u[0xc7][0x17][0x17][0xf][0xe1][0xfd][0xe5]3[0xff][0xe3]m[0xba][0xe8][0xc][0x99]WE[0xc1];[0x9e][0xcf][0xc7][0xd3][0x11][0xd8][0x2]g[0xd6]N[0x98][0x8e][0xc6]R[0xae]9[0xfd]5d[0x9a][0x12]#[0xf5]+xs[0x83]M[0x91][0x83][0xbf]?[0x88]'[0xf7]6[0x9e]h[0x8a][\r][0xb5][0x5]Z[0x9e][0xdf][0xad]{[0xdd][0xba][0x1f][0xc6][0x9e][0x17][0x9d]w"[0xdf]kx[0x9e][0xf7][0x0]A[0x1c][0xe7][0xe6]N%?[0x4][0xb6][0xa2][0xf3][0xf3][0xc8][0xef][0x1c][0x3][0x95][0x96]F[0x12][0xc9]Q[0xb4]?2[0x9b]O[0x86][0x3][0x80][0xa0]"Q[0x92][0x9][0x3][0xc5][0xf7][0x8][0x17]f#5{[0xc3][0x86]Ia/[\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "[\r])hc[0x8c][0xca][0xa3]f[0x13][0x13]"[0xb][0x8]m[0xac]][0x7][\r]"[0xb3][0xa6]lJ[0x9b][0xd5]j[0xda]_[0xc0][1[0x91]0[0xb1][0x86][0xac][0xbf]q|][0xbf][0x1d][\r]'[0xb7][0xa3]A[0x8c]J[0x18][0x89]L[0xe9][0xf][0xa8][0xbb][0xdd][0xee][0x0][0x88][0x15][0xcb]+[0xd0][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "r[0xdb]nV9[0xdf]`[0xaf][0xe7][0xb][0x80][0x4][0xcc][0x9c]HE[0x81][0xfb]#[0x82]S[0xc0]B[0xa0][0xa3][0xc]3[0xe]'[0xf4][0xfc][0xcc]8EOn[0x98][0x9][0x15][0x86]a[0xee][0xda]$[0x9c][0x81][0xf5][0xf9][0xb5]t[0x8b][0xc][0x83][0xb0][0xed]w[0xc2]v[0x10][0x4]a[0x3]+ul[0xb3][0xc8][0xa9]&R[0x18]H[0xb1][0xe4][0xec]n\[0xfe]2[0xa7][0x80][0xb]0([0xb9][0x9a][0x4][0xd9]M[0xeb]ap9[0x1a][0xe][0xb3][0x17][0xd6][0x9d][0x5][0xb3][0xb0][0xbd][9[0x86][[0xcc][0x19]l[0xc8][\r]T[0x14][0x9c][0xc3][0x95][0x92][0x9c][0x91]W[[0x1f]8nY[0xe]>72X[0x0][0xa9][0x2]Q[0xff].[0x9e]�[0xf6]0[0x83]=S[0x8d]"[0xa3][0xb]z[0x86][0xd6]Z[0x16][0xaa][0xda][0xd7]G[0xf8]b1[0x19]_A[0x2][0xce]s[0xb6][0x16][0x19][0xd0]sC[0xf1][0xbc][0xb5][0x15]g[0xe7]-[0x95][0x9d][0xc1][0xcd][0xb4][0xcf][0xac]8[0x9f],[0xad][0xc3].[0xa7]L[0xa4][0xb6]0L[0xca]U[0xb0][0xc][0xad][0xf3][0x94][0x86][0x1d]s[0xb1][0xfa][0x7]bu[0x92][0x80]q\[0x81][0x98]c[0x9a])[0xe][0xca][0xb3]w[0xe6][0xe3][0x1b][0xde][0x84][0xb2][0x11][0x8d]j[0xb][0x90][0xfa][0x15]9[0xc3][0x86]l[0xe2][0xea]m[0x8c]f[0xfd][0xc9][0x14]8[0xbb][0xbb][0xbe]1[0x9a][0xad][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "[0x8b]w[0x98]R[0x86]_[0x6]\[0x92]t[0x91][0xd2][0x1d][0x8a]<[0x80]Zr`[0xfb]E[0xa8][0xae][0xfa]F[0xd3][0xe7][0x13][0x95]&t[[0xf][0xfc]v[0xfb][0xa2][0xd3][0x90][0xa9][0xc1]J[0xd3]-[0xa3][0xbb]/[0xba][0xf2][0x9d]Z[0xad][0xd2][0xe9]o [0xdc][0xfb][0xe9][\r][0xd7][0xe][fIo_}N[0x92][0xb2][0xa6]i[0xae][0xa4][0xc8][0xe9][0xd2][0xbe][0xef][0xde][0xfe]h[0xda][0x8e]N[0x9c][0x99]LN[0x9c]3[0xb0][0xca][0x9a]Sjo_[0x9][0xd6][0xc6][0xc2]_[0x1][0x8c]tYhfq*[0xeb]N3[0x88][0x84]?[0x3][0x1b]i[0x8f][0xb2]&[0xa4] `[0xb9][0xa3][0x84]i[0x1d]g[\r][0x92][0xad][0xe4][0xb0][0xf9]x[0xbd][0x9c]K[0x98][0xd4]#[0x1a][0x8f][0xe2]j[0xc9][0x15][0xef][0xdb]O[0xf0][0xff][0x1e]W[0x93]`[0xce]W[0x98][0xa4][0xc0][0xe4]{a[0xf7],A^e[0xf9][0xf4][0xe]+[0x4][0x83][0x97][0x1f][0x5][0x0][0x0][\r][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "0[\r][\n]"
2017-07-20 11:57:21.728 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.wire : http-outgoing-1 << "[\r][\n]"
2017-07-20 11:57:21.729 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << HTTP/1.1 200 OK
2017-07-20 11:57:21.731 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Date: Thu, 20 Jul 2017 18:57:21 GMT
2017-07-20 11:57:21.732 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Server: nginx
2017-07-20 11:57:21.732 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:21.732 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Vary: Accept-Encoding
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << X-Okta-Request-Id: WXD9EbU464EA-epJUnPJVQAAAaM
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << P3P: CP="HONK"
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << X-Rate-Limit-Limit: 1200
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << X-Rate-Limit-Remaining: 1198
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << X-Rate-Limit-Reset: 1500577089
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Cache-Control: no-cache, no-store
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Pragma: no-cache
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Expires: 0
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Link: <https://dev-513386.oktapreview.com/api/v1/idps?limit=20>; rel="self"
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Link: <https://dev-513386.oktapreview.com/api/v1/idps?after=0oab9r61n8Z9VFflB0h7&limit=20>; rel="next"
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Content-Encoding: gzip
2017-07-20 11:57:21.733 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:21.734 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Set-Cookie: JSESSIONID=70B9EE69BCB317FBF0071BB055E2EF22; Path=/
2017-07-20 11:57:21.734 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Keep-Alive: timeout=5, max=100
2017-07-20 11:57:21.734 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Connection: Keep-Alive
2017-07-20 11:57:21.734 DEBUG 2946 --- [nio-8080-exec-2] org.apache.http.headers : http-outgoing-1 << Transfer-Encoding: chunked
2017-07-20 11:57:21.734 DEBUG 2946 --- [nio-8080-exec-2] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:21.735 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 1][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:21.735 DEBUG 2946 --- [nio-8080-exec-2] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 1][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:32.441 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:32.442 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:32.442 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.impl.conn.CPool : Connection [id:1][route:{s}->https://dev-513386.oktapreview.com:443][state:null] expired @ Thu Jul 20 11:57:26 PDT 2017
2017-07-20 11:57:32.442 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-1: Close connection
2017-07-20 11:57:32.443 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:32.443 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Opening connection {s}->https://dev-513386.oktapreview.com:443
2017-07-20 11:57:32.444 DEBUG 2946 --- [nio-8080-exec-7] .i.c.DefaultHttpClientConnectionOperator : Connecting to dev-513386.oktapreview.com/50.17.226.139:443
2017-07-20 11:57:32.444 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : Connecting socket to dev-513386.oktapreview.com/50.17.226.139:443 with timeout 30000
2017-07-20 11:57:32.520 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled protocols: [TLSv1, TLSv1.1, TLSv1.2]
2017-07-20 11:57:32.520 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled cipher suites:[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_128_GCM_SHA256, 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-07-20 11:57:32.520 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : Starting handshake
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : Secure session established
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated protocol: TLSv1.2
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : peer principal: CN=*.oktapreview.com, O="Okta, Inc.", L=San Francisco, ST=California, C=US
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : peer alternative names: [*.oktapreview.com, oktapreview.com]
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.c.ssl.SSLConnectionSocketFactory : issuer principal: CN=DigiCert SHA2 High Assurance Server CA, OU=www.digicert.com, O=DigiCert Inc, C=US
2017-07-20 11:57:32.599 DEBUG 2946 --- [nio-8080-exec-7] .i.c.DefaultHttpClientConnectionOperator : Connection established 192.168.6.20:51091<->50.17.226.139:443
2017-07-20 11:57:32.600 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-2: set socket timeout to 30000
2017-07-20 11:57:32.600 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Executing request POST /api/v1/users/?activate=true HTTP/1.1
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> POST /api/v1/users/?activate=true HTTP/1.1
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Accept-Encoding: gzip
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Accept: application/json
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Content-Type: application/json
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:32.604 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Content-Length: 367
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Connection: Keep-Alive
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "POST /api/v1/users/?activate=true HTTP/1.1[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Content-Type: application/json[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Content-Length: 367[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:32.605 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "[\r][\n]"
2017-07-20 11:57:32.606 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "{"credentials":{"password":{"value":"JEnydoby6!"},"recovery_question":{"question":"stormpathMigrationRecoveryAnswer","answer":"08bdabc8-0929-4a27-940d-b025fae57eb6"}},"profile":{"login":"[email protected]","email":"[email protected]","firstName":"Michele","lastName":"Test","stormpathMigrationRecoveryAnswer":"08bdabc8-0929-4a27-940d-b025fae57eb6"}}"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Date: Thu, 20 Jul 2017 18:57:33 GMT[\r][\n]"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Server: nginx[\r][\n]"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:33.420 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Vary: Accept-Encoding[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Okta-Request-Id: WXD9HLU464EA-epJUnPJ8gAAAeo[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Limit: 600[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Remaining: 599[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Reset: 1500577112[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Expires: 0[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Content-Encoding: gzip[\r][\n]"
2017-07-20 11:57:33.421 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: JSESSIONID=7BA699D059C2F4E213BAE9A40E9BCAEB; Path=/[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Keep-Alive: timeout=5, max=100[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "20e[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x3][0xb5]TMs[0x9b]0[0x10][0xfd]/[0xba]6[0x18][0x19][0xc7][0xc1][0xe6][0x14]O&[0x87]~[0xa4]q[[0xb7][0x87]\<[0x2][0x16]P[0x3][0x12][0x91][0x4][0xae][0xc7][0xe3][0xff][0x9e][0x5][0xd9][0x94][0x99]8[0xe4]b[0xdf][0xa4][0xd5][0xae][0xde][0xdb][0xb7]O[0xda][0x11][0x1e][0x93][0x80]PZ[0x85]![0xe5][0xe3][0x17]i[0xbe]@[0xfa]7[0xdc][0xd0][0xcc]'WD[0x1b]f*[0x8d][0xe7][0x8b][0xbb][0xd5][0xe7]?[0xf7][0x18][0x89][0x14]0[0x3]M[0x89]G[0xc7][0xbe]C}[0xc7][0xa3][0xab][0xf1],[0x98][0xfa][0xc1][0xc4][0x1b]QJ[0x9f]0[0x89]E[0x86][0xd7][0xef][0xa6]M[0x8e]i[0xf6][0xf6][0xbb][0x8c][0x89][0xf4][0x9d][0x1b][0xbb][0xd4][0x9c]i[0xf3]M[0xa6]\[0x90]@Ty~E[0x9a][0xc0][0xef]2[0xfe][0x18][0xa4]dZo[0xa4][0x8a][0x87]`:[0xe2][0xa5][0x92][0x9][0xcf][0x81][0x4];[0x92]p[0xa5][0xcd]wV[0xe0][0x86]<[0xf0]([0x3][0xc][[0xd8]Cp[0x5][0xda]`[0xa4][0x90]!V,3)0[0xd3]r[0xd3]F[0xaa][0xa2]d&{[0xe0][0xa9]b[0x86]K[0xf1][0x13]"Y[0x83][0xda].[0x84][0xde][0x80]j[0xf4][0x9e][0x85]1[0xb][0xa3][0x99]C[0xe7][0xde][0xdc][0xb9]f[0x9e][0xef][0xcc][0xaf]i[0xec][0x84][0xd4][0x9b]&[0xc][0xa6]>[0x84]7[0x8d][0xfe]X'[0xe2][0xfb][0x82][0xf1][0xbc]k[0xdc][0xaa]@[\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[0xcb][0xe9][0x93]A[0x1a][0xb7][0x1d][0xe2]([0x92][0x5][0xd6][0x81][0xad][0x18]J[0xda][0xb7][0xb3][0x8c]A[0x18][0xce]r[0x1c][0xf1][0x8e][0x1c][0x95][0xc2]5[0x1e][0xaa][0x3][0xe5][0xf5]K[0x85][0x8][0xd8]C[0x93][0xf2]�[0x8d][0xd6][0xf8][0xa0]I[0xbc][0x3][0xe5][0xac]y[0xdc]4[0xbc]#f[6R>~]-[0x90][0xa0][0xb0][0xc2][0xb6][0xbb]=f[0xae]s.[0x9e][[0x16][0xba][0xd2]%[0x8]4[0xd8][0x8e]d[\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[0x12],[0xc9][0x8c])u[0xe0][0xba]1[0xd4][0xce]t<[0x99][0xcc]nF[0xf2][0xd9][0xb0]RA[0xcd]a[0xd3]t[0xec][0xb2][0x92][0xbb][0xf5][0xd8][0xad]4([0xed][0x9e][0xf2][0xb2][0x9b][0xf3][0x4][0xa2]m[0x94][0x83]{[0x4][0xc0][0xd1][0x81][0xc9]dc[0xe5][0xe5][0xe3][0xaf][0x15]i{[0xd6]`[0x96][0x7][0xc3]\[0x8e]A[0xb][0xb3][0xee][0xe4]>A$[0x91]*[0x95][0x17]c[0xd2][0x9b][0xbb]k[0x91][0x6][0xc9][0xc0][0xbf][0x92]+[0xb8][0xbc],[0x16]g[0x90]J[0xd4][0xfe][0x15][0xc7][0xd7][0xf4][0xa3][0xe7][0xcc]sz[0xa5][0xaf][0x8f]E\[0xbf]}[\r]'[0xa6][0xa6]!G[0xbf][0x9e][0xd5][0xb7][0x8d]+-[0x85]K[0xe9]�[0xa2][0xd9]!g[0xc6]p[0xfc][0xdc][0xcf][0xdc]i[0xef][0x85][0xf6]0[0xde][0xa8][0xbc][0xdf][0xbf][0x2]u( ,[0xb2][0x6][0x0][0x0][\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "0[\r][\n]"
2017-07-20 11:57:33.422 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << HTTP/1.1 200 OK
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Date: Thu, 20 Jul 2017 18:57:33 GMT
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Server: nginx
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Vary: Accept-Encoding
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Okta-Request-Id: WXD9HLU464EA-epJUnPJ8gAAAeo
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << P3P: CP="HONK"
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Limit: 600
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Remaining: 599
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Reset: 1500577112
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Cache-Control: no-cache, no-store
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Pragma: no-cache
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Expires: 0
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:33.423 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Content-Encoding: gzip
2017-07-20 11:57:33.424 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:33.424 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Set-Cookie: JSESSIONID=7BA699D059C2F4E213BAE9A40E9BCAEB; Path=/
2017-07-20 11:57:33.424 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Keep-Alive: timeout=5, max=100
2017-07-20 11:57:33.424 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Connection: Keep-Alive
2017-07-20 11:57:33.424 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Transfer-Encoding: chunked
2017-07-20 11:57:33.425 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:33.426 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 2][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:33.426 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-2: set socket timeout to 30000
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Executing request POST /api/v1/apps/0oabaqrl51TKl3VKH0h7/users HTTP/1.1
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> POST /api/v1/apps/0oabaqrl51TKl3VKH0h7/users HTTP/1.1
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Accept-Encoding: gzip
2017-07-20 11:57:33.441 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Accept: application/json
2017-07-20 11:57:33.503 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:33.503 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Content-Type: application/json
2017-07-20 11:57:33.503 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:33.503 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Content-Length: 100
2017-07-20 11:57:33.505 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 >> Connection: Keep-Alive
2017-07-20 11:57:33.505 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "POST /api/v1/apps/0oabaqrl51TKl3VKH0h7/users HTTP/1.1[\r][\n]"
2017-07-20 11:57:33.505 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:33.505 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:33.505 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:33.549 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:33.549 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Content-Type: application/json[\r][\n]"
2017-07-20 11:57:33.549 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:33.549 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Content-Length: 100[\r][\n]"
2017-07-20 11:57:33.550 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:33.550 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "[\r][\n]"
2017-07-20 11:57:33.550 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 >> "{"credentials":{"userName":"[email protected]"},"scope":"USER","id":"00ubb0i1qotJegjbw0h7"}"
2017-07-20 11:57:33.755 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:33.755 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Date: Thu, 20 Jul 2017 18:57:33 GMT[\r][\n]"
2017-07-20 11:57:33.755 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Server: nginx[\r][\n]"
2017-07-20 11:57:33.755 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Vary: Accept-Encoding[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Okta-Request-Id: WXD9HbU464EA-epJUnPKAQAAAdc[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Limit: 100[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Remaining: 99[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Reset: 1500577113[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Expires: 0[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Content-Encoding: gzip[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: JSESSIONID=4D7F5F1DA024E73F41346706F3FBD7F0; Path=/[\r][\n]"
2017-07-20 11:57:33.756 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Keep-Alive: timeout=5, max=99[\r][\n]"
2017-07-20 11:57:33.757 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:33.757 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:33.757 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.757 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "1db[\r][\n]"
2017-07-20 11:57:33.757 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x3][0x9d]SM[0x8f][0xda]0[0x10][0xfd]+[0x95][0xaf][0x5][0xe2]lDYq*[0xdd]E*[0xdd]m[0xf][0x5][0xf6][0xd0][0xb]r[0xe2]!qql[0xaf]=[0x81]R[0xc4]�[0xef][0x98][0x90]t[0xf][0xab][0xae][0xd4][0x93]5[0xd6][0x9b][0xf7]1c[0x9f][0x98][0x92]l[0xca]8o[0xf2][0x9c][0xab][0xf4][0xd9][0xe2][0x17](�[0xe6][0x7]^M[0xd8][0x80][0xc1]/[0x4]o[0x84]^[0x10][0xc6]4Z[0xf]X[0xe1]A [0xc4][0x96][0x1b][0x9e]N[0x86]|2[0xbc][0xe1][0xab][0xf4]v:[0x9e]L[0xb3]l[0xc4]9[0xff]AmZ[0x4]\;[0xf9]60[0x14][0xd6][0x1]q[0xad][0x97][0xf3][0xef][0xd4][0x17]P`[0x13][0xa8][0x9e][0xdd][0xad][0x16]O[0xf3][0xfe][0xe6][0xae][0x12][0xa6]|K[0xd4][0x89][0x10][0xe][0xd6][0xcb][0x1e][0xdc][0x1a][0xe]GS,[0x89]7[0xca][0xdc]/[0x96][0xb3]O[0x8f][0xf3]{"[0xa6][0x1c][0x12][0xc]*[0xa1]I[0xef][0xc4][0x9a][0x0][0xfe][0x9b][0xa8]#[0xa8]VE[0x5][0x1a][0xde]#[0x4][0xfc][0x18][0xd0][0xfa][0xda][0x9][0xac]F[0x85][0xad][0xd9]y[0xc0][0x9c][0xb7][[0xa5][0x9]wb[0xbf][0xad][0x1]e[0xb6]6[0xfa][0xad][0xc1][0xab]B$[0x8f]6lfdUC [\r][0xf][0xa5][0xb2][0xa6][0x9b][0xdc][0x96][0x98][0x4]^f[0xd7]:s[0x15][0x11]lLS[0xe7][0xe0][0xbb][0xbb][0x3][0xe4]AE[0xaf]-[0xc4][0xa8]bg.[0xb6][0xda][0xba]VRj[0xea]yq[0xa5]m![0xa2][0x1f][0x6]f[0xb8]^[0x92]j[0xa9][0xf6]`[0xae][0x10][0xf6][0xb5][\r][0x13][0x3][0xdb][0xc6][0xa0]?[0xf6][0xe2][0xaa][0xc0][0xc6][0xf7][0xc4]P[0xb][0xa5][0xff][0x1d]~[0xc0]Z[0xd9][0x8e][0xf3][0xdd][0x8a][0x6]D[0xc4][0xce][0xd2][0xda][0xf4][0xa6][0xb0][0xb2]g[0xcb][0x95][0xc7]*[0xae][0xbf]S+[0xc1][0xc8][0xbf]![0xb7][0xa2]V[0xfa][0xd8]Y[0xbc][0xd2]\r([0xec][\r][0x6][0xf4][0x0][0xb8][0x11]Rz[0x8][0xb4][0xa3][0xeb][0xcc][0xba][0xf1][0xc7][0x92][0xd6][0xb1][0xd1][0xca][0xec].[0x1b][0x14][0xce][0xc5][0xa3][0xf2][0xb0][0xa5][0x1c][0x15][0xa2][0xb][0xd3]$[0x91][0xb0][0x1f][0x8e][0xd3],[0xbb][0xfd]0[0xb2];[0x14][0xce][0xc3]^[0xc1]!.3[0x11]N%[0xfb][0x94][0xe][0x17][0x12]nE.[0x9e][0xbd][0x1e][0xa7][0xab][0x7][0x9d]==|[0x8e][0xcf][0x9f][0xe8][0xe3][0xb3][0xf8]/[0xd6][0xd8]H[0xb4][0xaf][0xfd][0xaa][0xf3][0xf9][0xfc][0x7][0xf3][0x90][0xc2][0xed]u[0x3][0x0][0x0][\r][\n]"
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "0[\r][\n]"
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << HTTP/1.1 200 OK
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Date: Thu, 20 Jul 2017 18:57:33 GMT
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Server: nginx
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Vary: Accept-Encoding
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Okta-Request-Id: WXD9HbU464EA-epJUnPKAQAAAdc
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << P3P: CP="HONK"
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Limit: 100
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Remaining: 99
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Reset: 1500577113
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Cache-Control: no-cache, no-store
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Pragma: no-cache
2017-07-20 11:57:33.758 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Expires: 0
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Content-Encoding: gzip
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Set-Cookie: JSESSIONID=4D7F5F1DA024E73F41346706F3FBD7F0; Path=/
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Keep-Alive: timeout=5, max=99
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Connection: Keep-Alive
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] org.apache.http.headers : http-outgoing-2 << Transfer-Encoding: chunked
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:33.759 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 2][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:33.760 DEBUG 2946 --- [nio-8080-exec-7] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.771 DEBUG 2946 --- [nio-8080-exec-8] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:33.771 DEBUG 2946 --- [nio-8080-exec-8] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.771 DEBUG 2946 --- [nio-8080-exec-8] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:33.771 DEBUG 2946 --- [nio-8080-exec-8] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-2: set socket timeout to 30000
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] o.a.http.impl.execchain.MainClientExec : Executing request GET /api/v1/idps HTTP/1.1
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> GET /api/v1/idps HTTP/1.1
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> Accept-Encoding: gzip
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> Accept: application/json
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 >> Connection: Keep-Alive
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "GET /api/v1/idps HTTP/1.1[\r][\n]"
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:33.772 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "Authorization: SSWS 002zWe7w0gfXfdMkZWdKAMd8lRjwmOTxJZIvLiAJgv[\r][\n]"
2017-07-20 11:57:33.773 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:33.773 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 >> "[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Date: Thu, 20 Jul 2017 18:57:33 GMT[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Server: nginx[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Vary: Accept-Encoding[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "X-Okta-Request-Id: WXD9HbU464EA-epJUnPKAwAAAfw[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Limit: 1200[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Remaining: 1197[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "X-Rate-Limit-Reset: 1500577089[\r][\n]"
2017-07-20 11:57:33.918 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Expires: 0[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Link: <https://dev-513386.oktapreview.com/api/v1/idps?limit=20>; rel="self"[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Link: <https://dev-513386.oktapreview.com/api/v1/idps?after=0oab9r61n8Z9VFflB0h7&limit=20>; rel="next"[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Content-Encoding: gzip[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Set-Cookie: JSESSIONID=E6FFC0F4862689249B8BADBADE8FBB22; Path=/[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Keep-Alive: timeout=5, max=98[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "2cd[\r][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0x3][0xa5]T[0xc1]n[0xe2]0[0x10][0xfd][0x95][0x95][0xf][0x9c][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "$[0xd0]@[0x13][0x9][0xad]X[0xa0],[0x12][0x94][0xb6][0xa4]=[0xb4][0xaa][0x90]q\[0xf0][0xc6][0xb1]-[0xc7][0x81][0xb6]([0xff][0xde][0xb1][0x3]-U{[0xdb][0xb][0xce]xf[0xde][0xbc][0x99]y[0xe6]q[0x8f]X[0x82]"[0xe4]I[0xbc][\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "u[0xc7][0x17][0x17][0xf][0xe1][0xfd][0xe5]3[0xff][0xe3]m[0xba][0xe8][0xc][0x99]WE[0xc1];[0x9e][0xcf][0xc7][0xd3][0x11][0xd8][0x2]g[0xd6]N[0x98][0x8e][0xc6]R[0xae]9[0xfd]5d[0x9a][0x12]#[0xf5]+xs[0x83]M[0x91][0x83][0xbf]?[0x88]'[0xf7]6[0x9e]h[0x8a][\r][0xb5][0x5]Z[0x9e][0xdf][0xad]{[0xdd][0xba][0x1f][0xc6][0x9e][0x17][0x9d]w"[0xdf]kx[0x9e][0xf7][0x0]A[0x1c][0xe7][0xe6]N%?[0x4][0xb6][0xa2][0xf3][0xf3][0xc8][0xef][0x1c][0x3][0x95][0x96]F[0x12][0xc9]Q[0xb4]?2[0x9b]O[0x86][0x3][0x80][0xa0]"Q[0x92][0x9][0x3][0xc5][0xf7][0x8][0x17]f#5{[0xc3][0x86]Ia/[\n]"
2017-07-20 11:57:33.919 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "[\r])hc[0x8c][0xca][0xa3]f[0x13][0x13]"[0xb][0x8]m[0xac]][0x7][\r]"[0xb3][0xa6]lJ[0x9b][0xd5]j[0xda]_[0xc0][1[0x91]0[0xb1][0x86][0xac][0xbf]q|][0xbf][0x1d][\r]'[0xb7][0xa3]A[0x8c]J[0x18][0x89]L[0xe9][0xf][0xa8][0xbb][0xdd][0xee][0x0][0x88][0x15][0xcb]+[0xd0][\n]"
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "r[0xdb]nV9[0xdf]`[0xaf][0xe7][0xb][0x80][0x4][0xcc][0x9c]HE[0x81][0xfb]#[0x82]S[0xc0]B[0xa0][0xa3][0xc]3[0xe]'[0xf4][0xfc][0xcc]8EOn[0x98][0x9][0x15][0x86]a[0xee][0xda]$[0x9c][0x81][0xf5][0xf9][0xb5]t[0x8b][0xc][0x83][0xb0][0xed]w[0xc2]v[0x10][0x4]a[0x3]+ul[0xb3][0xc8][0xa9]&R[0x18]H[0xb1][0xe4][0xec]n\[0xfe]2[0xa7][0x80][0xb]0([0xb9][0x9a][0x4][0xd9]M[0xeb]ap9[0x1a][0xe][0xb3][0x17][0xd6][0x9d][0x5][0xb3][0xb0][0xbd][9[0x86][[0xcc][0x19]l[0xc8][\r]T[0x14][0x9c][0xc3][0x95][0x92][0x9c][0x91]W[[0x1f]8nY[0xe]>72X[0x0][0xa9][0x2]Q[0xff].[0x9e]�[0xf6]0[0x83]=S[0x8d]"[0xa3][0xb]z[0x86][0xd6]Z[0x16][0xaa][0xda][0xd7]G[0xf8]b1[0x19]_A[0x2][0xce]s[0xb6][0x16][0x19][0xd0]sC[0xf1][0xbc][0xb5][0x15]g[0xe7]-[0x95][0x9d][0xc1][0xcd][0xb4][0xcf][0xac]8[0x9f],[0xad][0xc3].[0xa7]L[0xa4][0xb6]0L[0xca]U[0xb0][0xc][0xad][0xf3][0x94][0x86][0x1d]s[0xb1][0xfa][0x7]bu[0x92][0x80]q\[0x81][0x98]c[0x9a])[0xe][0xca][0xb3]w[0xe6][0xe3][0x1b][0xde][0x84][0xb2][0x11][0x8d]j[0xb][0x90][0xfa][0x15]9[0xc3][0x86]l[0xe2][0xea]m[0x8c]f[0xfd][0xc9][0x14]8[0xbb][0xbb][0xbe]1[0x9a][0xad][\n]"
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "[0x8b]w[0x98]R[0x86]_[0x6]\[0x92]t[0x91][0xd2][0x1d][0x8a]<[0x80]Zr`[0xfb]E[0xa8][0xae][0xfa]F[0xd3][0xe7][0x13][0x95]&t[[0xf][0xfc]v[0xfb][0xa2][0xd3][0x90][0xa9][0xc1]J[0xd3]-[0xa3][0xbb]/[0xba][0xf2][0x9d]Z[0xad][0xd2][0xe9]o [0xdc][0xfb][0xe9][\r][0xd7][0xe][fIo_}N[0x92][0xb2][0xa6]i[0xae][0xa4][0xc8][0xe9][0xd2][0xbe][0xef][0xde][0xfe]h[0xda][0x8e]N[0x9c][0x99]LN[0x9c]3[0xb0][0xca][0x9a]Sjo_[0x9][0xd6][0xc6][0xc2]_[0x1][0x8c]tYhfq*[0xeb]N3[0x88][0x84]?[0x3][0x1b]i[0x8f][0xb2]&[0xa4] `[0xb9][0xa3][0x84]i[0x1d]g[\r][0x92][0xad][0xe4][0xb0][0xf9]x[0xbd][0x9c]K[0x98][0xd4]#[0x1a][0x8f][0xe2]j[0xc9][0x15][0xef][0xdb]O[0xf0][0xff][0x1e]W[0x93]`[0xce]W[0x98][0xa4][0xc0][0xe4]{a[0xf7],A^e[0xf9][0xf4][0xe]+[0x4][0x83][0x97][0x1f][0x5][0x0][0x0][\r][\n]"
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "0[\r][\n]"
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.wire : http-outgoing-2 << "[\r][\n]"
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << HTTP/1.1 200 OK
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Date: Thu, 20 Jul 2017 18:57:33 GMT
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Server: nginx
2017-07-20 11:57:33.920 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Vary: Accept-Encoding
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << X-Okta-Request-Id: WXD9HbU464EA-epJUnPKAwAAAfw
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << P3P: CP="HONK"
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Limit: 1200
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Remaining: 1197
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << X-Rate-Limit-Reset: 1500577089
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Cache-Control: no-cache, no-store
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Pragma: no-cache
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Expires: 0
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Link: <https://dev-513386.oktapreview.com/api/v1/idps?limit=20>; rel="self"
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Link: <https://dev-513386.oktapreview.com/api/v1/idps?after=0oab9r61n8Z9VFflB0h7&limit=20>; rel="next"
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Content-Encoding: gzip
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:33.921 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Set-Cookie: JSESSIONID=E6FFC0F4862689249B8BADBADE8FBB22; Path=/
2017-07-20 11:57:33.922 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Keep-Alive: timeout=5, max=98
2017-07-20 11:57:33.922 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Connection: Keep-Alive
2017-07-20 11:57:33.922 DEBUG 2946 --- [nio-8080-exec-8] org.apache.http.headers : http-outgoing-2 << Transfer-Encoding: chunked
2017-07-20 11:57:33.922 DEBUG 2946 --- [nio-8080-exec-8] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:33.923 DEBUG 2946 --- [nio-8080-exec-8] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 2][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:33.923 DEBUG 2946 --- [nio-8080-exec-8] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 2][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.183 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:41.184 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.184 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.impl.conn.CPool : Connection [id:2][route:{s}->https://dev-513386.oktapreview.com:443][state:null] expired @ Thu Jul 20 11:57:38 PDT 2017
2017-07-20 11:57:41.185 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-2: Close connection
2017-07-20 11:57:41.189 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 3][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.190 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Opening connection {s}->https://dev-513386.oktapreview.com:443
2017-07-20 11:57:41.193 DEBUG 2946 --- [nio-8080-exec-1] .i.c.DefaultHttpClientConnectionOperator : Connecting to dev-513386.oktapreview.com/54.225.80.210:443
2017-07-20 11:57:41.193 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Connecting socket to dev-513386.oktapreview.com/54.225.80.210:443 with timeout 30000
2017-07-20 11:57:41.265 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled protocols: [TLSv1, TLSv1.1, TLSv1.2]
2017-07-20 11:57:41.265 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Enabled cipher suites:[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_128_GCM_SHA256, 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-07-20 11:57:41.266 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Starting handshake
2017-07-20 11:57:41.476 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : Secure session established
2017-07-20 11:57:41.476 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated protocol: TLSv1.2
2017-07-20 11:57:41.477 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
2017-07-20 11:57:41.477 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : peer principal: CN=*.oktapreview.com, O="Okta, Inc.", L=San Francisco, ST=California, C=US
2017-07-20 11:57:41.477 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : peer alternative names: [*.oktapreview.com, oktapreview.com]
2017-07-20 11:57:41.477 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.c.ssl.SSLConnectionSocketFactory : issuer principal: CN=DigiCert SHA2 High Assurance Server CA, OU=www.digicert.com, O=DigiCert Inc, C=US
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] .i.c.DefaultHttpClientConnectionOperator : Connection established 192.168.6.20:51109<->54.225.80.210:443
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-3: set socket timeout to 30000
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Executing request POST /oauth2/v1/token HTTP/1.1
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> POST /oauth2/v1/token HTTP/1.1
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Accept-Encoding: gzip
2017-07-20 11:57:41.478 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Content-Type: application/x-www-form-urlencoded
2017-07-20 11:57:41.531 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Accept: application/json
2017-07-20 11:57:41.531 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:41.531 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Authorization: Basic MG9hYmFxcmw1MVRLbDNWS0gwaDc6cTJPczVRWnlCUmhVazRfSXNfR0FkdjVQcHhUWXZOcDJLU1VKcUZRNg==
2017-07-20 11:57:41.531 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Content-Length: 102
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Connection: Keep-Alive
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "POST /oauth2/v1/token HTTP/1.1[\r][\n]"
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Content-Type: application/x-www-form-urlencoded[\r][\n]"
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:41.532 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:41.533 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Authorization: Basic MG9hYmFxcmw1MVRLbDNWS0gwaDc6cTJPczVRWnlCUmhVazRfSXNfR0FkdjVQcHhUWXZOcDJLU1VKcUZRNg==[\r][\n]"
2017-07-20 11:57:41.533 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Content-Length: 102[\r][\n]"
2017-07-20 11:57:41.533 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:41.533 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "[\r][\n]"
2017-07-20 11:57:41.533 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "grant_type=password&password=JEnydoby6%21&scope=offline_access&username=michele%2Btest%40stormpath.com"
2017-07-20 11:57:41.897 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Date: Thu, 20 Jul 2017 18:57:41 GMT[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Server: nginx[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Okta-Request-Id: WXD9JZ395R41pUAExwuuAAAAAD8[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Limit: 10000[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Remaining: 9998[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Reset: 1500577092[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Cache-Control: no-cache, no-store[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Pragma: no-cache[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Expires: 0[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Robots-Tag: none[\r][\n]"
2017-07-20 11:57:41.898 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Set-Cookie: JSESSIONID=22D9C785C704005B9FC7EF92D7D0CFD1; Path=/[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Keep-Alive: timeout=5, max=100[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "413[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "{"access_token":"eyJhbGciOiJSUzI1NiIsImtpZCI6ImpwRnNzVEV4bENfYlMtV2NiUFgzWnpEd0lfYnNqT3JZWnR2OFRxMXRuNXcifQ.eyJ2ZXIiOjEsImp0aSI6IkFULjRGaHBHSEtkcUhwelJXQlpNMFZOMkg0ZFFyLU80blRWSExEcXYxQ2d6NlUueHJvU3A3NWZIaE9DRC8yMEdYMktOMXFVYWkvVjJ4a1pvM2dDR0htK29KTT0iLCJpc3MiOiJodHRwczovL2Rldi01MTMzODYub2t0YXByZXZpZXcuY29tIiwiYXVkIjoiaHR0cHM6Ly9kZXYtNTEzMzg2Lm9rdGFwcmV2aWV3LmNvbSIsInN1YiI6Im1pY2hlbGUrdGVzdEBzdG9ybXBhdGguY29tIiwiaWF0IjoxNTAwNTc3MDYxLCJleHAiOjE1MDA1ODA2NjEsImNpZCI6IjBvYWJhcXJsNTFUS2wzVktIMGg3IiwidWlkIjoiMDB1YmIwaTFxb3RKZWdqYncwaDciLCJzY3AiOlsib2ZmbGluZV9hY2Nlc3MiXX0.TMoAS_xFFP6YdICFdjEp5Ao_paXLuUlORqmP3yPdRovXwXRmAMPZw1ToseOI9E6s1mYqzW2VASHyTz1cx4hlgwWKsYRvomEW2OTAreOygRwc1DsYLW01IwlJ22IFDgt9wg77fF4vdzAjmvAIGS3QpYz9Sg1UIdGscpAyJDBY_a4Mqs9chsZ5kqdCeImN7qF9-f_Cj0JK-BzVP9P0Kova72ucVmnXruoJ5TiifaFchebdvyEa2ebX3Wyo76Aj9PpZZHzgkMUdfAjP63fg4LoJZvdlfmznM0i0hqllxykRmfgrHLTdLUuauhsbmoAzHQImLVu9GE6dvZ6rk54cNOwv1Q","token_type":"Bearer","expires_in":3600,"scope":"offline_access","refresh_token":"DDT2aukZtSBuTPNWF3M-gu6M4hrwaSYnv8BKS9XORzA"}[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "0[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "[\r][\n]"
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << HTTP/1.1 200 OK
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Date: Thu, 20 Jul 2017 18:57:41 GMT
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Server: nginx
2017-07-20 11:57:41.899 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:41.900 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:41.900 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Okta-Request-Id: WXD9JZ395R41pUAExwuuAAAAAD8
2017-07-20 11:57:41.900 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << P3P: CP="HONK"
2017-07-20 11:57:41.901 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Limit: 10000
2017-07-20 11:57:41.902 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Remaining: 9998
2017-07-20 11:57:41.902 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Reset: 1500577092
2017-07-20 11:57:41.902 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Cache-Control: no-cache, no-store
2017-07-20 11:57:41.902 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Pragma: no-cache
2017-07-20 11:57:41.902 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Expires: 0
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Robots-Tag: none
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Set-Cookie: JSESSIONID=22D9C785C704005B9FC7EF92D7D0CFD1; Path=/
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Keep-Alive: timeout=5, max=100
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Connection: Keep-Alive
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Transfer-Encoding: chunked
2017-07-20 11:57:41.903 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:41.904 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 3][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:41.904 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 3][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.976 DEBUG 2946 --- [nio-8080-exec-1] o.a.h.client.protocol.RequestAuthCache : Auth cache not set in the context
2017-07-20 11:57:41.976 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection request: [route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection leased: [id: 3][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 0; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.DefaultManagedHttpClientConnection : http-outgoing-3: set socket timeout to 30000
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Executing request GET /oauth2/v1/keys HTTP/1.1
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Proxy auth state: UNCHALLENGED
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> GET /oauth2/v1/keys HTTP/1.1
2017-07-20 11:57:41.977 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Host: dev-513386.oktapreview.com
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Accept-Encoding: gzip
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Accept: application/json
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Authorization: Basic MG9hYmFxcmw1MVRLbDNWS0gwaDc6cTJPczVRWnlCUmhVazRfSXNfR0FkdjVQcHhUWXZOcDJLU1VKcUZRNg==
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 >> Connection: Keep-Alive
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "GET /oauth2/v1/keys HTTP/1.1[\r][\n]"
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Host: dev-513386.oktapreview.com[\r][\n]"
2017-07-20 11:57:42.000 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Accept-Encoding: gzip[\r][\n]"
2017-07-20 11:57:42.001 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Accept: application/json[\r][\n]"
2017-07-20 11:57:42.001 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "User-Agent: stormpath-spring-security/2.0.0-okta stormpath-servlet-java/2.0.0-okta stormpath-spring-webmvc/2.0.0-okta stormpath-spring-boot-starter/2.0.0-okta stormpath-sdk-java/2.0.0-okta stormpath-oktagration/2.0.0-okta spring-security/4.2.1.RELEASE spring/4.3.5.RELEASE spring-boot/1.5.1.RELEASE tomcat/8.5 java/1.8.0_141 Mac OS X/10.10.5[\r][\n]"
2017-07-20 11:57:42.001 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Authorization: Basic MG9hYmFxcmw1MVRLbDNWS0gwaDc6cTJPczVRWnlCUmhVazRfSXNfR0FkdjVQcHhUWXZOcDJLU1VKcUZRNg==[\r][\n]"
2017-07-20 11:57:42.001 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:42.002 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 >> "[\r][\n]"
2017-07-20 11:57:42.100 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "HTTP/1.1 200 OK[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Date: Thu, 20 Jul 2017 18:57:42 GMT[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Server: nginx[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Content-Type: application/json;charset=UTF-8[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Okta-Request-Id: WXD9Jp395R41pUAExwuuCgAAAIs[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "P3P: CP="HONK"[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Limit: 10000[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Remaining: 9997[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Rate-Limit-Reset: 1500577092[\r][\n]"
2017-07-20 11:57:42.101 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Cache-Control: max-age=31593, must-revalidate[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Expires: Fri, 21 Jul 2017 03:44:15 GMT[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Strict-Transport-Security: max-age=315360000[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "X-Robots-Tag: none[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Set-Cookie: JSESSIONID=5A15F0ADCEBD59FD45ACDB0849CD5C1B; Path=/[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Keep-Alive: timeout=5, max=99[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Connection: Keep-Alive[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "Transfer-Encoding: chunked[\r][\n]"
2017-07-20 11:57:42.102 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "[\r][\n]"
2017-07-20 11:57:42.103 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "1ce[\r][\n]"
2017-07-20 11:57:42.103 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "{"keys":[{"alg":"RS256","e":"AQAB","n":"o1RthBOSffHx_5EyoP8Nj0HHQmFAWcNh9xeFj456ePAC7BXSRVpkwEYPJUnp5mbTnj6ps7-7WnGbx4N32RkPcsg98oMYZjCzXeVyW2kLuPODP38MRm2ToVJGFjr5RpAwTvS3mhI1CHoKC-VNU40UtVhe0--aVwmhMdz5zvR75A5gLSB9zzziodEBj3AxPrxGaqwrCV6APAH_VJR_xVDB040VhsKUBQy-i2gnrOeRbXgqbEKThkPhPwxKnkCuGGJoaS5W0mNkN6yKG6_AZfoyr1kl_z-t9U--Og_MXTJGGf4dQGByq9epgMstWAoKkHOCFCPhm0YUbK36sYuNKY459w","kid":"rQ6iBwwFL3GnrPG84Sq0MN8K7gT8kneupwrCr2fDNZU","kty":"RSA","use":"sig"}]}[\r][\n]"
2017-07-20 11:57:42.103 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "0[\r][\n]"
2017-07-20 11:57:42.103 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.wire : http-outgoing-3 << "[\r][\n]"
2017-07-20 11:57:42.103 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << HTTP/1.1 200 OK
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Date: Thu, 20 Jul 2017 18:57:42 GMT
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Server: nginx
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Public-Key-Pins-Report-Only: pin-sha256="jZomPEBSDXoipA9un78hKRIeN/+U4ZteRaiX8YpWfqc="; pin-sha256="axSbM6RQ+19oXxudaOTdwXJbSr6f7AahxbDHFy3p8s8="; pin-sha256="SE4qe2vdD9tAegPwO79rMnZyhHvqj3i5g1c2HkyGUNE="; pin-sha256="ylP0lMLMvBaiHn0ihLxHjzvlPVQNoyQ+rMiaj0da/Pw="; max-age=60; report-uri="https://okta.report-uri.io/r/default/hpkp/reportOnly"
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Content-Type: application/json;charset=UTF-8
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Okta-Request-Id: WXD9Jp395R41pUAExwuuCgAAAIs
2017-07-20 11:57:42.104 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << P3P: CP="HONK"
2017-07-20 11:57:42.105 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Limit: 10000
2017-07-20 11:57:42.105 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Remaining: 9997
2017-07-20 11:57:42.105 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Rate-Limit-Reset: 1500577092
2017-07-20 11:57:42.105 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Cache-Control: max-age=31593, must-revalidate
2017-07-20 11:57:42.107 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Expires: Fri, 21 Jul 2017 03:44:15 GMT
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Strict-Transport-Security: max-age=315360000
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << X-Robots-Tag: none
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Set-Cookie: sid=""; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Set-Cookie: JSESSIONID=5A15F0ADCEBD59FD45ACDB0849CD5C1B; Path=/
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Keep-Alive: timeout=5, max=99
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Connection: Keep-Alive
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] org.apache.http.headers : http-outgoing-3 << Transfer-Encoding: chunked
2017-07-20 11:57:42.108 DEBUG 2946 --- [nio-8080-exec-1] o.a.http.impl.execchain.MainClientExec : Connection can be kept alive for 5000 MILLISECONDS
2017-07-20 11:57:42.110 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection [id: 3][route: {s}->https://dev-513386.oktapreview.com:443] can be kept alive for 5.0 seconds
2017-07-20 11:57:42.110 DEBUG 2946 --- [nio-8080-exec-1] h.i.c.PoolingHttpClientConnectionManager : Connection released: [id: 3][route: {s}->https://dev-513386.oktapreview.com:443][total kept alive: 1; route allocated: 1 of 1073741823; total allocated: 1 of 2147483647]
2017-07-20 11:57:42.131 ERROR 2946 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
java.lang.IllegalArgumentException: Key with 'kid' of jpFssTExlC_bS-WcbPX3ZzDwI_bsjOrYZtv8Tq1tn5w could not be found via the '/oauth2/v1/keys' endpoint.
at com.stormpath.sdk.lang.Assert.notNull(Assert.java:80)
at com.stormpath.sdk.impl.okta.DefaultOktaSigningKeyResolver.getKey(DefaultOktaSigningKeyResolver.java:92)
at com.stormpath.sdk.impl.okta.DefaultOktaSigningKeyResolver.resolveSigningKey(DefaultOktaSigningKeyResolver.java:56)
at io.jsonwebtoken.impl.DefaultJwtParser.parse(DefaultJwtParser.java:304)
at io.jsonwebtoken.impl.DefaultJwtParser.parse(DefaultJwtParser.java:458)
at io.jsonwebtoken.impl.DefaultJwtParser.parseClaimsJws(DefaultJwtParser.java:518)
at com.stormpath.sdk.impl.authc.DefaultOktaAuthNAuthenticator.getUserId(DefaultOktaAuthNAuthenticator.java:109)
at com.stormpath.sdk.impl.authc.DefaultOktaAuthNAuthenticator.authenticate(DefaultOktaAuthNAuthenticator.java:96)
at com.stormpath.sdk.impl.application.OktaApplication.authenticateAccount(OktaApplication.java:355)
at com.stormpath.spring.security.provider.OktaAuthenticationProvider.authenticate(OktaAuthenticationProvider.java:76)
at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:174)
at org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter.attemptAuthentication(UsernamePasswordAuthenticationFilter.java:94)
at com.stormpath.spring.filter.ContentNegotiationSpringSecurityAuthenticationFilter.attemptAuthentication(ContentNegotiationSpringSecurityAuthenticationFilter.java:86)
at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:212)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at com.stormpath.spring.security.provider.SocialCallbackSpringSecurityProcessingFilter.filter(SocialCallbackSpringSecurityProcessingFilter.java:142)
at com.stormpath.sdk.servlet.filter.HttpFilter.doFilter(HttpFilter.java:221)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at com.stormpath.spring.filter.StormpathSecurityContextPersistenceFilter.filter(StormpathSecurityContextPersistenceFilter.java:78)
at com.stormpath.sdk.servlet.filter.HttpFilter.doFilter(HttpFilter.java:221)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at com.stormpath.sdk.servlet.filter.account.AccountResolverFilter.filter(AccountResolverFilter.java:103)
at com.stormpath.sdk.servlet.filter.HttpFilter.doFilter(HttpFilter.java:221)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:124)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at com.stormpath.spring.filter.StormpathWrapperFilter.filter(StormpathWrapperFilter.java:85)
at com.stormpath.sdk.servlet.filter.HttpFilter.doFilter(HttpFilter.java:221)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:89)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:748)
Metadata
Metadata
Assignees
Labels
No labels