cluster aware C#

  • Thread starter Thread starter Gerhard
  • Start date Start date
G

Gerhard

I am writing a type library in C# in .net. What is the best practice code to
make this cluster aware?
 
Gerhard said:
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
 
server cluster with distributed sessions. I need to be sure that my object
can be placed into this type of HttpSessionState.
 
Gerhard said:
server cluster with distributed sessions. I need to be sure that my
object
can be placed into this type of HttpSessionState.

Just make sure that your object is [Serializable]. Depending on the
contents of the object, you may need to implement Custom Serialization.
 
Back
Top