• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to remove security Alert ?

 
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ?

***************************************************************************
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That sounds as if the form submission is being made to an HTTP URL, not an HTTPS URL - is that the case?
 
Monoj Roy
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
reply
    Bookmark Topic Watch Topic
  • New Topic