Two Laptop Bag
The moose likes Security and the fly likes How to remove security Alert ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » Security
Reply Bookmark "How to remove security Alert ?" Watch "How to remove security Alert ?" New topic
Author

How to remove security Alert ?

Monoj Roy
Ranch Hand

Joined: Oct 10, 2007
Posts: 98
Here below I am getting a security alert when I am clicking the submit button of a page in a https:// server .

Is there any configuration or code level solution so that the following message will not apear when I am clicking on submit button?

***************************************************************************
Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party .

Are you sure you want to continue sending this information ?

***************************************************************************
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35224
    
    7
That sounds as if the form submission is being made to an HTTP URL, not an HTTPS URL - is that the case?


Android appsImageJ pluginsJava web charts
Monoj Roy
Ranch Hand

Joined: Oct 10, 2007
Posts: 98
Yes thats true .
We are redirecting to a http:/server
But I dont want the alert it should not show the same .Is there any way to do so ?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35224
    
    7
It can be turned off manually in the browser options somewhere, but it's not possible to turn it off programmatically in the web app.

But what's the point of retrieving a from through HTTPS, and then sending it over HTTP? It would seem that the latter is in more need of protection than the former.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to remove security Alert ?
 
Similar Threads
Browser back button
Problem with Form Validation.
How to get login page when user clicks on browser's back button
Handling Multiple Submits
Authorization problem (!!!NOT SOLVED!!!)