473,811 Members | 2,240 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

https & SSL

zn
This is a beginner question. I need to create a page that is encrypted by
SSL. The web server is already serving SSL encrypted web pages with
"https" before the link. Do I need to do anything other than putting
"https" at the start of the link to make the webserver to client
communication encrypted?

Thanks.
Jul 23 '05 #1
3 3141

"zn" <zn@zn122.edu.i nvalid> wrote in message
news:Xn******** *************** ********@216.19 6.97.131...
This is a beginner question. I need to create a page that is encrypted by
SSL. The web server is already serving SSL encrypted web pages with
"https" before the link. Do I need to do anything other than putting
"https" at the start of the link to make the webserver to client
communication encrypted?


No. The HTML you use on your page has no relation to whether the page will
be sent encrypted. SSL involves (a) configuring the server with a
certificate to serve encrypted pages and (b) configuring the site to respond
to https: instead of http:.

Jul 23 '05 #2
zn
"Harlan Messinger" <h.*********@co mcast.net> wrote in
news:33******** *****@individua l.net:

"zn" <zn@zn122.edu.i nvalid> wrote in message
news:Xn******** *************** ********@216.19 6.97.131...
This is a beginner question. I need to create a page that is
encrypted by SSL. The web server is already serving SSL encrypted web
pages with "https" before the link. Do I need to do anything other
than putting "https" at the start of the link to make the webserver
to client communication encrypted?


No. The HTML you use on your page has no relation to whether the page
will be sent encrypted. SSL involves (a) configuring the server with a
certificate to serve encrypted pages and (b) configuring the site to
respond to https: instead of http:.


Thanks. The site is already serving SSL pages and has a certificate. There
are already some pages on the site whose links begin with https:// . So if
I just advertise the page with the https in the link, that will be enough
to ensure that the communications are secure?

Jul 23 '05 #3
zn wrote:
"Harlan Messinger" <h.*********@co mcast.net> wrote in
news:33******** *****@individua l.net:

"zn" <zn@zn122.edu.i nvalid> wrote in message
news:Xn****** *************** **********@216. 196.97.131...
This is a beginner question. I need to create a page that is
encrypted by SSL. The web server is already serving SSL encrypted web
pages with "https" before the link. Do I need to do anything other
than putting "https" at the start of the link to make the webserver
to client communication encrypted?


No. The HTML you use on your page has no relation to whether the page
will be sent encrypted. SSL involves (a) configuring the server with a
certificate to serve encrypted pages and (b) configuring the site to
respond to https: instead of http:.

Thanks. The site is already serving SSL pages and has a certificate. There
are already some pages on the site whose links begin with https:// . So if
I just advertise the page with the https in the link, that will be enough
to ensure that the communications are secure?


Check with the system administrator. There may be an entirely different
file structue for the https. I'm going to modify it now that I
understand it better but I've been experimenting with setting up a
server running both. Currently, if I place documents in
/web/site/secure, they are available via both http://URL/secure and
https://URL but if I place them in /web/site, they are only available
via http.

Point is; each protocol/port may have a different document root.

--
Stan McCann "Uncle Pirate" http://stanmccann.us/pirate.html
Webmaster/Computer Center Manager, NMSU at Alamogordo
Cooordinator, Tularosa Basin Chapter, ABATE of NM; AMA#758681; COBB
'94 1500 Vulcan (now wrecked) :( http://motorcyclefun.org/Dcp_2068c.jpg
A zest for living must include a willingness to die. - R.A. Heinlein
Jul 23 '05 #4

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

Similar topics

0
1784
by: kiran | last post by:
Hi, I hosted a PHP project on my web server(IIS) and I am accessing the ip addres through my office public address like this: (example) https://61.95.204.43:8887/phptest/test.php "https://61.95.204.43" is my company ip address and the port 8887 is any requests that are comes through the port(8887) will be redirected to my system, which is under the network ("https://61.95.204.43").
2
3286
by: Craig Keightley | last post by:
i have the following script on my checkout page to check if https is set in the address bar: if ($_SERVER != "on") { $url = $_SERVER; $query = $_SERVER; $path = $_SERVER; header("Location: https://$url$path?$query"); }
9
2619
by: Troot | last post by:
Hi all, In mind this is a daft question, but here goes. My hosts allow secure https logins on specific directories. What I want to do is have a login screen in flash, if the user enters the correct username and password I would like to set the HTTPS username and password using php/flash and then open the secure page. In my mind at this point they'll be logged in and then can navigate the
3
2603
by: Phillip | last post by:
Some people tipped me off on some possibilities to tackle my https problem. Those have definitely gotten me further in cornering the problem. Thank you. But: No matter what I do to open a webconnection with httpS I always get something in this Area: urllib2.URLError: <urlopen error unknown url type: https>
16
60622
by: Paul Sweeney | last post by:
Does anyone know of a working (python) https proxy which allows viewing of unencrypted data being sent from my browser to an https site? I've worked my way through most on the list at http://xhaus.com/alan/python/proxies.html, but while many claim to support https, if you actually point your browser at the proxies, they work fine for http, but not for https pages. TIA
1
1613
by: dryer | last post by:
I'm trying to pass some values back and forth between a main page (on https) and a child window (on http) and keep getting 'Access Denied' messages. I know this is a security issue with the browser, but is there anyway around it? Thanks.
14
2520
by: Peter Chant | last post by:
I'm currently authenticating a site I have built using basic http authentication built into apache. This has zero overhead on php which is a bonus but it seems to not quite work how I'd like. Are the username and password in the login box that comes up encrypted? When I login https://mysite.local:portnum I get the login dialog. As I am using a self signed certificate I see the dialog stating warning me about it first before the login...
2
5039
by: Mark Rae | last post by:
Hi, Apologies if this isn't the appropriate forum to post this... I've recently acquired an SSL certificate on my live web site which I maintain and develop in C# / ASP.NET with VS.NET 2003. That means I can use https://www.markrae.co.uk just as well as http://www.markrae.co.uk. Therefore, I need to be able to simulate this on my development machine. I followed the MSKB article How To Set Up Client Certificates
4
6533
by: Jason P | last post by:
Basically we have a web method with a dynamic URL. The client is developed in C++ and I've been using the webReference.SetUrl( "http://test.example.com..." ) method successfully with various web method URLs. However, when we switched to using a secure connection, the call to webReference.SetUrl( "https://test.example.com..." ) no longer functions. The SetUrl() method is actually successful, but any following calls in to the web...
0
9734
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10395
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10137
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9211
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7673
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6895
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4346
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3874
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3026
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.