G Gerhard Nov 20, 2008 #1 I am writing a type library in C# in .net. What is the best practice code to make this cluster aware?
I am writing a type library in C# in .net. What is the best practice code to make this cluster aware?
A Arne Vajhøj Nov 20, 2008 #2 Gerhard said: I am writing a type library in C# in .net. What is the best practice code to make this cluster aware? Click to expand... Loadbalancing over cluster ? Single signon in cluster ? Replicating state in cluster ? Or ? Arne
Gerhard said: I am writing a type library in C# in .net. What is the best practice code to make this cluster aware? Click to expand... Loadbalancing over cluster ? Single signon in cluster ? Replicating state in cluster ? Or ? Arne
G Gerhard Nov 20, 2008 #3 server cluster with distributed sessions. I need to be sure that my object can be placed into this type of HttpSessionState.
server cluster with distributed sessions. I need to be sure that my object can be placed into this type of HttpSessionState.
A Alberto Poblacion Nov 20, 2008 #4 Gerhard said: server cluster with distributed sessions. I need to be sure that my object can be placed into this type of HttpSessionState. Click to expand... Just make sure that your object is [Serializable]. Depending on the contents of the object, you may need to implement Custom Serialization.
Gerhard said: server cluster with distributed sessions. I need to be sure that my object can be placed into this type of HttpSessionState. Click to expand... Just make sure that your object is [Serializable]. Depending on the contents of the object, you may need to implement Custom Serialization.