|
Home > Archive > IIS Server Security > May 2006 > HTTPS : Secured and non secured item with absolute path
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
HTTPS : Secured and non secured item with absolute path
|
|
| trihanhcie@gmail.com 2006-05-15, 7:17 am |
| Hi,
I have a <img src = "http:// ..."> which needs to be put in a secured
page. For example on amazon when the confirmation page is displayed...
The problem is that it's a secured page (https) and my tag is an
absolute path... It looks like it's the problem because the tag is not
secured. What are the possible solution to display the image without
the warning message?
Thanks
| |
| Funkadyleik Spynwhanker 2006-05-15, 1:16 pm |
|
<trihanhcie@gmail.com> wrote in message
news:1147695205.307973.97770@v46g2000cwv.googlegroups.com...
> Hi,
>
> I have a <img src = "http:// ..."> which needs to be put in a secured
> page. For example on amazon when the confirmation page is displayed...
> The problem is that it's a secured page (https) and my tag is an
> absolute path... It looks like it's the problem because the tag is not
> secured. What are the possible solution to display the image without
> the warning message?
>
> Thanks
>
There is no solution aside from "don't do that".
Don't call stuff from a different server from a secured page. (Or put up
with the errors.) It is precisely that activity that certificates are
designed to display as a security measure.
If you absolutely need the image, you need to add it to your web.
| |
| Roger Abell [MVP] 2006-05-15, 1:16 pm |
| All parts of a SSL secured page (i.e. your image) should be sourced
by an https uri on the same website, else the browser will, correctly,
given the mixed content (or cross site) warnings or will disallow the
sourced content, depending on browser settings.
<trihanhcie@gmail.com> wrote in message
news:1147695205.307973.97770@v46g2000cwv.googlegroups.com...
> Hi,
>
> I have a <img src = "http:// ..."> which needs to be put in a secured
> page. For example on amazon when the confirmation page is displayed...
> The problem is that it's a secured page (https) and my tag is an
> absolute path... It looks like it's the problem because the tag is not
> secured. What are the possible solution to display the image without
> the warning message?
>
> Thanks
>
|
|
|
|
|