We are trying to embed an existing Vaadin23 Application into another Application.
We tried the different suggestions for Vaadin23 except for the Webcomponent route.
We tried the versions of the filters below:
CSPFilter
AntiClickjackingFilter
CorsFilter
FrameOptionsFilter
with different settings e.g.
“X-Frame-Options”, “ALLOW-FROM http://localhost:8080/v23_actionlist/”
“Content-Security-Policy”, “frame-ancestors *”
“X-Frame-Options”, “ALLOWALL”
“Access-Control-Allow-Origin”, “*”
“Access-Control-Allow-Methods”, “*”
“Access-Control-Allow-Headers”, “Origin,Content-Type,Accept”
“Access-Control-Allow-Credentials”, “true”
“X-Frame-Options”, “”
“Set-Cookie”, “null”
Testing with Edge and Chrome, with security changed to allow cookies
The Vaadin 23 Application embeds in the calling Vaadin23 Application iFrame component but displays “This application requires cookies to function. Please enable cookies in your browser and click here or press ESC to try again.” inside the frame.
Anybody that can help?
Thank you