[cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Dale Fraser
So RackSpace and Amazon dont support sticky sessions on https, im guessing because the data is encrypted and they cant see it. I was toying with the idea of doing something like this, which would effectivally do the same thing Lets say I have 4 endpoints ap00 (balancer) ap01

Re: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Phil Haeusler
Dale The other way to tackle this would be to run your own dedicated load-balancer on your ap00 instance. Your SSL certs would live on ap00 which could then handle the SSL connections and manage the sticky sessions to your actual application servers. This would remove the need for CF to

Re: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Paul Kukiel
I'd be surprised if you can't install a SSL cirt on the load balancer. This article seams to indicate it is possible at Amazon: http://awsdocs.s3.amazonaws.com/ElasticLoadBalancing/latest/elb-dg.pdf Paul. On Mon, Dec 19, 2011 at 11:13 PM, Dale Fraser d...@fraser.id.au wrote: So RackSpace and

RE: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Dale Fraser
@googlegroups.com] On Behalf Of Phil Haeusler Sent: Tuesday, 20 December 2011 8:31 AM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Session Sharing on Cloud Cluster Dale The other way to tackle this would be to run your own dedicated load-balancer on your ap00 instance. Your SSL certs would live

RE: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Dale Fraser
@googlegroups.com] On Behalf Of Paul Kukiel Sent: Tuesday, 20 December 2011 8:47 AM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Session Sharing on Cloud Cluster I'd be surprised if you can't install a SSL cirt on the load balancer. This article seams to indicate it is possible at Amazon: http

Re: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Kym Kovan
Hi Dale, what's the code like? One option is to not use the session scope and go to client vars. No issue then... :-) -- Yours, Kym Kovan mbcomms.net.au -- You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to

RE: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Dale Fraser
@googlegroups.com] On Behalf Of Kym Kovan Sent: Tuesday, 20 December 2011 10:56 AM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Session Sharing on Cloud Cluster Hi Dale, what's the code like? One option is to not use the session scope and go to client vars. No issue then... :-) -- Yours, Kym Kovan

Re: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Kym Kovan
On 20/12/2011 11:10, Dale Fraser wrote: Yeah, I considered that too, I'll have to search the code base and see how widely we use them or do the client session trick. Copy to client scope to session in OnRequestStart and back in OnRequestEnd, serialized as needed... -- Yours, Kym Kovan

RE: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Dale Fraser
To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Session Sharing on Cloud Cluster On 20/12/2011 11:10, Dale Fraser wrote: Yeah, I considered that too, I'll have to search the code base and see how widely we use them or do the client session trick. Copy to client scope to session

Re: [cfaussie] Session Sharing on Cloud Cluster

2011-12-19 Thread Mark Mandel
Sharing on Cloud Cluster On 20/12/2011 11:10, Dale Fraser wrote: Yeah, I considered that too, I'll have to search the code base and see how widely we use them or do the client session trick. Copy to client scope to session in OnRequestStart and back in OnRequestEnd, serialized as needed