Tagged Questions
The httpruntime tag has no wiki summary.
20
votes
4answers
6k views
ASP.NET MVC and httpRuntime executionTimeout
I would like to increase the httpruntime executionTimeout for a subsection of an ASP.NET MVC application.
In a regular Web App, you could use
<configuration>
<location ...
6
votes
4answers
4k views
How to prevent an ASP.NET application restarting when the web.config is modified?
I'm hosting the ASP.NET runtime via the ApplicationHost.CreateApplicationHost method. When I modify the web.config while the application is running, i see lots of first chance ThreadAbortExceptions ...
4
votes
2answers
1k views
ASP.Net httpruntime executionTimeout not working (and yes debug=false)
We just recently noticed that executionTimeout has stopped working on our website. It was definitely working ~last year ... hard to say when it stopped.
We are currently running on:
...
2
votes
2answers
270 views
HttpRuntime Cache vs. static dictionary/fields
What are the main pros and cons for using HttpRuntime Cache against using simple static field?
I need to store data in scope of entire ASP.NET application.
HttpRuntime.Cache["MyData"] = ...
2
votes
1answer
290 views
How to programmatically set (using GET SET property) “httpRuntime maxRequestLength” in ASP.NET with C# as code behind
How to programmatically set (using GET SET property) "httpRuntime maxRequestLength" in ASP.NET with C# as code behind
is there any way to set values in web.config through C# ?
2
votes
3answers
2k views
Locking HttpRuntime.Cache for lazy loading
We have a website running .NET 2.0 and have started using the ASP.Net HttpRuntime.Cache to store the results of frequent data lookups to cut down our database access.
Snippet:
lock (locker)
{
...
1
vote
1answer
37 views
AppHarbor - Why is my <httpRuntime maxRequestQueryStringLength=“XXXX”/> not working?
I have a long querystring value I need to pass in (itself a questionable practice, I understand), and I am not able to get it to take effect on my Appharbor app instance.
Locally, I've made this ...
1
vote
1answer
107 views
Uploading file size over 4MB in .NET
I am having trouble uploading a file size over 4MB. I've tried adding
<httpRuntime maxRequestLength="102400" executionTimeout="99999" />
to my Web.Config like many threads have suggested, but ...
1
vote
1answer
253 views
Upload large files on webpage?
We use the MojoPortal to a website and have some problems to upload files that is around 100 MB with the upload module. (Pleas note that this has probably nothing to do with MojoPortal but with the ...
1
vote
1answer
174 views
Storing List in System.Web.HttpRuntime.Cache, is it serialized?
Trying to find out if the System.Web.HttpRuntime.Cache or any other possible caching is serialized?
Basically i need to store list in Cache, and it has to be Read/Write by many users.
So, I can out ...
1
vote
1answer
3k views
Configuring httpRuntime execution timeout for large downloads
At my place of work, we have an ASP.NET page that uses the following code to perform a file download. We use this rather than Request.TransmitFile() because the file is coming directly from a zip ...
1
vote
2answers
183 views
What is the lifespan of the HttpRuntime Cache (any simple alternative?)
I have been using the HttpRuntime Cache for caching simple user preferences on an in house [dasboard] asp.net app that gets used by almost 200 users daily.
I simply cache stuff such as the last query ...
0
votes
0answers
55 views
Configuring httpruntime, processModel etc for popular asp.net website
We have a pretty popular asp.net website (around 20,000 unique IPs per day) hosted on IIS6 - windows 2003 server (cpu has 2 cores).
Some time ago I asked this question: Very weird IIS6 asp.net ...
0
votes
0answers
157 views
C#: Extending SimpleWorkerRequest to support HTTP file uploads outside of IIS
I am working on a project that will start up an ASP.NET application (including MVC apps) without the need for a web server. The point of the project is to enable better integration testing of web ...
0
votes
1answer
163 views
Uploading and Playing large videos. HttpRuntime tag settings Combination. Asp.net4.0 , C#
net page to upload a large file and a generic handler to play these large wmv video files of size which can be upto 150 MB's. I have the file content stored in varbinary type in SQL Server 2005.
I ...
0
votes
1answer
270 views
Are there any dangers in increasing the executionTimeout and maxRequestLength of an ASP.NET site?
I have a user who is trying to upload a 150 megabyte file using an ASP.NET site. They are getting an HttpException:
System.Web.HttpException: Maximum request length exceeded.
I believe I can solve ...
0
votes
1answer
175 views
C# Unit Test set HttpRuntime.BinDirectory
I've got a clear and simple question.
The webapplication i'm working on is using unit tests (close to 1500 tests). Due to an required modification in the application several tests are failing because ...
0
votes
3answers
3k views
Ajax AsyncFileUpload.FileBytes returns null
I have a file upload page with an AsyncFileUpload control. When the user browses to the file the upload control pulls the file into memory. I then have an Upload button which fires the following code ...
0
votes
1answer
640 views
WCF Service hosted in IIS - Can't seem to cache or retain state?
I'm trying to cache some application data that only needs to be instantiated when the application starts. I've tried using HttpRuntime.Cache, creating a static object that is instantiated only when ...
0
votes
2answers
268 views
Issue with Callback method and maintaining CultureInfo and ASP.Net HttpRuntime
Here is my issue. I am working on an E-commerce solution that is deployed to multiple European countries. We persist all exceptions within the application to SQL Server and I have found that there are ...
0
votes
2answers
147 views
HttpRuntime..cctor takes forever to execute
Dead simple code:
using System;
using System.Diagnostics;
using System.Web;
using System.Web.Caching;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
...