用8.3测试了好几天,目前的情况是用.net framework 32位的可以跑起来,用.net framework 64位页面会出现“service unavailable ”
后来问swsoft的技术 他们说只能用32位兼容模式运行,这个问题在x64上一直存在
MS兼容模式参考
http://support.microsoft.com/kb/894435
posted @ 2009-06-11 09:08 大力 阅读(48) 评论(0)
编辑
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\SubSystems]
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,20480,3072 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ProfileControl=Off MaxRequestThreads=80
-------------------------------------------------------------------
%SystemRoot%\system32\csrss.exe ObjectDirectory=\Windows SharedSection=1024,3072,3072 Windows=On SubSystemType=Windows ServerDll=basesrv,1 ServerDll=winsrv:UserServerDllInitialization,3 ServerDll=winsrv:ConServerDllInitialization,2 ProfileControl=Off MaxRequestThreads=80
修改SharedSection=1024,3072,512,三个数字全部加大。
这个地方就是控制 section的内存的
posted @ 2009-06-11 09:00 大力 阅读(415) 评论(0)
编辑