473,385 Members | 1,582 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Linking secured SSL domain with unsecure domain smoothly -- any ideas?

I currently have a SSL domain where the SSL cert is applied to the
whole FQDN. So, the whole domain is https://***. Also, we have
another domain that does not have SSL. Using ASP, vbscript, and html,
I'm linking certain logos and pdf files from the unsecured domain to
the secured domain.

The problem is that when a user logs in the secured site and goes to
that specific page that has the logo that is pulled from http://***,
the warning message displayed below comes up. Obviously this makes
sense, but we don't want the user to have to see the warning message
and after pressing 'Yes', have to login again in order to see the
logo.

1)In the browser under Tools>advanced, warn if changing between secure
to nonsecure --- this is unchecked already.
2)We can buy a SSL cert for the http://*** usecure site, but we don't
have that in the budget right now.
3)we can't 'unsecure' a single section of the https://*** secured
site...this would still end up doing the same thing, but just show the
message earlier.

Therefore, what can I do? Any programming and file changes that can
be done to change this? Any help is very appreciated.

------the warning message-----
Security Information:
This page contains both secure and nonsecure items, do you want to
display the nonsecure items?
-------------------------------

Thanks!

- Jonas
Jul 19 '05 #1
5 1767
nope.... it's by design.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"Jonas Daunoravicius" <Jd************@questarcapital.com> wrote in message
news:fa**************************@posting.google.c om...
I currently have a SSL domain where the SSL cert is applied to the
whole FQDN. So, the whole domain is https://***. Also, we have
another domain that does not have SSL. Using ASP, vbscript, and html,
I'm linking certain logos and pdf files from the unsecured domain to
the secured domain.

The problem is that when a user logs in the secured site and goes to
that specific page that has the logo that is pulled from http://***,
the warning message displayed below comes up. Obviously this makes
sense, but we don't want the user to have to see the warning message
and after pressing 'Yes', have to login again in order to see the
logo.

1)In the browser under Tools>advanced, warn if changing between secure
to nonsecure --- this is unchecked already.
2)We can buy a SSL cert for the http://*** usecure site, but we don't
have that in the budget right now.
3)we can't 'unsecure' a single section of the https://*** secured
site...this would still end up doing the same thing, but just show the
message earlier.

Therefore, what can I do? Any programming and file changes that can
be done to change this? Any help is very appreciated.

------the warning message-----
Security Information:
This page contains both secure and nonsecure items, do you want to
display the nonsecure items?
-------------------------------

Thanks!

- Jonas

Jul 19 '05 #2
If I really can't get rid of the warning message, how do I at least
make it so that the user doesn't have to login again on the http side?

I looked at a few other postings and a few others said stuff like:

-------------------------
I concluded that an interim page was necessary, but I still got the
message when
I did a simple Response.Redirect (or any method of moving to a new
page). Then I
was trying to figure out how to code the interim page where the user
clicks a
link to get back to the non-secure page.

