We used to run our application on framework 1.1 and upgraded to 3.5
recently(I understood 2.0 and 3.5 are same except for the few add In
s)
Our Prod environment is on Win 2003 & IIS 6.0 and server(s) is built
with 4 CPUs & 4GB RAM.
Based on Microsoft thread pool recommendations we have the following
Machine.config entries..
<processModel
enable="true"
timeout="Infini te"
idleTimeout="In finite"
shutdownTimeout ="0:00:05"
requestLimit="I nfinite"
requestQueueLim it="5000"
restartQueueLim it="10"
memoryLimit="60 "
webGarden="fals e"
cpuMask="0xffff ffff"
userName="XXXX"
password="XXXXX "
logLevel="Error s"
clientConnected Check="0:00:05"
comAuthenticati onLevel="Connec t"
comImpersonatio nLevel="Imperso nate"
responseDeadloc kInterval="00:0 3:00"
maxWorkerThread s="100"
maxIoThreads="1 00"
/>
<httpRuntime
executionTimeou t="90"
maxRequestLengt h="4096"
useFullyQualifi edRedirectUrl=" false"
minFreeThreads= "352"
minLocalRequest FreeThreads="4"
appRequestQueue Limit="100"
enableVersionHe ader="true"
/>
<connectionMana gement>
<add address="*"
maxconnection=" 48"
/>
But with framework upgrade I couldnt see anyof these entries in
machine.config.
Can I add all of the above in the framework 3.5 machine.config file???
httpRuntime node is not even present in latest machine.config, my
question is can I add it under system.web element???
Thanks in advance.
recently(I understood 2.0 and 3.5 are same except for the few add In
s)
Our Prod environment is on Win 2003 & IIS 6.0 and server(s) is built
with 4 CPUs & 4GB RAM.
Based on Microsoft thread pool recommendations we have the following
Machine.config entries..
<processModel
enable="true"
timeout="Infini te"
idleTimeout="In finite"
shutdownTimeout ="0:00:05"
requestLimit="I nfinite"
requestQueueLim it="5000"
restartQueueLim it="10"
memoryLimit="60 "
webGarden="fals e"
cpuMask="0xffff ffff"
userName="XXXX"
password="XXXXX "
logLevel="Error s"
clientConnected Check="0:00:05"
comAuthenticati onLevel="Connec t"
comImpersonatio nLevel="Imperso nate"
responseDeadloc kInterval="00:0 3:00"
maxWorkerThread s="100"
maxIoThreads="1 00"
/>
<httpRuntime
executionTimeou t="90"
maxRequestLengt h="4096"
useFullyQualifi edRedirectUrl=" false"
minFreeThreads= "352"
minLocalRequest FreeThreads="4"
appRequestQueue Limit="100"
enableVersionHe ader="true"
/>
<connectionMana gement>
<add address="*"
maxconnection=" 48"
/>
But with framework upgrade I couldnt see anyof these entries in
machine.config.
Can I add all of the above in the framework 3.5 machine.config file???
httpRuntime node is not even present in latest machine.config, my
question is can I add it under system.web element???
Thanks in advance.
Comment