Reputation: 3
We have a web application. Our homepage is in HTTPS. When a user clicks a link to go to the content provider's website (where HTTPS is not yet enabled), we get the following error image. Any ideas to circumvent this?
Our view is a JSP which posts to the 3rd party.
Link to the error png.
Thanks in advance, Karan Nanda
Upvotes: 0
Views: 64
Reputation: 10973
Even if you find a way to circumvent this it (hopefully) will be only a shortlived solution: you would undermine a security measure.
Perhaps not implementing this in the foreground = browser but transferring this to the backend might help: have your JSP talk to some code on your server which transfers the data to the content providers site. But this heavily depends on what or why you POST your data.
Upvotes: 3