Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

change a parameter in the "machine.config"

Status
Not open for further replies.

iblearnen

Instructor
Jul 17, 2005
93
US


I need to change a parameter in the "machine.config" this is all I have and my searches are going no place fast


The parameter needs to be changed in the "machine.config" file which controls many attributes of how applications run on the computer. Only someone signed on as the administrator should changed

The location of the file is usually in the C:\Windows\Microsoft.NET\Framework\v1.1.4323\config. I usually just use search and search for maching.config

When the file is found open it in Notepad. Search in the text for "httpRuntime" and it should take you to the area in the machine.config file shown below. The default is 90 seconds. I would change that value to 270, which triples the timeout.


Thanks
 

This was emailed to me from our home office and is all I have to go on


The parameter needs to be changed in the "machine.config" file which controls many attributes of how applications run on the computer. Only someone signed on as the administrator should changed

The location of the file is usually in the C:\Windows\Microsoft.NET\Framework\v1.1.4323\config. I usually just use search and search for maching.config

When the file is found open it in Notepad. Search in the text for "httpRuntime" and it should take you to the area in the machine.config file shown below. The default is 90 seconds. I would change that value to 270, which triples the timeout.


Thanks
 
In C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\machine.config

httpRuntime Attributes:
executionTimeout="[seconds]" - time in seconds before request is automatically timed out
maxRequestLength="[KBytes]" - KBytes size of maximum request length to accept
useFullyQualifiedRedirectUrl="[true|false]" - Fully qualifiy the URL for client redirects
minFreeThreads="[count]" - minimum number of free thread to allow execution of new requests
minLocalRequestFreeThreads="[count]" - minimum number of free thread to allow execution of new local requests
appRequestQueueLimit="[count]" - maximum number of requests queued for the application
enableKernelOutputCache="[true|false]" - enable the http.sys cache on IIS6 and higher - default is true
enableVersionHeader="[true|false]" - outputs X-AspNet-Version header with each request
-->
<httpRuntime executionTimeout="90" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" enableVersionHeader="true"/>
<!-- compilation Attributes:

The line appears around line 130.



____________________________
Users Helping Users
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top