Sharing session across applications
Sharing session across applications
am 14.01.2008 17:45:16 von DFS
I have a web application. I would like to deploy it to a virtual folder on a
larger site. I have read that the session won't be shared is this correct,
are there any alternatives, and area there any other considerations.
RE: Sharing session across applications
am 14.01.2008 21:36:02 von pbromberg
Correct. Each IIS application is a separate appDomain, and Session is
application-specific. You could try setting up StateServer or SQLServer for
your sessions, but there will still be some other issues to solve.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
"Fresno Bob" wrote:
> I have a web application. I would like to deploy it to a virtual folder on a
> larger site. I have read that the session won't be shared is this correct,
> are there any alternatives, and area there any other considerations.
>
>
>
Re: Sharing session across applications
am 14.01.2008 22:17:35 von nemtsev
Hello Fresno,
the best way is to use 3rd part tools, like ScaleOut and etc.
But actually you can implement the same functionality manually, but it takes
a lot of time
read my article about the ways to implement this: http://laflour.spaces.live.com/blog/cns!7575E2FFC19135B4!355 .entry?&_c02_owner=1
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
FB> I have a web application. I would like to deploy it to a virtual
FB> folder on a larger site. I have read that the session won't be
FB> shared is this correct, are there any alternatives, and area there
FB> any other considerations.
FB>
Re: Sharing session across applications
am 15.01.2008 16:34:07 von DFS
What other issues are there?
Regards, Chris.
"Peter Bromberg [C# MVP]" wrote in message
news:7B21B5FC-ADA3-42A5-A386-AC6E3D322B75@microsoft.com...
> Correct. Each IIS application is a separate appDomain, and Session is
> application-specific. You could try setting up StateServer or SQLServer
> for
> your sessions, but there will still be some other issues to solve.
>
> -- Peter
> Site: http://www.eggheadcafe.com
> UnBlog: http://petesbloggerama.blogspot.com
> MetaFinder: http://www.blogmetafinder.com
>
>
> "Fresno Bob" wrote:
>
>> I have a web application. I would like to deploy it to a virtual folder
>> on a
>> larger site. I have read that the session won't be shared is this
>> correct,
>> are there any alternatives, and area there any other considerations.
>>
>>
>>