-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Too many redirects after login #19131
Comments
@jialindai could you please assist? |
Hi, @drhae The only difference when I deploy the sample as war is that I added a maven
the sample code I used is of the current master branch My yaml config is like this:
Could you please try it again? |
Hello. I am unable to resolve the depedancy for the azure libarary. <dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-active-directory-b2c</artifactId>
<version>3.2.0-beta.1</version> <!-- {x-version-update;com.azure.spring:azure-spring-boot-starter-active-directory-b2c;current} -->
</dependency>
Also, what value goes in the user-name-attribute-namein the yaml? Your yaml is different than the previous sample I downloaded. That value wasn't present.. this is what i had in my example...azure:
activedirectory:
b2c:
tenant: myb2cdev
oidc-enabled: true
client-id: be06bada...........
client-secret: M7YrPz...........
reply-url: http://localhost:8080/b2cboot/home
logout-success-url: http://localhost:8080/b2cboot/home
user-flows:
sign-up-or-sign-in: B2C_1A_saml_MercNet
On Friday, February 19, 2021, 12:24:48 AM CST, zhihaoguo <[email protected]> wrote:
Hi, @drhae
I tried to reproduce the problem you have met, but it seems to work for me.
The only difference when I deploy the sample as war is that I added a maven
dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
the sample code I used is of the current master branch
My yaml config is like this:
azure:
activedirectory:
b2c:
base-uri: ${your-tenant-authorization-server-base-uri}
client-id: ${your-client-id}
client-secret: ${your-client-secret}
logout-success-url: ${your-logout-success-url}
user-name-attribute-name: ${your-user-name-claim}
user-flows:
sign-up-or-sign-in: ${your-sign-up-or-in-user-flow}
profile-edit: ${your-profile-edit-user-flow} # optional
password-reset: ${your-password-reset-user-flow} # optional
Could you please try it again?
Please give more information (eg: commit id) if you still fail to deploy the war.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
The reply url is the same in the azure portal as what is in the properties file. Just sits and loops.. |
Everything is the same. As soon as i change it to run as a war file instead of a jar file, the authentication loops.
On Sunday, February 28, 2021, 09:11:59 PM CST, zhihaoguo <[email protected]> wrote:
@drhae
hi, could you please check your step with this MD file?
try to use another url as your replay-url, also make sure your reply-url is different with logout-success-url.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@drhae |
When runnign as a war, it loops after the login....
2021-03-02 10:21:21.289 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/home to session2021-03-02 10:21:21.289 DEBUG 7236 --- [nio-8080-exec-2] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:21.292 DEBUG 7236 --- [nio-8080-exec-2] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:21.305 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:21.311 DEBUG 7236 --- [nio-8080-exec-2] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:21.317 DEBUG 7236 --- [nio-8080-exec-2] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:21.329 DEBUG 7236 --- [nio-8080-exec-4] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:21.329 DEBUG 7236 --- [nio-8080-exec-4] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:21.352 DEBUG 7236 --- [nio-8080-exec-4] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=ajbM4T3J9BM4YN5pKPCl_HYNDsBXGXbu5HH9TUPvv9E%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=_TU3SmFmsFXRyUMAaPHlGXOfQ5dV7UxvSid9lvah0VA&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:21.352 DEBUG 7236 --- [nio-8080-exec-4] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:21.371 DEBUG 7236 --- [nio-8080-exec-4] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:33.999 DEBUG 7236 --- [nio-8080-exec-6] o.s.security.web.FilterChainProxy : Securing GET /?state=ajbM4T3J9BM4YN5pKPCl_HYNDsBXGXbu5HH9TUPvv9E%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.UaujhRyrfoU1Uwg3askVmdHiCwhgY561JPOwhcr4LjhBaek_5Ljhawt-R9dbPIf1kerHNXUBo2P-oUzCodbLrrb9IdCgOPWeV9RUJ6RdzyfLixQOZirN-uPuNCwFoLZHvu1IHaZCibU4g5BTdUUrlBqu6JsgEQVO73LD_Gzm9NjSCmMxAVIQD_SSgyxHagANKyOOcLTRbLDVrJ8M_7IpdXOJQ-oJ_n82ywZ2u5VLgPvKCxAbpu5gra4sigWa_8nnlro7A4oJrv2Ylqg7A7qsDOTTwjBLtgd1Gw4DUCtVq7G-jrLK5vMuJxmU8AE2TchoQO41E-ZUT2sCPceSYDWNnQ.M4kS2xM7nDLrFS00.7koxZDZjcWGHpQHND-UQNzhZkiPHPAmqhbD7PCt8SXi3Pm-emcGL19O4UAI4zxWiGpUYIfkVbu_FhEnC_9_BbSUPXri3DdMFrjYgZEzNniPNRtYh9TGN_6knWijCnAwJA-itm4TS6PVcwXZpM5CbtpvRThUsVVY57tou6vu3TfDbsHmepZ2TX5-vWsoNOpo_uJ5Y3aLkc-kH1pAdtjNE2e6sSLE863id5FKISkiVKOpsszT28IXgZ8POdDve-gt7CCKggvToWNaAFqQNhvnc7dvAMDkJm7wt7Fr0MGnx6J7rjQ9DzZlHRa-m-nnVunARpvZ5tHZn5EHHNXxxzJEgPOwYoSHVQmYVDxNzJgX1efM5i5DD_MinMRlj-LSlw5955826TT2hycXCIYicmxL1m8AqHSZMbZhDM2TtZJem7N8WyUDtsT-S6tMqR4qgyLvKzpijKzsc83tEvEdtrq2yx3UL--V7lF13wr1p1dMwamMbX5Z8vclOAJyWXDcO-IDEsTqu6o62VHUef83SCBfGKNPHcch1t_f3oekchFN8DgAOLIU8taOb820xqdkxJpEdfgtHi6G1ynhNwB0jm8Jyy6OWgFNx9K98YG2Bqz_qE1bRjZG0WHl3I94ki9JPSk3lOfvCUCOZupzIhbFxGdDg175qB9_iMwdShXfPr757TjmlfYwjeejf-ONHI-Tb2xUVccLnvxNheIwJcN6qBNwBt8rxgstOVdDncpzFNiq46F_qrE1aZspDFieWf5i-AB4zNGDEDKISt_EBvqIVzhS3FdUK7XXzRRj9o701yNitp0S1OYXZJXQslTDm24ZVSmjO6F3JOxijP2lP8wPThbNbR4bUer3izf23_GEEqYpVwFDhtN3Y.tCFBgp3vHgK70kzp5aMJaA2021-03-02 10:21:34.000 DEBUG 7236 --- [nio-8080-exec-6] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:34.007 DEBUG 7236 --- [nio-8080-exec-6] o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous SecurityContext2021-03-02 10:21:34.010 DEBUG 7236 --- [nio-8080-exec-6] o.s.s.w.a.i.FilterSecurityInterceptor : Failed to authorize filter invocation [GET /?state=ajbM4T3J9BM4YN5pKPCl_HYNDsBXGXbu5HH9TUPvv9E%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.UaujhRyrfoU1Uwg3askVmdHiCwhgY561JPOwhcr4LjhBaek_5Ljhawt-R9dbPIf1kerHNXUBo2P-oUzCodbLrrb9IdCgOPWeV9RUJ6RdzyfLixQOZirN-uPuNCwFoLZHvu1IHaZCibU4g5BTdUUrlBqu6JsgEQVO73LD_Gzm9NjSCmMxAVIQD_SSgyxHagANKyOOcLTRbLDVrJ8M_7IpdXOJQ-oJ_n82ywZ2u5VLgPvKCxAbpu5gra4sigWa_8nnlro7A4oJrv2Ylqg7A7qsDOTTwjBLtgd1Gw4DUCtVq7G-jrLK5vMuJxmU8AE2TchoQO41E-ZUT2sCPceSYDWNnQ.M4kS2xM7nDLrFS00.7koxZDZjcWGHpQHND-UQNzhZkiPHPAmqhbD7PCt8SXi3Pm-emcGL19O4UAI4zxWiGpUYIfkVbu_FhEnC_9_BbSUPXri3DdMFrjYgZEzNniPNRtYh9TGN_6knWijCnAwJA-itm4TS6PVcwXZpM5CbtpvRThUsVVY57tou6vu3TfDbsHmepZ2TX5-vWsoNOpo_uJ5Y3aLkc-kH1pAdtjNE2e6sSLE863id5FKISkiVKOpsszT28IXgZ8POdDve-gt7CCKggvToWNaAFqQNhvnc7dvAMDkJm7wt7Fr0MGnx6J7rjQ9DzZlHRa-m-nnVunARpvZ5tHZn5EHHNXxxzJEgPOwYoSHVQmYVDxNzJgX1efM5i5DD_MinMRlj-LSlw5955826TT2hycXCIYicmxL1m8AqHSZMbZhDM2TtZJem7N8WyUDtsT-S6tMqR4qgyLvKzpijKzsc83tEvEdtrq2yx3UL--V7lF13wr1p1dMwamMbX5Z8vclOAJyWXDcO-IDEsTqu6o62VHUef83SCBfGKNPHcch1t_f3oekchFN8DgAOLIU8taOb820xqdkxJpEdfgtHi6G1ynhNwB0jm8Jyy6OWgFNx9K98YG2Bqz_qE1bRjZG0WHl3I94ki9JPSk3lOfvCUCOZupzIhbFxGdDg175qB9_iMwdShXfPr757TjmlfYwjeejf-ONHI-Tb2xUVccLnvxNheIwJcN6qBNwBt8rxgstOVdDncpzFNiq46F_qrE1aZspDFieWf5i-AB4zNGDEDKISt_EBvqIVzhS3FdUK7XXzRRj9o701yNitp0S1OYXZJXQslTDm24ZVSmjO6F3JOxijP2lP8wPThbNbR4bUer3izf23_GEEqYpVwFDhtN3Y.tCFBgp3vHgK70kzp5aMJaA] with attributes [authenticated]2021-03-02 10:21:34.012 DEBUG 7236 --- [nio-8080-exec-6] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/?state=ajbM4T3J9BM4YN5pKPCl_HYNDsBXGXbu5HH9TUPvv9E%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.UaujhRyrfoU1Uwg3askVmdHiCwhgY561JPOwhcr4LjhBaek_5Ljhawt-R9dbPIf1kerHNXUBo2P-oUzCodbLrrb9IdCgOPWeV9RUJ6RdzyfLixQOZirN-uPuNCwFoLZHvu1IHaZCibU4g5BTdUUrlBqu6JsgEQVO73LD_Gzm9NjSCmMxAVIQD_SSgyxHagANKyOOcLTRbLDVrJ8M_7IpdXOJQ-oJ_n82ywZ2u5VLgPvKCxAbpu5gra4sigWa_8nnlro7A4oJrv2Ylqg7A7qsDOTTwjBLtgd1Gw4DUCtVq7G-jrLK5vMuJxmU8AE2TchoQO41E-ZUT2sCPceSYDWNnQ.M4kS2xM7nDLrFS00.7koxZDZjcWGHpQHND-UQNzhZkiPHPAmqhbD7PCt8SXi3Pm-emcGL19O4UAI4zxWiGpUYIfkVbu_FhEnC_9_BbSUPXri3DdMFrjYgZEzNniPNRtYh9TGN_6knWijCnAwJA-itm4TS6PVcwXZpM5CbtpvRThUsVVY57tou6vu3TfDbsHmepZ2TX5-vWsoNOpo_uJ5Y3aLkc-kH1pAdtjNE2e6sSLE863id5FKISkiVKOpsszT28IXgZ8POdDve-gt7CCKggvToWNaAFqQNhvnc7dvAMDkJm7wt7Fr0MGnx6J7rjQ9DzZlHRa-m-nnVunARpvZ5tHZn5EHHNXxxzJEgPOwYoSHVQmYVDxNzJgX1efM5i5DD_MinMRlj-LSlw5955826TT2hycXCIYicmxL1m8AqHSZMbZhDM2TtZJem7N8WyUDtsT-S6tMqR4qgyLvKzpijKzsc83tEvEdtrq2yx3UL--V7lF13wr1p1dMwamMbX5Z8vclOAJyWXDcO-IDEsTqu6o62VHUef83SCBfGKNPHcch1t_f3oekchFN8DgAOLIU8taOb820xqdkxJpEdfgtHi6G1ynhNwB0jm8Jyy6OWgFNx9K98YG2Bqz_qE1bRjZG0WHl3I94ki9JPSk3lOfvCUCOZupzIhbFxGdDg175qB9_iMwdShXfPr757TjmlfYwjeejf-ONHI-Tb2xUVccLnvxNheIwJcN6qBNwBt8rxgstOVdDncpzFNiq46F_qrE1aZspDFieWf5i-AB4zNGDEDKISt_EBvqIVzhS3FdUK7XXzRRj9o701yNitp0S1OYXZJXQslTDm24ZVSmjO6F3JOxijP2lP8wPThbNbR4bUer3izf23_GEEqYpVwFDhtN3Y.tCFBgp3vHgK70kzp5aMJaA to session2021-03-02 10:21:34.013 DEBUG 7236 --- [nio-8080-exec-6] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:34.014 DEBUG 7236 --- [nio-8080-exec-6] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:34.031 DEBUG 7236 --- [nio-8080-exec-6] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:34.039 DEBUG 7236 --- [nio-8080-exec-6] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:34.042 DEBUG 7236 --- [nio-8080-exec-6] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:34.051 DEBUG 7236 --- [nio-8080-exec-7] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:34.053 DEBUG 7236 --- [nio-8080-exec-7] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:34.064 DEBUG 7236 --- [nio-8080-exec-7] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=DntVPcgMZjLHeMFxjOYFtPD0TjxaIxsSdLnWZln9ONA%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=s5kcE4XmNOQQgKVZj9hOqm6Cl6kg80EHFznw1F1bjLU&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:34.066 DEBUG 7236 --- [nio-8080-exec-7] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:34.077 DEBUG 7236 --- [nio-8080-exec-7] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:34.840 DEBUG 7236 --- [nio-8080-exec-9] o.s.security.web.FilterChainProxy : Securing GET /?state=DntVPcgMZjLHeMFxjOYFtPD0TjxaIxsSdLnWZln9ONA%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.s9i6FhnsQEif0deFPU1cAF2F_Ws5EFTJD8QItHs7q6cVclIROK6ez0d0XsmvFH9sdU0vTpPMrIT496bXlTSh316uEjBT3wS6eqFK5UewLKY8SoC95eKBGi7MgdTlonBZ7rh9IDKa69knYPGK-3_DzdPnS3k9n8uUS-Zv8dB227KnkMT5WdNAhehzxTEfmazSiAVmW5bdCAkNA2QfHnUSyxaM6czry1xMOWqf37ENpQWcrUrCyV-4HQPnyZjSsyMuWH20LMYpRz2z90geOT948D7UPOGqPWxNtvQgp8XHsLA2zU8xX56gXPw3S2LPlhCMCfyDRkRt1YsIYkSW4oDA5g.ITuuQ-bwd7ITCBGJ.4O_H1JXajEMmXr4sptVHtJfXniBpDVIUoK6MKMdERRrgZe7nQmFwWHuxBik7ORnVWR5Kp82kAXiebng4guBczkd-1HUAFC-Kq-FcoAGf5IH6OBBgTccWXivo8CcWcxe2Lr8E-jsEYJnPv_wASncbpJ2AWL7ZIcsv-L6xIonTS_trmxxj_PkRTxhsn-KWTCIv3O52Bl9f3L-nG2kcscWI19U1TmEOFSdPhoPnV8RofbZAXMD_kvN998gv5LqsPd8j-1mJnmMmT_4iAmjw5gF4T4CjWr9uSGEyQ2RQkowXpv-pyTbYngs8XLQmQnWLBQmh_ocYMHmzwbU9uM3PbedJ5ZOsDBokrPUC3W95q7thMFqpER-B7hI_1X9xP-BQvf9O42WN-3Uv9Pnx9GUZamrvcdC2KQpqnUUHvXtqp5lKKjQiz_mDiMsc6HKN4-Oi8Ah3kTJa0uAXcnGrqQQn-HzQa25Rwz1vZZrPJblxhUveQ2XRHqf0apchb2EbQO0npAE_G8VgyI152-AhgGqMFXxbhyO2DmC_PaKo87e6b6LgZkI86tx20PnGQbs14AP9a9oa5XHWGGLv1lIIej7aJHl1xIidpLU2inM6XfXGzmi3ewqSXcf5USNin6S-oTOjZnwg4_9JxGAu2LmmEpOCfiC1YlFs8dcnI1m_GTl-_BxkafAbszOqhQWyTSB3-8-dAmMHMCGQJNSonAqjRyNW9YqAajflIiHmNSMzJNagqfG7LqziZlpYd3ayHK0Q8PIp2s0bKSIjXcBH_JQ4t5Cz8DnCwbUw-PprTS5BK6yVHr1D_Av9-BdbXuoRH05QfEJH0dTwkk_ko4rOptEfksvQrJPxDHXStrgAk-gXdCJFQOgHi2ZYLlwnhA.aAdKLBb0AoiJXq9I_P94CQ2021-03-02 10:21:34.841 DEBUG 7236 --- [nio-8080-exec-9] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:34.847 DEBUG 7236 --- [nio-8080-exec-9] o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous SecurityContext2021-03-02 10:21:34.851 DEBUG 7236 --- [nio-8080-exec-9] o.s.s.w.a.i.FilterSecurityInterceptor : Failed to authorize filter invocation [GET /?state=DntVPcgMZjLHeMFxjOYFtPD0TjxaIxsSdLnWZln9ONA%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.s9i6FhnsQEif0deFPU1cAF2F_Ws5EFTJD8QItHs7q6cVclIROK6ez0d0XsmvFH9sdU0vTpPMrIT496bXlTSh316uEjBT3wS6eqFK5UewLKY8SoC95eKBGi7MgdTlonBZ7rh9IDKa69knYPGK-3_DzdPnS3k9n8uUS-Zv8dB227KnkMT5WdNAhehzxTEfmazSiAVmW5bdCAkNA2QfHnUSyxaM6czry1xMOWqf37ENpQWcrUrCyV-4HQPnyZjSsyMuWH20LMYpRz2z90geOT948D7UPOGqPWxNtvQgp8XHsLA2zU8xX56gXPw3S2LPlhCMCfyDRkRt1YsIYkSW4oDA5g.ITuuQ-bwd7ITCBGJ.4O_H1JXajEMmXr4sptVHtJfXniBpDVIUoK6MKMdERRrgZe7nQmFwWHuxBik7ORnVWR5Kp82kAXiebng4guBczkd-1HUAFC-Kq-FcoAGf5IH6OBBgTccWXivo8CcWcxe2Lr8E-jsEYJnPv_wASncbpJ2AWL7ZIcsv-L6xIonTS_trmxxj_PkRTxhsn-KWTCIv3O52Bl9f3L-nG2kcscWI19U1TmEOFSdPhoPnV8RofbZAXMD_kvN998gv5LqsPd8j-1mJnmMmT_4iAmjw5gF4T4CjWr9uSGEyQ2RQkowXpv-pyTbYngs8XLQmQnWLBQmh_ocYMHmzwbU9uM3PbedJ5ZOsDBokrPUC3W95q7thMFqpER-B7hI_1X9xP-BQvf9O42WN-3Uv9Pnx9GUZamrvcdC2KQpqnUUHvXtqp5lKKjQiz_mDiMsc6HKN4-Oi8Ah3kTJa0uAXcnGrqQQn-HzQa25Rwz1vZZrPJblxhUveQ2XRHqf0apchb2EbQO0npAE_G8VgyI152-AhgGqMFXxbhyO2DmC_PaKo87e6b6LgZkI86tx20PnGQbs14AP9a9oa5XHWGGLv1lIIej7aJHl1xIidpLU2inM6XfXGzmi3ewqSXcf5USNin6S-oTOjZnwg4_9JxGAu2LmmEpOCfiC1YlFs8dcnI1m_GTl-_BxkafAbszOqhQWyTSB3-8-dAmMHMCGQJNSonAqjRyNW9YqAajflIiHmNSMzJNagqfG7LqziZlpYd3ayHK0Q8PIp2s0bKSIjXcBH_JQ4t5Cz8DnCwbUw-PprTS5BK6yVHr1D_Av9-BdbXuoRH05QfEJH0dTwkk_ko4rOptEfksvQrJPxDHXStrgAk-gXdCJFQOgHi2ZYLlwnhA.aAdKLBb0AoiJXq9I_P94CQ] with attributes [authenticated]2021-03-02 10:21:34.853 DEBUG 7236 --- [nio-8080-exec-9] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/?state=DntVPcgMZjLHeMFxjOYFtPD0TjxaIxsSdLnWZln9ONA%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.s9i6FhnsQEif0deFPU1cAF2F_Ws5EFTJD8QItHs7q6cVclIROK6ez0d0XsmvFH9sdU0vTpPMrIT496bXlTSh316uEjBT3wS6eqFK5UewLKY8SoC95eKBGi7MgdTlonBZ7rh9IDKa69knYPGK-3_DzdPnS3k9n8uUS-Zv8dB227KnkMT5WdNAhehzxTEfmazSiAVmW5bdCAkNA2QfHnUSyxaM6czry1xMOWqf37ENpQWcrUrCyV-4HQPnyZjSsyMuWH20LMYpRz2z90geOT948D7UPOGqPWxNtvQgp8XHsLA2zU8xX56gXPw3S2LPlhCMCfyDRkRt1YsIYkSW4oDA5g.ITuuQ-bwd7ITCBGJ.4O_H1JXajEMmXr4sptVHtJfXniBpDVIUoK6MKMdERRrgZe7nQmFwWHuxBik7ORnVWR5Kp82kAXiebng4guBczkd-1HUAFC-Kq-FcoAGf5IH6OBBgTccWXivo8CcWcxe2Lr8E-jsEYJnPv_wASncbpJ2AWL7ZIcsv-L6xIonTS_trmxxj_PkRTxhsn-KWTCIv3O52Bl9f3L-nG2kcscWI19U1TmEOFSdPhoPnV8RofbZAXMD_kvN998gv5LqsPd8j-1mJnmMmT_4iAmjw5gF4T4CjWr9uSGEyQ2RQkowXpv-pyTbYngs8XLQmQnWLBQmh_ocYMHmzwbU9uM3PbedJ5ZOsDBokrPUC3W95q7thMFqpER-B7hI_1X9xP-BQvf9O42WN-3Uv9Pnx9GUZamrvcdC2KQpqnUUHvXtqp5lKKjQiz_mDiMsc6HKN4-Oi8Ah3kTJa0uAXcnGrqQQn-HzQa25Rwz1vZZrPJblxhUveQ2XRHqf0apchb2EbQO0npAE_G8VgyI152-AhgGqMFXxbhyO2DmC_PaKo87e6b6LgZkI86tx20PnGQbs14AP9a9oa5XHWGGLv1lIIej7aJHl1xIidpLU2inM6XfXGzmi3ewqSXcf5USNin6S-oTOjZnwg4_9JxGAu2LmmEpOCfiC1YlFs8dcnI1m_GTl-_BxkafAbszOqhQWyTSB3-8-dAmMHMCGQJNSonAqjRyNW9YqAajflIiHmNSMzJNagqfG7LqziZlpYd3ayHK0Q8PIp2s0bKSIjXcBH_JQ4t5Cz8DnCwbUw-PprTS5BK6yVHr1D_Av9-BdbXuoRH05QfEJH0dTwkk_ko4rOptEfksvQrJPxDHXStrgAk-gXdCJFQOgHi2ZYLlwnhA.aAdKLBb0AoiJXq9I_P94CQ to session2021-03-02 10:21:34.854 DEBUG 7236 --- [nio-8080-exec-9] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:34.875 DEBUG 7236 --- [nio-8080-exec-9] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:34.876 DEBUG 7236 --- [nio-8080-exec-9] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:34.881 DEBUG 7236 --- [nio-8080-exec-9] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:34.882 DEBUG 7236 --- [nio-8080-exec-9] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:34.890 DEBUG 7236 --- [io-8080-exec-10] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:34.890 DEBUG 7236 --- [io-8080-exec-10] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:34.892 DEBUG 7236 --- [io-8080-exec-10] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=ZCrEZCTQSE_c9g9ONq2FgFitZb3XzLs56YCYVD7lOi0%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=TB0QnFLoVOivPSHQ0dvnrAOcLh9i9bl0NsSJcK440GM&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:34.902 DEBUG 7236 --- [io-8080-exec-10] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:34.906 DEBUG 7236 --- [io-8080-exec-10] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:35.696 DEBUG 7236 --- [nio-8080-exec-2] o.s.security.web.FilterChainProxy : Securing GET /?state=ZCrEZCTQSE_c9g9ONq2FgFitZb3XzLs56YCYVD7lOi0%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.wSqCdThe5g0Q5oVaqXu70Y_7JErDR2BAP1dMhqFjBKnSsVhBsghuduriDLHZK0yTcH71efppCsWLT_i4oWeGyBm3zR7zUuh5NZ_ceDbl6tE2SJjaP8JAXn-qzxor5db4jqdVw7rOqco4ZuedAA_qJH9CqFShrGuRC0QSyrhTUYCgdIrrUNAZ4KDA39PdNboGJDyinHFyrkgmByDcinzemB8ouxIVMyucYu2JI4hAP8Ku3XmzMEhlXNQzsNBe8ITI7UlOpXuBNtJuT8xkUd8qBkLoPS4pWA9vAUA6_Bwh8Psbmw4u0BddKJR1gnLBvNEN4yE3bBg85PO-1_5csuOxZA.PnaUrGpe4co-u1Kr.CRcILTJfrVa2eTp9-e1--Ujq9v86Kwd1WhUOt4JmhiLaLWiGQopTGb7mQFEeSMec3o2ETX8v6tjup_6gtUUFZ5fGERMIJu19u8G27X2uxaNVsRyJzh0jYAJbDZEosQCPc_N3NKc_0ntaZwat4-K6nd4TmENgJRiWdlPjeNyI34WhBAGESazuy04CPtQn72fQaN4IlA0w28HS8uagD4t1RdIgKxJAtTFAuL6I341gJntjUd1SiJwQGd0OGtQtLAhcT1Dc5mg_IGvdaVvXMIp_hRUL3KULuZ0BVl2klTodBgRD4bEVn_BcHxJ7wBsM0C2JFWSajCLRZ5olV8acHo5Ihu-rqLz5S7fQZh-Rx87wn2Xy-xx5EkY8BEggn1RjlKthpvpBH02fSBZuv9OQQpd5sWrDBqYhitbxnWB9e43cGRJr2OakCG-lOo-ynyxX6jwz7DHECL8FDvAbbEUol-6WeegpwoJZ2PYGLSk_n5RnkOOLiErDLyLVsf6_COuwbydXv4L_ox4UK2VL-SOtWRU52vJnwl-RnMw9hXQ81oVJXursH54vYAj0cECCiiKAn2ssDlLwZVCQr79nBKtZQUG5VDV4cebaz9Q26fuCcqBqmxfkUxMP-rwW-p0bVbLpqN-6h-zGjtwgD7wVK6d7ZRo_77EoWSEFt3yRR2ED4g_dlnvGUurtSYnw11EgCxHVotiu4XRe89F321FjoTPfN-GGiGDcZXmM9Sox656kNnL03CSYaDDgC9hVXWobMV_KI4wWB_BN2D1CAwPPvM5ACftNoBAWssSQLj7jCCw1neRNH7ZNpWyNrDxbVj0TLO7GaEvqD-XbVUvSSIcSd1bZfJfs58bc48j_0UNUOpWFgc0.1rD0K6DLKATu08i_eLiXgg2021-03-02 10:21:35.696 DEBUG 7236 --- [nio-8080-exec-2] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:35.702 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous SecurityContext2021-03-02 10:21:35.705 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.w.a.i.FilterSecurityInterceptor : Failed to authorize filter invocation [GET /?state=ZCrEZCTQSE_c9g9ONq2FgFitZb3XzLs56YCYVD7lOi0%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.wSqCdThe5g0Q5oVaqXu70Y_7JErDR2BAP1dMhqFjBKnSsVhBsghuduriDLHZK0yTcH71efppCsWLT_i4oWeGyBm3zR7zUuh5NZ_ceDbl6tE2SJjaP8JAXn-qzxor5db4jqdVw7rOqco4ZuedAA_qJH9CqFShrGuRC0QSyrhTUYCgdIrrUNAZ4KDA39PdNboGJDyinHFyrkgmByDcinzemB8ouxIVMyucYu2JI4hAP8Ku3XmzMEhlXNQzsNBe8ITI7UlOpXuBNtJuT8xkUd8qBkLoPS4pWA9vAUA6_Bwh8Psbmw4u0BddKJR1gnLBvNEN4yE3bBg85PO-1_5csuOxZA.PnaUrGpe4co-u1Kr.CRcILTJfrVa2eTp9-e1--Ujq9v86Kwd1WhUOt4JmhiLaLWiGQopTGb7mQFEeSMec3o2ETX8v6tjup_6gtUUFZ5fGERMIJu19u8G27X2uxaNVsRyJzh0jYAJbDZEosQCPc_N3NKc_0ntaZwat4-K6nd4TmENgJRiWdlPjeNyI34WhBAGESazuy04CPtQn72fQaN4IlA0w28HS8uagD4t1RdIgKxJAtTFAuL6I341gJntjUd1SiJwQGd0OGtQtLAhcT1Dc5mg_IGvdaVvXMIp_hRUL3KULuZ0BVl2klTodBgRD4bEVn_BcHxJ7wBsM0C2JFWSajCLRZ5olV8acHo5Ihu-rqLz5S7fQZh-Rx87wn2Xy-xx5EkY8BEggn1RjlKthpvpBH02fSBZuv9OQQpd5sWrDBqYhitbxnWB9e43cGRJr2OakCG-lOo-ynyxX6jwz7DHECL8FDvAbbEUol-6WeegpwoJZ2PYGLSk_n5RnkOOLiErDLyLVsf6_COuwbydXv4L_ox4UK2VL-SOtWRU52vJnwl-RnMw9hXQ81oVJXursH54vYAj0cECCiiKAn2ssDlLwZVCQr79nBKtZQUG5VDV4cebaz9Q26fuCcqBqmxfkUxMP-rwW-p0bVbLpqN-6h-zGjtwgD7wVK6d7ZRo_77EoWSEFt3yRR2ED4g_dlnvGUurtSYnw11EgCxHVotiu4XRe89F321FjoTPfN-GGiGDcZXmM9Sox656kNnL03CSYaDDgC9hVXWobMV_KI4wWB_BN2D1CAwPPvM5ACftNoBAWssSQLj7jCCw1neRNH7ZNpWyNrDxbVj0TLO7GaEvqD-XbVUvSSIcSd1bZfJfs58bc48j_0UNUOpWFgc0.1rD0K6DLKATu08i_eLiXgg] with attributes [authenticated]2021-03-02 10:21:35.709 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/?state=ZCrEZCTQSE_c9g9ONq2FgFitZb3XzLs56YCYVD7lOi0%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.wSqCdThe5g0Q5oVaqXu70Y_7JErDR2BAP1dMhqFjBKnSsVhBsghuduriDLHZK0yTcH71efppCsWLT_i4oWeGyBm3zR7zUuh5NZ_ceDbl6tE2SJjaP8JAXn-qzxor5db4jqdVw7rOqco4ZuedAA_qJH9CqFShrGuRC0QSyrhTUYCgdIrrUNAZ4KDA39PdNboGJDyinHFyrkgmByDcinzemB8ouxIVMyucYu2JI4hAP8Ku3XmzMEhlXNQzsNBe8ITI7UlOpXuBNtJuT8xkUd8qBkLoPS4pWA9vAUA6_Bwh8Psbmw4u0BddKJR1gnLBvNEN4yE3bBg85PO-1_5csuOxZA.PnaUrGpe4co-u1Kr.CRcILTJfrVa2eTp9-e1--Ujq9v86Kwd1WhUOt4JmhiLaLWiGQopTGb7mQFEeSMec3o2ETX8v6tjup_6gtUUFZ5fGERMIJu19u8G27X2uxaNVsRyJzh0jYAJbDZEosQCPc_N3NKc_0ntaZwat4-K6nd4TmENgJRiWdlPjeNyI34WhBAGESazuy04CPtQn72fQaN4IlA0w28HS8uagD4t1RdIgKxJAtTFAuL6I341gJntjUd1SiJwQGd0OGtQtLAhcT1Dc5mg_IGvdaVvXMIp_hRUL3KULuZ0BVl2klTodBgRD4bEVn_BcHxJ7wBsM0C2JFWSajCLRZ5olV8acHo5Ihu-rqLz5S7fQZh-Rx87wn2Xy-xx5EkY8BEggn1RjlKthpvpBH02fSBZuv9OQQpd5sWrDBqYhitbxnWB9e43cGRJr2OakCG-lOo-ynyxX6jwz7DHECL8FDvAbbEUol-6WeegpwoJZ2PYGLSk_n5RnkOOLiErDLyLVsf6_COuwbydXv4L_ox4UK2VL-SOtWRU52vJnwl-RnMw9hXQ81oVJXursH54vYAj0cECCiiKAn2ssDlLwZVCQr79nBKtZQUG5VDV4cebaz9Q26fuCcqBqmxfkUxMP-rwW-p0bVbLpqN-6h-zGjtwgD7wVK6d7ZRo_77EoWSEFt3yRR2ED4g_dlnvGUurtSYnw11EgCxHVotiu4XRe89F321FjoTPfN-GGiGDcZXmM9Sox656kNnL03CSYaDDgC9hVXWobMV_KI4wWB_BN2D1CAwPPvM5ACftNoBAWssSQLj7jCCw1neRNH7ZNpWyNrDxbVj0TLO7GaEvqD-XbVUvSSIcSd1bZfJfs58bc48j_0UNUOpWFgc0.1rD0K6DLKATu08i_eLiXgg to session2021-03-02 10:21:35.717 DEBUG 7236 --- [nio-8080-exec-2] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:35.717 DEBUG 7236 --- [nio-8080-exec-2] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:35.721 DEBUG 7236 --- [nio-8080-exec-2] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:35.722 DEBUG 7236 --- [nio-8080-exec-2] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:35.734 DEBUG 7236 --- [nio-8080-exec-2] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:35.747 DEBUG 7236 --- [nio-8080-exec-4] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:35.748 DEBUG 7236 --- [nio-8080-exec-4] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:35.750 DEBUG 7236 --- [nio-8080-exec-4] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=DUqaCNqab85h99qfAsMylJGz8TpML0HI4Mq1pwQKk0o%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=sFrakSF_6ou8krv_iUZzXAX7W5iuZZA09M_o1KrBWzw&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:35.751 DEBUG 7236 --- [nio-8080-exec-4] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:35.757 DEBUG 7236 --- [nio-8080-exec-4] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:36.743 DEBUG 7236 --- [nio-8080-exec-5] o.s.security.web.FilterChainProxy : Securing GET /?state=DUqaCNqab85h99qfAsMylJGz8TpML0HI4Mq1pwQKk0o%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.OfCoITVCBUn2owNv21xb3uHz4a3Ss8b1ITsCy0_1xeQ_ZFHq6Ou2A3xeHfabP9hkqsVOFwpe2oN6bD8ze_WapDvZTdjWToB181Pze8rpG0giI_5y50BGMmYc50lx3CJIsyta5uDrk07LYM2XBAJgxeZ3utazMdWezUBYgeimLQDh5p46zxSnRPk4ldwokJXFSipJNG9F0OnDggC5K4O8fgewiGIjOYqc6mWWeGJEwxrtLE3CSjydWXbHys3jyeE5mNrQhrwoUKYyidPbvqshhp-Ic4Bb-m9_61LkTt43tDs4OjhAyUvvQEm9i0bXcEAlbyXLeZ0hbg293cQYqvcL5Q.JOchQHqcEUGr7Shr.STHovI79VwkZ4uVmbMZtV-m5wUikW6RBzxGu3FgFanvXczoIpWYphapkpsILi2W7nb9vtmM9ECa2zcQgSaMyMqo5kulBTOVr2rg3SidZ1TsXYYx_Al4Jk3vFbSDayUCNaeAR9AOWipUUfRvgq-KlIx9mT8grRB44l5CZrp8SHSW2qMO6IekPCjJ7wM0ZId-P71NdPy4ggf7-ixkW4FbGBn5T3sLUyQk0lQAoqMUeaBp1WBM59vi0Or5XmQq1TCBrN8KaIl5yX67R55082PylknydhhbmImSj29J500QP6yi66iH9XMDLWNaSyrgZH-cohKWDybhIc4DsmmZdjd1dcLvq_816XB-6rqEYddybSbufZdvMay95Txo1G5s2Dv5sw1dNdIGbRr5hAUV_XIV20HLCHKSJ3VNNrw5SeviouBzfpMRMtK-wmk69qSvOR6V0SuvfAWAV8WW_EK6LI9HB5Nu9lTtzJcXEwDXeiMLuJYpNSgSeikto0KNbxtTeRpiQfP_eKN7MVK3syiJeJHPaOWCO2OczlYQL13k1hfeXssc_jWAVAsuXMeM6EVpUqRfojUp5vF0O5009zY1zpzdMi6_OgMIfn5mGTbsMWCfRTy4EYGjogYn1AcI4la-sv0bdVmIcEKi1kGdVoFItBND1rYlvQNqhR2agXlZiIciKpLgzQ6vVE6GNFwQzuNJvT_yGO9Kvoqmpz7fcUWLiI3VXoEAv5A-LTg8J6SAnZczw9p6Yugs1_Vui08Fra4LDcyeCqOg9WhpFpyM72TCCvo-kO7pfL19tp_qrxZ_S8AZ0u0vRPnlOmI49y_tjT6_qCacDlON46qmlInpYBU5O-XXpp0sB-sLly4ikWz5B7RY_5J-0hw.NCHnDGmo-kK7-_5ZKvnyKg2021-03-02 10:21:36.744 DEBUG 7236 --- [nio-8080-exec-5] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:36.749 DEBUG 7236 --- [nio-8080-exec-5] o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous SecurityContext2021-03-02 10:21:36.754 DEBUG 7236 --- [nio-8080-exec-5] o.s.s.w.a.i.FilterSecurityInterceptor : Failed to authorize filter invocation [GET /?state=DUqaCNqab85h99qfAsMylJGz8TpML0HI4Mq1pwQKk0o%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.OfCoITVCBUn2owNv21xb3uHz4a3Ss8b1ITsCy0_1xeQ_ZFHq6Ou2A3xeHfabP9hkqsVOFwpe2oN6bD8ze_WapDvZTdjWToB181Pze8rpG0giI_5y50BGMmYc50lx3CJIsyta5uDrk07LYM2XBAJgxeZ3utazMdWezUBYgeimLQDh5p46zxSnRPk4ldwokJXFSipJNG9F0OnDggC5K4O8fgewiGIjOYqc6mWWeGJEwxrtLE3CSjydWXbHys3jyeE5mNrQhrwoUKYyidPbvqshhp-Ic4Bb-m9_61LkTt43tDs4OjhAyUvvQEm9i0bXcEAlbyXLeZ0hbg293cQYqvcL5Q.JOchQHqcEUGr7Shr.STHovI79VwkZ4uVmbMZtV-m5wUikW6RBzxGu3FgFanvXczoIpWYphapkpsILi2W7nb9vtmM9ECa2zcQgSaMyMqo5kulBTOVr2rg3SidZ1TsXYYx_Al4Jk3vFbSDayUCNaeAR9AOWipUUfRvgq-KlIx9mT8grRB44l5CZrp8SHSW2qMO6IekPCjJ7wM0ZId-P71NdPy4ggf7-ixkW4FbGBn5T3sLUyQk0lQAoqMUeaBp1WBM59vi0Or5XmQq1TCBrN8KaIl5yX67R55082PylknydhhbmImSj29J500QP6yi66iH9XMDLWNaSyrgZH-cohKWDybhIc4DsmmZdjd1dcLvq_816XB-6rqEYddybSbufZdvMay95Txo1G5s2Dv5sw1dNdIGbRr5hAUV_XIV20HLCHKSJ3VNNrw5SeviouBzfpMRMtK-wmk69qSvOR6V0SuvfAWAV8WW_EK6LI9HB5Nu9lTtzJcXEwDXeiMLuJYpNSgSeikto0KNbxtTeRpiQfP_eKN7MVK3syiJeJHPaOWCO2OczlYQL13k1hfeXssc_jWAVAsuXMeM6EVpUqRfojUp5vF0O5009zY1zpzdMi6_OgMIfn5mGTbsMWCfRTy4EYGjogYn1AcI4la-sv0bdVmIcEKi1kGdVoFItBND1rYlvQNqhR2agXlZiIciKpLgzQ6vVE6GNFwQzuNJvT_yGO9Kvoqmpz7fcUWLiI3VXoEAv5A-LTg8J6SAnZczw9p6Yugs1_Vui08Fra4LDcyeCqOg9WhpFpyM72TCCvo-kO7pfL19tp_qrxZ_S8AZ0u0vRPnlOmI49y_tjT6_qCacDlON46qmlInpYBU5O-XXpp0sB-sLly4ikWz5B7RY_5J-0hw.NCHnDGmo-kK7-_5ZKvnyKg] with attributes [authenticated]2021-03-02 10:21:36.756 DEBUG 7236 --- [nio-8080-exec-5] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/?state=DUqaCNqab85h99qfAsMylJGz8TpML0HI4Mq1pwQKk0o%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.OfCoITVCBUn2owNv21xb3uHz4a3Ss8b1ITsCy0_1xeQ_ZFHq6Ou2A3xeHfabP9hkqsVOFwpe2oN6bD8ze_WapDvZTdjWToB181Pze8rpG0giI_5y50BGMmYc50lx3CJIsyta5uDrk07LYM2XBAJgxeZ3utazMdWezUBYgeimLQDh5p46zxSnRPk4ldwokJXFSipJNG9F0OnDggC5K4O8fgewiGIjOYqc6mWWeGJEwxrtLE3CSjydWXbHys3jyeE5mNrQhrwoUKYyidPbvqshhp-Ic4Bb-m9_61LkTt43tDs4OjhAyUvvQEm9i0bXcEAlbyXLeZ0hbg293cQYqvcL5Q.JOchQHqcEUGr7Shr.STHovI79VwkZ4uVmbMZtV-m5wUikW6RBzxGu3FgFanvXczoIpWYphapkpsILi2W7nb9vtmM9ECa2zcQgSaMyMqo5kulBTOVr2rg3SidZ1TsXYYx_Al4Jk3vFbSDayUCNaeAR9AOWipUUfRvgq-KlIx9mT8grRB44l5CZrp8SHSW2qMO6IekPCjJ7wM0ZId-P71NdPy4ggf7-ixkW4FbGBn5T3sLUyQk0lQAoqMUeaBp1WBM59vi0Or5XmQq1TCBrN8KaIl5yX67R55082PylknydhhbmImSj29J500QP6yi66iH9XMDLWNaSyrgZH-cohKWDybhIc4DsmmZdjd1dcLvq_816XB-6rqEYddybSbufZdvMay95Txo1G5s2Dv5sw1dNdIGbRr5hAUV_XIV20HLCHKSJ3VNNrw5SeviouBzfpMRMtK-wmk69qSvOR6V0SuvfAWAV8WW_EK6LI9HB5Nu9lTtzJcXEwDXeiMLuJYpNSgSeikto0KNbxtTeRpiQfP_eKN7MVK3syiJeJHPaOWCO2OczlYQL13k1hfeXssc_jWAVAsuXMeM6EVpUqRfojUp5vF0O5009zY1zpzdMi6_OgMIfn5mGTbsMWCfRTy4EYGjogYn1AcI4la-sv0bdVmIcEKi1kGdVoFItBND1rYlvQNqhR2agXlZiIciKpLgzQ6vVE6GNFwQzuNJvT_yGO9Kvoqmpz7fcUWLiI3VXoEAv5A-LTg8J6SAnZczw9p6Yugs1_Vui08Fra4LDcyeCqOg9WhpFpyM72TCCvo-kO7pfL19tp_qrxZ_S8AZ0u0vRPnlOmI49y_tjT6_qCacDlON46qmlInpYBU5O-XXpp0sB-sLly4ikWz5B7RY_5J-0hw.NCHnDGmo-kK7-_5ZKvnyKg to session2021-03-02 10:21:36.768 DEBUG 7236 --- [nio-8080-exec-5] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:36.777 DEBUG 7236 --- [nio-8080-exec-5] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:36.782 DEBUG 7236 --- [nio-8080-exec-5] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:36.782 DEBUG 7236 --- [nio-8080-exec-5] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:36.782 DEBUG 7236 --- [nio-8080-exec-5] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:36.791 DEBUG 7236 --- [nio-8080-exec-6] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:36.792 DEBUG 7236 --- [nio-8080-exec-6] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:36.794 DEBUG 7236 --- [nio-8080-exec-6] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=nWoiLj-hpOae2CD0bxSfR7l53YfGc4fAl1OnvvYKlcI%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=lN9dhSe4pnpHGSi-6HFf3PI2CIhhVtpl1CQ1FbU8_ks&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:36.801 DEBUG 7236 --- [nio-8080-exec-6] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:36.805 DEBUG 7236 --- [nio-8080-exec-6] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:37.795 DEBUG 7236 --- [nio-8080-exec-8] o.s.security.web.FilterChainProxy : Securing GET /?state=nWoiLj-hpOae2CD0bxSfR7l53YfGc4fAl1OnvvYKlcI%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.EUNXeT2KWNP2WzUQvTGwPQcO1htQOAZ4vkSVEyFWMMKuWi1kAPQsW2t5ACVi2-zI_73Dt4s51u4WvGLHbza3aLRmwylqsxDPclPwFS8nW7lDrnZGG3bywWzhp3EZ4zyvq8weTfiI0y59cRvh4BCc9WdpyzyWT4HsnI1ADtO8ZEln-C39LCj1-4RSpsjLXdN3qdagjqJM5GjsjJ7IyQ4zmL3BF4IvlBtjUhIhWJtd03meZFpixjGntSQhfJpp_x381e8nTi6oakG9YMsWHrAlbd-hLFgP5jU9VqFRr2mkpMxl012Bf5ILtilcKh7YFPet1pRlpepTrxnl8k-zd_4N4g.XJXdNnrF9O7YtFjM.J40BK29PLF9Y2AmmbMh5C9jfwZyPFRM9WuoQ0jlGoIGSoto7BFRFuEXnFHpPS5eXxmV96s05wsu6ZLjmj5G1J_mPJzp4FE3sVlelF4aQ5x6xAxImn5Yvdu-OyqJHCYFNW6kMx5y92UW-OTdF27kRx1dHb3InKJ0z9hpoVGB7IQU1Srj2iABU9HfSpUeVJAAm2GJw1iNu22_BuRwndw8jmIgJ0YLBOEDgeewzk2XNdeRLqrL3dV58sEU5OhGmYNeQH93AuwiODl-tHFVBpRqqjJ-0LLvX94vf5bjHXCFPvW0CbeVlCl5fUN2o3ZDS4k0vao32nXOTs11EeEbmZ-AEKJ777HQndS9jTEoptX3PCTseMl1vDJoMNyRBonCCpPjIcITKI3lMMfV_EIqEswVwkxIXllVlIcEjjfT1zl3nyIEgWJBYkYyBzfmF9jCt9XPmXN8VI145RduxUGsKaY63C0dAvIsZaIP2LBuyAxeoF6XZjDxn2bKMp_uRGZSoB3eH4-S8z3JQ8dPrEGH9ae6t-xAnaOfwYSMxr5iIDejj99N1upLHwh0_bmoJMrMD-B25H6Tfp72vR5JfQ0K3oz3ce9Ep1xvn582_0j__OMSHUls1Gm10lcVLVXRkfops8mdAcM9XVBbD7Pn1Bx66M05jzubZArl_C-eRFCy5HQfMoNY5XF5MwywOG_DIVc_YMLE9wlCGnpoGhTIiu5gjD9XK_nO8gyjNY0rERVwXyZxaW8bWrfb2g__djrxeZxireLMPNQXQSpmGNX9w31G-R377xSJtBZphmnaSyVxt9FQt0fd8m49zOa0IG44XX6Jo8708qGxfrCFxMtPF8zdLOSeGqBWazkSaT-9qT0cZ9RbYmC4.aG6NJNPrB3JRqKqVPrwDIg2021-03-02 10:21:37.796 DEBUG 7236 --- [nio-8080-exec-8] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:37.806 DEBUG 7236 --- [nio-8080-exec-8] o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous SecurityContext2021-03-02 10:21:37.809 DEBUG 7236 --- [nio-8080-exec-8] o.s.s.w.a.i.FilterSecurityInterceptor : Failed to authorize filter invocation [GET /?state=nWoiLj-hpOae2CD0bxSfR7l53YfGc4fAl1OnvvYKlcI%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.EUNXeT2KWNP2WzUQvTGwPQcO1htQOAZ4vkSVEyFWMMKuWi1kAPQsW2t5ACVi2-zI_73Dt4s51u4WvGLHbza3aLRmwylqsxDPclPwFS8nW7lDrnZGG3bywWzhp3EZ4zyvq8weTfiI0y59cRvh4BCc9WdpyzyWT4HsnI1ADtO8ZEln-C39LCj1-4RSpsjLXdN3qdagjqJM5GjsjJ7IyQ4zmL3BF4IvlBtjUhIhWJtd03meZFpixjGntSQhfJpp_x381e8nTi6oakG9YMsWHrAlbd-hLFgP5jU9VqFRr2mkpMxl012Bf5ILtilcKh7YFPet1pRlpepTrxnl8k-zd_4N4g.XJXdNnrF9O7YtFjM.J40BK29PLF9Y2AmmbMh5C9jfwZyPFRM9WuoQ0jlGoIGSoto7BFRFuEXnFHpPS5eXxmV96s05wsu6ZLjmj5G1J_mPJzp4FE3sVlelF4aQ5x6xAxImn5Yvdu-OyqJHCYFNW6kMx5y92UW-OTdF27kRx1dHb3InKJ0z9hpoVGB7IQU1Srj2iABU9HfSpUeVJAAm2GJw1iNu22_BuRwndw8jmIgJ0YLBOEDgeewzk2XNdeRLqrL3dV58sEU5OhGmYNeQH93AuwiODl-tHFVBpRqqjJ-0LLvX94vf5bjHXCFPvW0CbeVlCl5fUN2o3ZDS4k0vao32nXOTs11EeEbmZ-AEKJ777HQndS9jTEoptX3PCTseMl1vDJoMNyRBonCCpPjIcITKI3lMMfV_EIqEswVwkxIXllVlIcEjjfT1zl3nyIEgWJBYkYyBzfmF9jCt9XPmXN8VI145RduxUGsKaY63C0dAvIsZaIP2LBuyAxeoF6XZjDxn2bKMp_uRGZSoB3eH4-S8z3JQ8dPrEGH9ae6t-xAnaOfwYSMxr5iIDejj99N1upLHwh0_bmoJMrMD-B25H6Tfp72vR5JfQ0K3oz3ce9Ep1xvn582_0j__OMSHUls1Gm10lcVLVXRkfops8mdAcM9XVBbD7Pn1Bx66M05jzubZArl_C-eRFCy5HQfMoNY5XF5MwywOG_DIVc_YMLE9wlCGnpoGhTIiu5gjD9XK_nO8gyjNY0rERVwXyZxaW8bWrfb2g__djrxeZxireLMPNQXQSpmGNX9w31G-R377xSJtBZphmnaSyVxt9FQt0fd8m49zOa0IG44XX6Jo8708qGxfrCFxMtPF8zdLOSeGqBWazkSaT-9qT0cZ9RbYmC4.aG6NJNPrB3JRqKqVPrwDIg] with attributes [authenticated]2021-03-02 10:21:37.811 DEBUG 7236 --- [nio-8080-exec-8] o.s.s.w.s.HttpSessionRequestCache : Saved request http://localhost:8080/b2cboot/?state=nWoiLj-hpOae2CD0bxSfR7l53YfGc4fAl1OnvvYKlcI%3d&code=eyJraWQiOiJONGxDSjJoU254QUxoLUdMZ0ZCZDFCVmh3NldiUjRrU0ZUZ2l0N1ViaFNVIiwidmVyIjoiMS4wIiwiemlwIjoiRGVmbGF0ZSIsInNlciI6IjEuMCJ9.EUNXeT2KWNP2WzUQvTGwPQcO1htQOAZ4vkSVEyFWMMKuWi1kAPQsW2t5ACVi2-zI_73Dt4s51u4WvGLHbza3aLRmwylqsxDPclPwFS8nW7lDrnZGG3bywWzhp3EZ4zyvq8weTfiI0y59cRvh4BCc9WdpyzyWT4HsnI1ADtO8ZEln-C39LCj1-4RSpsjLXdN3qdagjqJM5GjsjJ7IyQ4zmL3BF4IvlBtjUhIhWJtd03meZFpixjGntSQhfJpp_x381e8nTi6oakG9YMsWHrAlbd-hLFgP5jU9VqFRr2mkpMxl012Bf5ILtilcKh7YFPet1pRlpepTrxnl8k-zd_4N4g.XJXdNnrF9O7YtFjM.J40BK29PLF9Y2AmmbMh5C9jfwZyPFRM9WuoQ0jlGoIGSoto7BFRFuEXnFHpPS5eXxmV96s05wsu6ZLjmj5G1J_mPJzp4FE3sVlelF4aQ5x6xAxImn5Yvdu-OyqJHCYFNW6kMx5y92UW-OTdF27kRx1dHb3InKJ0z9hpoVGB7IQU1Srj2iABU9HfSpUeVJAAm2GJw1iNu22_BuRwndw8jmIgJ0YLBOEDgeewzk2XNdeRLqrL3dV58sEU5OhGmYNeQH93AuwiODl-tHFVBpRqqjJ-0LLvX94vf5bjHXCFPvW0CbeVlCl5fUN2o3ZDS4k0vao32nXOTs11EeEbmZ-AEKJ777HQndS9jTEoptX3PCTseMl1vDJoMNyRBonCCpPjIcITKI3lMMfV_EIqEswVwkxIXllVlIcEjjfT1zl3nyIEgWJBYkYyBzfmF9jCt9XPmXN8VI145RduxUGsKaY63C0dAvIsZaIP2LBuyAxeoF6XZjDxn2bKMp_uRGZSoB3eH4-S8z3JQ8dPrEGH9ae6t-xAnaOfwYSMxr5iIDejj99N1upLHwh0_bmoJMrMD-B25H6Tfp72vR5JfQ0K3oz3ce9Ep1xvn582_0j__OMSHUls1Gm10lcVLVXRkfops8mdAcM9XVBbD7Pn1Bx66M05jzubZArl_C-eRFCy5HQfMoNY5XF5MwywOG_DIVc_YMLE9wlCGnpoGhTIiu5gjD9XK_nO8gyjNY0rERVwXyZxaW8bWrfb2g__djrxeZxireLMPNQXQSpmGNX9w31G-R377xSJtBZphmnaSyVxt9FQt0fd8m49zOa0IG44XX6Jo8708qGxfrCFxMtPF8zdLOSeGqBWazkSaT-9qT0cZ9RbYmC4.aG6NJNPrB3JRqKqVPrwDIg to session2021-03-02 10:21:37.812 DEBUG 7236 --- [nio-8080-exec-8] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], Not [And [Or [Ant [pattern='/login'], Ant [pattern='/favicon.ico']], And [Not [RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@3cae69bf, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]]]2021-03-02 10:21:37.813 DEBUG 7236 --- [nio-8080-exec-8] s.w.a.DelegatingAuthenticationEntryPoint : Match found! Executing org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint@11c34f862021-03-02 10:21:37.824 DEBUG 7236 --- [nio-8080-exec-8] o.s.s.web.DefaultRedirectStrategy : Redirecting to http://localhost:8080/b2cboot/oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:37.835 DEBUG 7236 --- [nio-8080-exec-8] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:37.839 DEBUG 7236 --- [nio-8080-exec-8] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request2021-03-02 10:21:37.844 DEBUG 7236 --- [nio-8080-exec-9] o.s.security.web.FilterChainProxy : Securing GET /oauth2/authorization/B2C_1A_saml_MercNet2021-03-02 10:21:37.844 DEBUG 7236 --- [nio-8080-exec-9] s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty SecurityContext2021-03-02 10:21:37.847 DEBUG 7236 --- [nio-8080-exec-9] o.s.s.web.DefaultRedirectStrategy : Redirecting to https://brunswickb2cdev.b2clogin.com/brunswickb2cdev.onmicrosoft.com/oauth2/v2.0/authorize?response_type=code&client_id=be06bada-73ca-4a48-b035-907462da812f&scope=be06bada-73ca-4a48-b035-907462da812f%20openid&state=qYfkZvXn1fCEUB2vgc0ahZrJtPsSVfoCRnptdu40l_c%3D&redirect_uri=http://localhost:8080/b2cboot&nonce=wmW4Du-Ictuy0SXZUdmlivPQ4tYXknOF3y3Sq-hhM9M&p=B2C_1A_saml_MercNet&x-client-SKU=spring-boot-starter2021-03-02 10:21:37.850 DEBUG 7236 --- [nio-8080-exec-9] w.c.HttpSessionSecurityContextRepository : Did not store empty SecurityContext2021-03-02 10:21:37.853 DEBUG 7236 --- [nio-8080-exec-9] s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to complete request
On Monday, March 1, 2021, 11:05:24 PM CST, zhihaoguo <[email protected]> wrote:
@drhae
hi, can you run the war file on your local machine,
If you are using chrome, maybe you can open click F12 to open Chrome DevTools to see the response.
if the authentication loops, please give some detailed messages about the request and response.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Hi, @drhae |
On Wednesday, March 3, 2021, 02:16:06 AM CST, Xiaobing Zhu <[email protected]> wrote:
Hi, @drhae
Could you please send a screenshot of the reply url on the portal?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Closing this issure because no response from the customer. If you have any problems, please open again. |
Mitryakh/network 2022 01 01 (Azure#19412) * Adds base for updating Microsoft.Network from version stable/2021-08-01 to version 2022-01-01 * Updates readme * Updates API version in new specs and examples * Updated Explicit proxy settings by adding one boolean field to it (Azure#19011) * API for provider port (Azure#19041) * Update readme.md * Create expressRouteProviderPort.json * Create expressRouteProviderPortList.json * Create expressRouteProviderPort.json * Update custom-words.txt * Update expressRouteProviderPort.json * Update expressRouteProviderPortList.json * Update expressRouteProviderPort.json * Add WAF match variable operators (Azure#18925) ### webapplicationfirewall.json * Add GreaterThanOrEquals operator and Any operator to custom rule match conditions in WAF policy spec * Add VirtualHub Router autoscale configuration (Azure#19131) Co-authored-by: Andrii Kalinichenko <[email protected]> * Adding rule priority to Tls Proxy routing rule object model (Azure#19135) Co-authored-by: Vinay Mundada <[email protected]> * swagger changes for new ssl policies (Azure#19183) * Update Swagger Spec for VMSS Packet Capture (Azure#19202) * Update Swagger Spec for VMSS Packet Capture * Remove extra line * Update Swagger spec for Connection Monitor VMSS (Azure#19203) * Adding new endpoint in ConnectionMonitor * Changing ConnectionMonitor endpoints order * Add flushConnection to NSG (Azure#19085) * Merge NetworkManger into 2022-01-01 (Azure#19169) * Merge NetworkManger into 2022-01-01 * Remove EffectiveVnet APIs * Remove SecurityUser Resource * update readme * Fix as comments * fix as comments * remove network group type * Add new parameter noInternetAdvertise to CustomIPPrefix (Azure#19340) * fix * fix Co-authored-by: Weiheng Li <[email protected]> * Route Server Integration feature swagger changes (Azure#19215) * Route Server Integration feature swagger changes * prettier run changes * updating api version in examples file * fixing test errors * fixing test errors * fixing modelvalidation errors * fixing test errors * fixing modelvalidation errors * changes based on review comments * fixing lintdiff failure * updating examples * update wrong enum value for customipprefix (Azure#19382) * fix * fix * fix Co-authored-by: Weiheng Li <[email protected]> * Updated ExplicitProxySettings to ExplicitProxy on Firewall Policy ver2022-01-01 (Azure#19299) Co-authored-by: Gizachew Eshetie <[email protected]> * Add resource type (Azure#19434) Co-authored-by: Andrii Kalinichenko <[email protected]> * Fix prettier errors (Azure#19462) Co-authored-by: Andrii Kalinichenko <[email protected]> Co-authored-by: uditmisra52 <[email protected]> Co-authored-by: jashsing-mic <[email protected]> Co-authored-by: Anurag Kishore <[email protected]> Co-authored-by: AndriiKalinichenko <[email protected]> Co-authored-by: Andrii Kalinichenko <[email protected]> Co-authored-by: Vinay Jayant Mundada <[email protected]> Co-authored-by: Vinay Mundada <[email protected]> Co-authored-by: kaushik-ms <[email protected]> Co-authored-by: snagpal99 <[email protected]> Co-authored-by: kumaam <[email protected]> Co-authored-by: Satya-anshu <[email protected]> Co-authored-by: yanfa317 <[email protected]> Co-authored-by: Weiheng Li <[email protected]> Co-authored-by: Weiheng Li <[email protected]> Co-authored-by: Anchal Kapoor <[email protected]> Co-authored-by: Gizachew-Eshetie <[email protected]> Co-authored-by: Gizachew Eshetie <[email protected]>
Hello. I am trying to get this sample to run as a war file on a server instead of as a jar. When I deploy it though, it will prompt for the b2c login, then get caught in a redirect loop until it fails.
To change it to deploy as war file i did these steps:
1 changed packaging in pom to war
2 added exclusion under spring boot starter web
3 added dependancy for javax serlvet
4 Changed the application class to extend SpringBootServletInitializer
Any ideas why this would fail when deployed that way but work fine when running through ide as jar file?
The text was updated successfully, but these errors were encountered: