472,958 Members | 1,464 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 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 1752
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: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.