Help(urgent) needed for the Framework 3.5 and machine.config.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rKrishna2k6@gmail.com

    #1

    Help(urgent) needed for the Framework 3.5 and machine.config.

    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.












  • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

    #2
    RE: Help(urgent) needed for the Framework 3.5 and machine.config.

    a general cleanup of machine.config was done in framework 2.0. to make its
    smaller, all default values were removed, and are documented in
    machine.config. comments. also machine.confifg was broken into serveral files.
    there is now a web.config.

    -- bruce (sqlwork.com)


    "rKrishna2k6@gm ail.com" wrote:
    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.
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >

    Comment

    • rKrishna2k6@gmail.com

      #3
      Re: Help(urgent) needed for the Framework 3.5 and machine.config.

      Thanks for the reply.

      Information you provided explains about ProcessModel element default
      values.
      Please tell me can I include missing httpRuntime and
      connectionManag ement Nodes in the new machine.config file with the
      suggested(micro soft thread pool settings) values??

      Comment

      Working...