cluster aware C#

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

    #1

    cluster aware C#

    I am writing a type library in C# in .net. What is the best practice code to
    make this cluster aware?
  • =?UTF-8?B?QXJuZSBWYWpow7hq?=

    #2
    Re: cluster aware C#

    Gerhard wrote:
    I am writing a type library in C# in .net. What is the best practice code to
    make this cluster aware?
    Loadbalancing over cluster ?

    Single signon in cluster ?

    Replicating state in cluster ?

    Or ?

    Arne

    Comment

    • =?Utf-8?B?R2VyaGFyZA==?=

      #3
      Re: cluster aware C#

      server cluster with distributed sessions. I need to be sure that my object
      can be placed into this type of HttpSessionStat e.

      "Arne Vajhøj" wrote:
      Gerhard wrote:
      I am writing a type library in C# in .net. What is the best practice code to
      make this cluster aware?
      >
      Loadbalancing over cluster ?
      >
      Single signon in cluster ?
      >
      Replicating state in cluster ?
      >
      Or ?
      >
      Arne
      >

      Comment

      • Alberto Poblacion

        #4
        Re: cluster aware C#

        "Gerhard" <Gerhard@commun ity.nospamwrote in message
        news:108FD108-1403-4FD4-AA67-06A496C1FA68@mi crosoft.com...
        server cluster with distributed sessions. I need to be sure that my
        object
        can be placed into this type of HttpSessionStat e.
        Just make sure that your object is [Serializable]. Depending on the
        contents of the object, you may need to implement Custom Serialization.

        Comment

        Working...