很(hěn)简单的东西,因為(wèi)在學(xué)习中遇到了,所以记录下来.
事情的起因是,我在做一个購(gòu)物(wù)蓝时,将一个自定义的类CartManager整个放进Session中,它的部分(fēn)代码如下,其实就是有(yǒu)一个Private的ArrayList成员_cart用(yòng)来放CartInfo类实例,而CartInfo类又(yòu)包括一个成员ProductInfo _product和一个double _moneny...并不复杂.但是我都没有(yǒu)弄任何Serializable的东西,于是...
本机调试没问题,放到服務(wù)器上却发现这个購(gòu)物(wù)車(chē)表现非常怪异,时好时坏,总觉得好象Session里的东西乱得很(hěn),有(yǒu)时能(néng)存进去有(yǒu)时存不进?
比较了本机与服務(wù)器的环境,我知道问题肯定与SessionState有(yǒu)关.因為(wèi)服務(wù)器用(yòng)了Web Farm(并且将最大工作进程数设置成了10).
一般我们在做一个WEB Application的时候,它的SessionState的Mode=InProc的,可(kě)参见web.config文(wén)件中的配置
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="20"
/>
在服務(wù)器上,因為(wèi)存在多(duō)个工作进程,所以需要将它的写法改成 mode=StateServer了,否则就会造成前面所说的Session中的值不确定的现象.但是,如果简单地这样改一下,系统又(yòu)报错说对于以StateServer 或者 SqlServer两种方式保存会话状态,要求对象是可(kě)序列化的(大意如此)...所以我们还需要再将对象做一下可(kě)序列化声明.
如果要保存的对象很(hěn)简单,都是由基本类型组成的,就只需要声明一下属性即可(kě),如:
[Serializable()]
public class ProductInfo {
private string f_SysID;
public string SysID {
get {
return this.f_SysID;
}
set {
this.f_SysID = value;
}
}
对于本例中,CartInfo 与 ProductInfo两个类,可(kě)以这样声明一下.只是CartManager就稍多(duō)几句话,如下:
[Serializable]
public class CartManager : ISerializable
{
private ArrayList _cart=new ArrayList();
public CartManager()
{
}
protected CartManager(SerializationInfo info, StreamingContext context)
{
this._cart=(ArrayList)info.Getvalue("_cart",typeof(ArrayList));
}
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
info.Addvalue("_cart",this._cart);
}
private CartInfo findCartInfo(string sid)
{
foreach(CartInfo ci in this._cart)
{
if( ci.Product.SysID.Equals(sid) ) return ci;
}
return null;
}
public ArrayList getCart()
{
return this._cart;
}
这样实现了整个CartManager--CartInfo--ProductInfo的可(kě)序列化声明,于是就一切正常了...
文(wén)章出自:
http://www.cnblogs.com/sharetop/archive/2005/10/08/250286.html