Best practice to share session between .net 1.1 and .net 3.0/3.5

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?UGhpbCBKb2huc29u?=

    Best practice to share session between .net 1.1 and .net 3.0/3.5

    I work on an asp.net 1.1 application which we cannot upgrade to a newer
    version of .net so we want to look into sharing session, preferably with 3.5,
    but if that isn't possible with 2.0 or 3.0

    Session is currently stored in SQL Server for the 1.1 asp.net application.
    Is there any way we can implement features in a newer version of .net and
    share session with this legacy 1.1 application?

    --
    Regards,

    Phillip Johnson (MCSD For .NET)
    PJ Software Development

  • =?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?=

    #2
    RE: Best practice to share session between .net 1.1 and .net 3.0/3.5

    I believe the SQL Server Session arrangment in ASP.NET 2.0 is the same as it
    was for ASP.NET 1.1 .

    3.0 and 3.5 don't come into the picture here because that's not where
    Session is implemented.
    -- Peter
    Site: http://www.eggheadcafe.com
    UnBlog: http://petesbloggerama.blogspot.com
    Short Urls & more: http://ittyurl.net


    "Phil Johnson" wrote:
    I work on an asp.net 1.1 application which we cannot upgrade to a newer
    version of .net so we want to look into sharing session, preferably with 3.5,
    but if that isn't possible with 2.0 or 3.0
    >
    Session is currently stored in SQL Server for the 1.1 asp.net application.
    Is there any way we can implement features in a newer version of .net and
    share session with this legacy 1.1 application?
    >
    --
    Regards,
    >
    Phillip Johnson (MCSD For .NET)
    PJ Software Development
    www.pjsoftwaredevelopment.com

    Comment

    • =?Utf-8?B?UGhpbCBKb2huc29u?=

      #3
      RE: Best practice to share session between .net 1.1 and .net 3.0/3

      Has the option to configure session in sql server been removed from 3.5 then?
      I have a book by Andrew Troelson (Pro C# 2008 and the .NET 3.5 Platform)
      that details how to configure web config to store session in SQL Server,
      which looks the same as configuring previous versions.

      Also, do you know of any good examples on how to share session between .net
      1.1 and 2.0 asp.net applications?

      --
      Regards,

      Phillip Johnson (MCSD For .NET)
      PJ Software Development



      "Peter Bromberg [C# MVP]" wrote:
      I believe the SQL Server Session arrangment in ASP.NET 2.0 is the same as it
      was for ASP.NET 1.1 .
      >
      3.0 and 3.5 don't come into the picture here because that's not where
      Session is implemented.
      -- Peter
      Site: http://www.eggheadcafe.com
      UnBlog: http://petesbloggerama.blogspot.com
      Short Urls & more: http://ittyurl.net
      >
      >
      "Phil Johnson" wrote:
      >
      I work on an asp.net 1.1 application which we cannot upgrade to a newer
      version of .net so we want to look into sharing session, preferably with 3.5,
      but if that isn't possible with 2.0 or 3.0

      Session is currently stored in SQL Server for the 1.1 asp.net application.
      Is there any way we can implement features in a newer version of .net and
      share session with this legacy 1.1 application?

      --
      Regards,

      Phillip Johnson (MCSD For .NET)
      PJ Software Development
      www.pjsoftwaredevelopment.com

      Comment

      Working...