Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > session and SSL

Reply
Thread Tools

session and SSL

 
 
shank
Guest
Posts: n/a
 
      02-20-2004
Will Session() (created in SSL) hold its value in SSL, when you go from
https://abc to https://xyz and back to https://abc ? Mine does not appear to
retain its value.

thanks


 
Reply With Quote
 
 
 
 
Ray at
Guest
Posts: n/a
 
      02-20-2004
No, but not because of SSL, but because you're changing domains.
http://www.aspfaq.com/show.asp?id=2157

--

Ray at home
Microsoft ASP MVP


"shank" <> wrote in message
news:...
> Will Session() (created in SSL) hold its value in SSL, when you go from
> https://abc to https://xyz and back to https://abc ? Mine does not appear

to
> retain its value.
>
> thanks
>
>



 
Reply With Quote
 
 
 
 
Adrian Forbes [ASP MVP]
Guest
Posts: n/a
 
      02-20-2004
Are you getting back to the original site within the Session timeout?
Remember that when you access the last page on abc and go to xyz the timer
is running on your abc server and if you don't get back to the same site in
the same browser process within that time then your session will have gone.

"shank" <> wrote in message
news:...
> Will Session() (created in SSL) hold its value in SSL, when you go from
> https://abc to https://xyz and back to https://abc ? Mine does not appear

to
> retain its value.
>
> thanks
>
>



 
Reply With Quote
 
shank
Guest
Posts: n/a
 
      02-22-2004
My transfer time is a few seconds, maybe 10. The issue is that I have 2
shopping carts on one site. I have 2 totally different lines of product that
must be handled in separate fashions. Different drop shippers. Different
shipping options. I'm trying to use one merchant account to collect credit
card info for both. So far, I'm only able to get 1 response from my cc
authorization company. Either yeah or nay. Somehow, assuming authorization
is successful, I need to take one set of actions for cart1 or a totally
different set of actions for cart2. So far, I am not able to carry a
Session("cartname") into the response page. The process is....

https://pay.asp ---> https://developer.skipjack.com/scripts/EvolvCC.dll --->
https://response.asp

How should I be doing this? I sure as heck do not want to get 2 merchant
accounts or do I lot of manual labor on the backside. One user suggested
that it's not possible to carry across domain names. Is that true, or is
there a way around this?
thanks

"Adrian Forbes [ASP MVP]" <> wrote in message
news:...
> Are you getting back to the original site within the Session timeout?
> Remember that when you access the last page on abc and go to xyz the timer
> is running on your abc server and if you don't get back to the same site

in
> the same browser process within that time then your session will have

gone.
>
> "shank" <> wrote in message
> news:...
> > Will Session() (created in SSL) hold its value in SSL, when you go from
> > https://abc to https://xyz and back to https://abc ? Mine does not

appear
> to
> > retain its value.
> >
> > thanks
> >
> >

>
>



 
Reply With Quote
 
Mark Schupp
Guest
Posts: n/a
 
      02-23-2004
If the fulfillment script is called from the authorization service's server
then it cannot include the user's session cookie (because it doesn't have
it).

How do you specify your fulfillment script to the authorization service? Can
you include a querystring on it?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com


"shank" <> wrote in message
news:Wm6_b.65531$ ...
> My transfer time is a few seconds, maybe 10. The issue is that I have 2
> shopping carts on one site. I have 2 totally different lines of product

that
> must be handled in separate fashions. Different drop shippers. Different
> shipping options. I'm trying to use one merchant account to collect credit
> card info for both. So far, I'm only able to get 1 response from my cc
> authorization company. Either yeah or nay. Somehow, assuming authorization
> is successful, I need to take one set of actions for cart1 or a totally
> different set of actions for cart2. So far, I am not able to carry a
> Session("cartname") into the response page. The process is....
>
> https://pay.asp --->

https://developer.skipjack.com/scripts/EvolvCC.dll --->
> https://response.asp
>
> How should I be doing this? I sure as heck do not want to get 2 merchant
> accounts or do I lot of manual labor on the backside. One user suggested
> that it's not possible to carry across domain names. Is that true, or is
> there a way around this?
> thanks
>
> "Adrian Forbes [ASP MVP]" <> wrote in message
> news:...
> > Are you getting back to the original site within the Session timeout?
> > Remember that when you access the last page on abc and go to xyz the

timer
> > is running on your abc server and if you don't get back to the same site

> in
> > the same browser process within that time then your session will have

> gone.
> >
> > "shank" <> wrote in message
> > news:...
> > > Will Session() (created in SSL) hold its value in SSL, when you go

from
> > > https://abc to https://xyz and back to https://abc ? Mine does not

> appear
> > to
> > > retain its value.
> > >
> > > thanks
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
SSL and OpenSSL::SSL::SSLServer accept() born in USSR Ruby 2 09-27-2009 01:46 AM
Session Timeout problems-web.confg session state and IIS session s =?Utf-8?B?Um9iSEs=?= ASP .Net 4 04-11-2007 04:52 PM
Maintain session between an SSL page and Non SSL page John Smith Java 0 10-05-2006 12:03 PM
webrick, ssl and non-ssl on the same port Pavel Smerk Ruby 3 08-15-2006 05:51 PM
How can I "know" the difference between a session timed out and a session that did session.abort? Jazzis ASP General 2 09-23-2003 07:16 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57