RE: Sharing sessions between CFM ASP

2000-10-05 Thread Warrick, Mark
ASP and CFM are completely different application servers. You would not be ale to pass the session data as a session variable, but you may be able to maintain state by storing that data in a database and then passing a key back and forth between the two separate apps. And maybe as a cookie.

Re: [RE: Sharing sessions between CFM ASP]

2000-10-05 Thread double-down
you can pass the parameters on the url "Warrick, Mark" [EMAIL PROTECTED] wrote: ASP and CFM are completely different application servers. You would not be ale to pass the session data as a session variable, but you may be able to maintain state by storing that data in a database and then

Re: Sharing sessions between CFM ASP

2000-10-03 Thread JustinMacCarthy
Yeah , use client vars stored in a DB . and pass urltoken to each page.. Justin - Original Message - From: "Geoffrey V. Brown" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, October 02, 2000 11:06 PM Subject: RE: Sharing sessions between CFM ASP

Re: Sharing sessions between CFM ASP

2000-10-02 Thread Billy Cravens
Not really possible. You can however, send a variable between pages (links, cfhttp, etc.) and convert the variable (form, url) into that application server's session variables. It works just like passing session variables between 2 ColdFusion servers. -- Billy Cravens [EMAIL PROTECTED]

RE: Sharing sessions between CFM ASP

2000-10-02 Thread Geoffrey V. Brown
How about cookies, this would even be workable in the situation? -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Monday, October 02, 2000 3:31 PM To: CF-Talk Subject: Re: Sharing sessions between CFM ASP Not really possible. You can however, send