The asynccontroller tag has no wiki summary.
1
vote
2answers
23 views
Why is controller thread is blocked if I use the session?
I have a pretty simple controller:
public class HomeController : Controller
{
public ActionResult Index()
{
Session["SomeData"] = "123";
return View();
...
1
vote
1answer
82 views
Method returning null value from MSMQ within AsyncController
I'm attempting to build a framework for real-time delivery of messages (using MSMQ at the moment) to be displayed on a webpage that will serve as an informational display. As soon as a message lands ...
0
votes
1answer
90 views
AsyncController in MVC2.0
This is something what im trying in MVC 2.0
public class SomeController : AsyncController
{
public void SampleAsync()
{
AsyncManager.OutstandingOperations.Increment();
...
0
votes
0answers
245 views
ASP.Net MVC AsyncController + Session = weird behavior?
I have an AsyncController with two async actions:
public void FirstAsync()
{
AsyncManager.OutstandingOperations.Increment();
Func<string> getData = () =>
{
...
0
votes
0answers
127 views
How to resume all threads in ThreadPool which paused by WaitOne?
How to resume all threads in ThreadPool which paused by WaitOne?
For example, i have the code below, i open two tabs in firefox and go in they to url /Test2/LongRunningAction and after i open third ...
0
votes
1answer
81 views
Why does this controller double the inserts when I try to archive the results of the Bing Search API?
I'm trying to archive my search results for a term by
Using the Bing API in an async controller
Inserting them into database using Entity Framework
using the Bing API and insert them into a ...
2
votes
1answer
356 views
ASP.Net MVC AsyncController log request processing time
I need to get request processing time for asp.net MVC. i use IHttpModule subscribing for onBeginRequest and onEndRequest events. For sync controllers it works great but for async it returns wrong ...
1
vote
1answer
826 views
MVC3 Async Controllers for async loading from Entity Framework
To improve performance of our MVC3 application we want to mark some Controller's to AsyncController.
We use EF 4.x (latest stable), and need some advices, links how to make async calls to EF in a ...
0
votes
1answer
551 views
mvc3 async controller
I have a view which has one textbox and one submit button.
I want untill the user completes the textbox and presses the submit button to execute some queries somehow async.
How can i achive this? ...
0
votes
1answer
659 views
AsyncController callback not being invoked, how to invoke it?
Hello i'm trying to implement an AsynController,
here is my code:
[NoCache]
public class GraphController : BaseAsyncController
{
private readonly IReportsRepository _reportsRepository;
...
0
votes
1answer
244 views
Remove event listener from async controller on timeout
I have a problem with a MVC3 asynccontroller, When the controller asyc method runs I increment the asyncontroller and also starts to listen to backednd events
...
0
votes
2answers
603 views
Best way of handling timeouts with AsyncController
I have a long time polling controller in my MVC3 project. It has its timeout set to 30 seconds. I have a HandleErrorAttribute implementation that handles logging of all errors.
Since the timout ...
1
vote
0answers
441 views
Async controller child action in MVC 4
public class SomeController : AsyncController{
[ChildAction]
public Task<ViewResult> DoSomething(){ ... }
}
If I were to call the above action from inside a view of a normal ...
1
vote
1answer
370 views
Is it possible to have both GET and POST asynchronous controller actions of the same name?
Is it possible to have an AsyncController that has a GET and POST action of the same name?
public class HomeController : AsyncController
{
[HttpGet]
public void IndexAsync()
{
// ...
0
votes
1answer
396 views
To wait or not to wait inside an AsyncController's Async method
I've seen 2 flavors of working with asyncronous operations in mvc controllers.
First:
public void GetNewsAsync()
{
AsyncManager.OutstandingOperations.Increment();
using (ManualResetEvent mre ...
2
votes
1answer
1k views
How work with AsyncController in asp.net MVC 3?
Search several blogs about it but always are same examples.
I dunno if misunderstood or'm not knowing use but see no parallel process when work with AsyncController.
The following tests performed
...
2
votes
1answer
480 views
Asynchronous and synchronous action methods in the same controller
Is possible to have asynchronous and synchronous action methods in an AsyncController? Is there any drawback doing this?
The reason is that an asynchronous operation makes sense for a time consuming ...
0
votes
2answers
617 views
MVC3 - using AsyncController to prepopulate ObjectCache from database
I have a form that searches via AJAX against two different data sources. The data is relatively small but the speed at which it returns is slow.
I built a cache layer to store the full result after ...
3
votes
1answer
380 views
ASP.NET MVC AsyncController continue browsing while waiting
I want to use jQuery ajaxForm to post data to an AsyncController to fire off some task. I want the user to be able to continue browsing to other pages while this task completes. I then want to display ...
4
votes
1answer
454 views
How does AsyncController avoid using an ASP.NET worker thread?
How exactly does AsyncController avoid using an ASP.NET worker thread? If I use the event-based pattern (pseudo-code):
[AsyncTimeout(60000)]
public void WaitForWakeUp()
{
...
1
vote
1answer
271 views
AsyncController: Interference having 2 async methods
i'm having an AsyncController that has 2 AsyncMethods.
One is called GetMessages, the other Check.
It seems, that one call blocks the other, probably because both call ...
1
vote
1answer
574 views
Can I use async controllers in the following scenario?
I have an application in Asp.net MVC where at some point I would like to display a modal dialog to the user that would display process execution progress indicator.
The process behind the scenes does ...
3
votes
1answer
425 views
Async operation completes, but result is not send to browser
I want to implement a webchat.
The backend is a dual WCF channel. Dual channel works in the console or winforms,
and it actually works on the web. I can at least send and receive messages.
As a ...
1
vote
3answers
271 views
Autofac, OrchardProject and AsyncControllers
I'm working on trying to get an AsyncController to work in OrchardProject. The current version I'm using is 2.2.4.9.0.
I've had 2 people eyeball my code: http://www.pastie.org/2117952 ...
1
vote
0answers
400 views
asynccontrols asp.net Error Creating Control “ Object reference not set to an instance of an object”
here is my sample form.
I'm using asynccontrols
. Site compiles fine, loads fine, works fine. Can't view anything in designer. Halp?
<%@ Page Language="C#" AutoEventWireup="true" ...
0
votes
1answer
656 views
Multi-Threading Design Question for ASP.NET MVC 2
I am working on a Travel related website and here is my high level architecture:
ASP.NET MVC 2 (Presentation Layer)
Services Layer
Repository Layer communicating with external J2EE Services
For a ...
3
votes
1answer
900 views
T4MVC AsyncController
I've recently installed T4MVC using Nuget. I had an old version before this that worked fine, however I had a new requirement that needed an asynchronous controller. After creating the asynchronous ...
2
votes
1answer
655 views
How to write tests for ASP.NET MVC 3 AsyncControllers with MSpec
I want to write a TaskController for an ASP.NET MVC 3 application to some long running tasks, like sending a newsletter to the users of the site. I thought using an AsyncController would be ...
2
votes
1answer
773 views
ASP.NET MVC2 Can AsyncController access HttpContext.Current?
I'm trying to convert this method ExportTo3rdParty() to use an AsyncController:
public JsonResult SaveSalesInvoice(SalesInvoice invoice)
{
SaveInvoiceToDatabase(invoice); // this is very quick
...
1
vote
1answer
2k views
ASP.NET MVC2 Call AsyncController method from jQuery?
I'm trying to learn how to use AsyncController in MVC2, but there is very little documentation/tutorials out there. I'm looking to take one normal controller method that has a very slow export to a ...
4
votes
2answers
2k views
Can ASP.NET MVC's AsyncController be used to service large number of concurrent hanging requests (long poll)?
Frameworks like Node.js, Tornado, and Twisted let developers create server-push applications that supports large number of concurrent hanging requests (10k+). From what I understand, they all achieve ...
3
votes
1answer
740 views
AsyncController OutputCache
When implementing an asynchronous controller action in ASP.NET MVC, if I want to output cache the ActionResult, which method do I put the OutputCache attribute on?
public class PortalController : ...
1
vote
3answers
512 views
Asynchronous Controllers at ASP.NET 4 make sense?
Asp.net 2 have 12 threads by default
Now Asp.Net 4 have 5000. We still need async controllers?
13
votes
1answer
3k views
Implementing a Progress bar for long running task implemented with an ASP.NET MVC 2 AsyncController
After reading the documentation on AsyncControllers in ASP.NET MVC 2, I am wondering what's the best way to implement an ajax progress bar in this scenario. It seems a bit odd that the tutorial does ...
1
vote
1answer
294 views
ASP.NET MVC AsyncController together with NHibernate
I am using nhibernate in an open session per view approach where the session opens before the action method and closes right after.
Using an AsyncController makes this model break because the ...
5
votes
1answer
385 views
ASP.NET MVC AsyncController xxxCompleted
When implementing ASP.NET MVC AsyncController the xxxCompleted method has to be Public. I'm wondering if this means the xxxCompleted method can be invoked directly, or if this is protected internally ...
4
votes
2answers
838 views
how to use AsyncController in MVC application using Ninject for DI?
Does anyone know how to use an AsyncController in a mvc application that uses Ninject for DI?
AsyncController works fine when i dont use ninject but i cant make them work together.
I added ...
0
votes
1answer
600 views
Resource not found in asp.net mvc AsyncController
I just converted a my controller to asyncController in asp.net mvc 2. (ie: spliting action method About into AboutAsync and AboutCompleted). However, I am getting a resource not found error.
My ...
10
votes
2answers
1k views
Building unit tests for MVC2 AsyncControllers
I'm considering re-rewriting some of my MVC controllers to be async controllers. I have working unit tests for these controllers, but I'm trying to understand how to maintain them in an async ...
5
votes
2answers
2k views
ASP.NET MVC 2 asynchronous action with timeout
I want to write an asynchronous action in ASP.NET MVC 2 that waits up to 5 seconds for an event to occur. If the event occurs then the server responds with a result, otherwise the request times out.
...