Actually, I managed to discover a way of doing it...turns out that if
you set the
action of the <form> tag to the full URL (including the
http://server/appname),
it redirects to the non-secure page with no questions asked.

This works for both GET and POST methods, although I don't recommend
using GET on
aspx pages...the state information in the resulting URL isn't pretty!
------------------------

and also,

------------------------
i found a workaround on deja.com

<META HTTP-EQUIV="REFRESH"
CONTENT="0;URL=http://www.yourpage.com/check.asp">
------------------------

I also earlier found a page that had ASP code that actually made it
work but now I can't find that thread posting on google.

What would you guys think is the best way to do it? And also possibly
pass in the username and password automatically so that they don't
have to again after the warning message?

- Jonas
Jul 19 '05 #3

are the sites on the same server ... can you create a virual directory
to the images, etc...
On 17 Jan 2004 12:43:46 -0800, Jd************@questarcapital.com
(Jonas Daunoravicius) wrote:
If I really can't get rid of the warning message, how do I at least
make it so that the user doesn't have to login again on the http side?

I looked at a few other postings and a few others said stuff like:

-------------------------
I concluded that an interim page was necessary, but I still got the
message when
I did a simple Response.Redirect (or any method of moving to a new
page). Then I
was trying to figure out how to code the interim page where the user
clicks a
link to get back to the non-secure page.

Actually, I managed to discover a way of doing it...turns out that if
you set the
action of the <form> tag to the full URL (including the
http://server/appname),
it redirects to the non-secure page with no questions asked.

This works for both GET and POST methods, although I don't recommend
using GET on
aspx pages...the state information in the resulting URL isn't pretty!
------------------------

and also,

------------------------
i found a workaround on deja.com

<META HTTP-EQUIV="REFRESH"
CONTENT="0;URL=http://www.yourpage.com/check.asp">
------------------------

I also earlier found a page that had ASP code that actually made it
work but now I can't find that thread posting on google.

What would you guys think is the best way to do it? And also possibly
pass in the username and password automatically so that they don't
have to again after the warning message?

- Jonas


I participate in the group to help give examples of code. I do not guarantee the effects of any code posted. Test all code before use!

Brynn
www.coolpier.com
Jul 19 '05 #4
Yes, everything is on the same web server. We have the (1) public
domain on it, then the (2) secured domain with the SSL certificate on
it where users can login, and then a (3) sponsor domain where
companies can login, but does not have SSL. So, when the user logs
into (2), I have some pages that have articles and logos getting
pulled off of (3), so the warning message comes on and the user needs
to login again to view the logos and what not otherwise it won't come
up.

I'm not sure what how creating a virtual directory would accomplish
what I'm trying to do. At this point, I'd like to at least have it so
that the user doesn't have to login again when he goes to the page
that pulls stuff from (3). The warning message is not that big of a
deal, but it would be nice to get rid of that as well if possible.
There has to be a way to pass in the username and password since stuff
is being pulled from a different domain that requires the same
authentication?

- Jonas
Jul 19 '05 #5
Since my question went from the warning message to how to remove
multiple logins, I posted a new thread with the title:
Preventing multiple login prompts when using 2 different domains
to try and solve the problem I'm having.
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Billy Jacobs | last post by:
I have a website which has both secure and non-secure pages. I want to uses forms authentication. How do I accomplish this? Originally I had my web.config file in the root with Forms...
0
by: Stephen Bartholomew | last post by:
Hi All, I have an ecommerce site that resides mainly on an unsecure server for browsing the catalogue and only passes the user to a secure area when its time checkout. The secure domain however...
2
by: Joe | last post by:
Hi, We want to build a couple of secured pages which will be viewable only to those who have an account. One way of implementing the security is using session cookies (temporary cookies). When...
4
by: Oreo Bomb | last post by:
I have a secured database that contains a Read-Only group. This group has permissions to view reports, but cannot add, edit, or delete any DB objects. One of the reports the group needs access to...
5
by: MLH | last post by:
Is there a quick way to do it? I'm logged in as the superuser and owner of database and all database objects. I would like to export it to a completely un- secured application. Do I have to...
2
by: VB Programmer | last post by:
I want to write a file to the "secured" dir that is on my website. The full path is: C:\inetpub\wwwroot\MyWebSite\Secured I tried this, but it didn't work: Dim strFileName As String =...
0
by: Oleg Korda | last post by:
Greetings, How do I call WebService secured with LiveId authentication? I try to execute the following c# code: SharepointWS.Lists ListsService = new SharepointWS.Lists();...
1
by: securedcardss | last post by:
http://card.2youtop.info secured credit card card credit instant secured card cash credit secured card
8
by: aklein | last post by:
I was given a database to update and am running into the following problem: The database appears to have been secured using Access security (it is an MDB, not MDE). Every form etc that I try to...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.