473,396 Members | 2,009 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,396 software developers and data experts.

ASP with HTTPS and SSL

I have a question regarding https and SSL between two web
sites. I am not quit understand how asp application can
handle https, encryption and SSL. Here is scenario:

An asp application on my web site requires to get form
data from web client and to convert the data with XML
format and send the data to another web site which only
accepts https protocol.

If my site needs to receive information from the remote
web site, then I know a digital certificate needs to be
installed on my side. and https configuration needs to be
implemented on local web server.

However, if all of local side need to do is to send data
to remote web server with data encrypted, do I still need
to install digital certificate and enable https on local
web server? If not, how can I encrypt data with the the
certificate so it can be accepted by remote server and be
decoded by remote server side?

Thanks in advance.

John
Jul 19 '05 #1
5 13638
HI John,

You don't need to install a server digital certificate and enable HTTPS on
your local web server. Your Browse or https protocol will handle all things
like data encryption. Your local web server is just as a client. You only
need to config SSL or HTTPS on the remote server. For more information on
SSL or HTTPS, you can refer to:

http://www.microsoft.com/technet/tre...hnet/prodtechn
ol/windowsserver2003/proddocs/entserver/msmqconcepts/sag_msmqconcepts_https.
asp

Luke

(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 19 '05 #2
Thanks for your explaination, Luke.
I am not quit sure if I got the point. I know a web browser, like IE
browser, can be configured to use SSL with certificate to talk with a
web server that has a security port for https. However see a scenario
following:

My web browser does not talk directly to remote server. Instead, it
talks with my local server and then deep level application (In this
case, it is ASP application) process data and send embedded data (xml
like) to remote server. Local web server does not has https port
available and a certificate has not been installed. In this case, how
this SSL encryption and certificate can be transport to another remote
web server and data can be decoded by that server?

Thanks

John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #3
Thanks for your explaination, Luke.
I am not quit sure if I got the point. I know a web
browser, like IE browser, can be configured to use SSL
with certificate to talk with a web server that has a
security port for https. However see a scenario following:

My web browser does not talk DIRECTLY to remote server.
Instead, it talks with my local web server (The form is a
local web page) and then deep level application in this
local server (In this case, it is ASP application)
processes data and send embedded data (xml like format) to
remote server. Local web server does not has https port
available and a certificate has not been installed. In
this case, how this SSL encryption and certificate can be
transport to another remote web server and data can be
decoded by that server?

Thanks

John

-----Original Message-----
HI John,

You don't need to install a server digital certificate and enable HTTPS onyour local web server. Your Browse or https protocol will handle all thingslike data encryption. Your local web server is just as a client. You onlyneed to config SSL or HTTPS on the remote server. For more information onSSL or HTTPS, you can refer to:

http://www.microsoft.com/technet/treeview/default.asp? url=/technet/prodtechnol/windowsserver2003/proddocs/entserver/msmqconcepts/sag_m smqconcepts_https.asp

Luke

(This posting is provided "AS IS", with no warranties, and confers norights.)

.

Jul 19 '05 #4
Your local server will be behaving as a browser would. It already has the
required certificates installed to permit this. That said, I have never
attempted to do this with HTTPS. Have you tried anything yet?

--
Mark Schupp
--
Head of Development
Integrity eLearning
Online Learning Solutions Provider
ms*****@ielearning.com
http://www.ielearning.com
714.637.9480 x17
"John Xu" <jo*****@bestbuy.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Thanks for your explaination, Luke.
I am not quit sure if I got the point. I know a web browser, like IE
browser, can be configured to use SSL with certificate to talk with a
web server that has a security port for https. However see a scenario
following:

My web browser does not talk directly to remote server. Instead, it
talks with my local server and then deep level application (In this
case, it is ASP application) process data and send embedded data (xml
like) to remote server. Local web server does not has https port
available and a certificate has not been installed. In this case, how
this SSL encryption and certificate can be transport to another remote
web server and data can be decoded by that server?

Thanks

John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Jul 19 '05 #5
Hi John,

In this situation, your local web server will act as "a client" and talk to
the HTTPS port on the remote server. Therefore, it don't need to install
SSL as your clients. Can you you let me know how you send the XML data to
the remote server in your ASP? This may make the things more clear.
Luke
Microsoft Online Partner Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 19 '05 #6

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

Similar topics

8
by: NotGiven | last post by:
I need to verify if the page that led the user to this page used http or httpS. for example, if the use cam to my page from: httpS://www.dm.com/sample/foo.php I want to know as opposed to...
0
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 ...
2
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:...
16
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...
12
by: Grunff | last post by:
I'm experiencing an interesting problem with carrying a php session over from http to https. Much googling later, I'm still stuck. The application is an online shop, where some user data is...
14
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. ...
4
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...
14
by: david | last post by:
I have developed web forms including login by using ASP.NET via HTTP. Now I want to secure the connection from client to the server via HTTPS. How can I configure the server or something else to...
2
by: scott mcfadden | last post by:
Using VS 2003, I can not add a web reference to our production server's ..asmx URL using HTTPS. I will put in a URL like: https://mycompany.com/myapp/myservice.asmx VStudio will display the...
0
by: NoaGross | last post by:
Hi, I'm relly new in java and I have a problem. I'm using java applet. When using http all ok, but when trying to use https i get: Java Plug-in 1.5.0_10 Using JRE version 1.5.0_10 Java...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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...
0
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...
0
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,...

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.