we are not able to open URL in the iFrame when using chrome as a browser. We are using the latest version of chrome.
The Html we are using:-
<!DOCTYPE html>
<html>
<body>
<h1>The iframe element</h1>
<iframe src="http://localhost:8080/ui/overview" width="500px" height="500px">
</iframe>
</body>
</html>
But the iframe is returning Too many times redirect issue.
We have also used this in the spring-security.xml file:-
<headers>
<frame-options disabled="true" />
</headers>
We have also tried to configure in our Web application init() method:-
we set the wicket RenderStrategy to :- RequestCycleSettings.RenderStrategy.REDIRECT_TO_BUFFER
When we inspect elements and see the network tab in chrome. This is the output. It shows 302 as Status
:-
It is not working in google chrome only. How can we solve this issue?
Please suggest some way to do it.