Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
2k views

PHP asynchronous processing with beanstalkd. Do you recommend it?

would you recommend using beanstalkd [ http://kr.github.com/beanstalkd/ ] for asynchronous processing in PHP ? I need some feedback/comments pros-cons, from anyone that has used this lib. Thanks,
7
votes
3answers
450 views

How to run a PHP script asynchronously?

I am creating a PHP script that will be run via the command line. As part of this script, there are times where I might need to spawn/fork a different script that could take a long time to complete. I ...
7
votes
4answers
180 views

Asynchronous SQL Operations

I've got a problem I'm not sure how best to solve. I have an application which updates a database in response to ad hoc requests. One request in particular is quite common. The request is an update ...
5
votes
4answers
140 views

Why does using the Asynchronous Programming Model in .Net not lead to StackOverflow exceptions?

For example, we call BeginReceive and have the callback method that BeginReceive executes when it has completed. If that callback method once again calls BeginReceive in my mind it would be very ...
4
votes
1answer
113 views

Must call EndRead() in ALL cases?

Related to asynchronous IO using a (bidirectional) NetworkStream, MSDN says that "EndRead must be called once for every call to BeginRead." Is this true even for cases where the EndRead() will throw ...
4
votes
1answer
510 views

Asynchronous processing asp.net mvc with client side progress feedback

I am building an image management tool and I want to know how I can create a Vimeo-like experience. Description of what needs to happen The user will be able to upload many potentially large images ...
4
votes
4answers
1k views

Asynchronous email processing in Java web application

I would like to implement asynchronous email sending in my web application when users register for a new account. This is so that if there is a problem or delay in sending the email message (e.g. the ...
3
votes
1answer
104 views

Getting output from and giving commands to a python subprocess

I am trying to get output from a subprocess and then give commands to that process based on the preceding output. I need to do this a variable number of times, when the program needs further input. (I ...
3
votes
1answer
75 views

Timing out the execution time of a controller/method in Spring

I have a Spring controller that is currently being accessed normally, but i want to change the implementation in such a way that if the task the controller is performing takes more than a defined time ...
3
votes
1answer
200 views

calling a C++ function from C# and sending data back to the C#

I have a C# application that calls functions in a DLL written in C++. The calls work fine and the code is executed using this method in the C#: [DllImport("myDLL.dll")] public static extern void ...
3
votes
1answer
387 views

Rails background/async task requirement

We have a rails v2.3.8/apache/passenger application & have async requirements for some long running tasks. So I have been evaluating some solutions around rails/ruby, wanted to get feed back on ...
2
votes
5answers
417 views

C# .NET Web Service Asynchronously

I'm trying to implement an API that performs some really lengthy tasks using a Web Service. I basically want the Web Service to kick off a thread that performs the lengthy task and leaves it running ...
2
votes
1answer
455 views

Data not displayed first time in android after copying the file from assets to data folder

Description I have used the code tip from http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ to copy a pre-filled data file to the target and handled this in a ...
2
votes
1answer
846 views

Asynchronous Processing in JBoss 6 (“Comet”)

edit: Retagged as tomcat/jboss, since this could be a question about the Tomcat embedded inside JBoss 6, rather than JBoss itself I have an extremely simple servlet, which works on Glassfish v3. It ...
1
vote
4answers
106 views

Does Asynchronous processing actually help if in case we have database calls into it?

In a server, if I have a async function which will process some database calls and fetch some records from the table. If the server receives high number of requests, that database call might actually ...
1
vote
2answers
81 views

How to implement asynchronous loading in ASP.NET page?

How to implement asynchronous loading in ASP.NET page? I have 3 sections in my ASP.NET page. All the sections are independent. LoadSection1(); LoadSection2(); LoadSection3(); Each section is ...
1
vote
0answers
76 views

Suggest best way for asynchronous loading in ASP.NET page

I am developing a report (ASP.NET page) using Telerik RAD Grid controls and update panels. I have 3 filters to load the report. I am updating the report based on the filter selection. I have 3 ...
1
vote
2answers
131 views

FileSystemWatcher not working properly

I am using FileSystemWatcher to scan a folder where files are being uploaded from the web application. I have more than 1000 files being uploaded to the folder. Now, the problem is that the ...
1
vote
2answers
128 views

shared_ptr and logical pointer ownership use-case in a complex design

I have an Object A that contains a shared resource (shared_ptr) r, A is the creator/owner of r upon construction the object "registers" its r with another object B. Object B holds a reference to A's r ...
1
vote
3answers
152 views

Silverlight sequential operation for Asynchronous operation

I have 3 operation that need to process sequentially, they are GetMainInformation GetDetails1 GetDetails2 I'm doing this by code like below but I think it isn't clean. I want to know an ...
1
vote
1answer
60 views

What is considered one of the best asynchronous programming ideas based open source code(software) to read?

I am looking to learn asynchronous programming and would like to start reading some open source code based on that. Is there a good open source library or application that uses the best practices of ...
1
vote
1answer
446 views

C# process cannot access file because it is being used by another process

Please help me out with the problem I am facing. I am writing an importer in C# for an xml file. Every time I run the import I need to download the XML file from a URL. I have wirtten the following ...
1
vote
3answers
1k views

Action T synchronous and asynchronous

I have a ContextMenuStrip control that allows you to execute an action is two different flawours. Sync and Async. I am trying to covert everything using Generics so I did this: public class ...
1
vote
2answers
976 views

How to implement asynchronous processing with J2EE application

I have an enterprise application with around 2k concurrent users every day. These users handle customer calls so application speed is of vital importance. When a user is wrapping up a call they ...
0
votes
1answer
34 views

How to show upload percentage in asp.net

I have a asynchronous file upload inside the update panel and it uploads the file once the file is selected. When the file is uploading I am showing a update progress. Here I have a Image saying ...
0
votes
2answers
74 views

Asynchronous Webservice

I wanted to clear something about Asynchronous Webservices. I read that weblogic give you the ability to create Asynchronous Webservices. but I also read that it's only supported as log as the ...
0
votes
0answers
39 views

jboss EJB AsyncUtils.mixinAsync: when a task is performed after a asynchronous call happend

I am using org.jboss.ejb3.common.proxy.plugins.async.AsyncUtils.mixinAsync to perform time consuming task asynchronously due to my use of EJB 3.0 instead of EJB 3.1. Via asynchronous call, we can give ...
0
votes
1answer
70 views

Page Lifecycle and Asynchronous Requests in C# asp.net web forms

If I send an HttpWebRequest and send it out with BeginGetResponse with a callback, my callback never gets hit. THe page finishes before the response is given. How do I grab the response? I have ...
0
votes
2answers
78 views

Learning Abut IAsyncResult requests and Threads in C#

I have the following lines of code in a submit button when a file gets uploaded. So the request starts and runs in the background and tells the user that the file is processing. // Prepare the ...
0
votes
4answers
562 views

Background network calls - iOS

I need to implement posting some data to a web server in the background. Just to clarify, by "in the background", I don't mean the normal way of showing a spinning icon and posting data to a web ...
0
votes
3answers
117 views

asynchronous processing in asp.net

on my page load I am loading few list, also on my page I have filter conditions which is taking around 30 seconds to get the filtered records from the database, reason : Database is big and I have to ...
0
votes
2answers
397 views

Returning value from a google maps callback function

Hi I am working with google maps API I have this huge code, so I dont want to scare away people with code Basically this is what I need to do I have a javascript(1) function that I call from Html ...
0
votes
1answer
110 views

How run and link AsyncBindingList to listbox

I have an application where I list all the files from the folder selected. And I have a class called FileManager which contains, AsyncBindingList which is connected to my listBox on the form. here is ...
0
votes
2answers
340 views

Run a background asynchronous process from DLL

I have a DLL that I would like to run as a background process. So in the C# Application I would first like to run this process in the chosen DLL then let my Application continue with the DLL processes ...
0
votes
1answer
75 views

Optimal language for asynchronous processing of information

Before delving into the heart of the matter, first I will have to outline the current scenario. I currently have a php script that executes through CLI to process some data. It goes something like ...
0
votes
1answer
160 views

Staged, Asynchronous Processing in Servlet Containers?

I've been reading a bit about Stage Event Driven Architecture (SEDA) and the concept of asynchronous I/O. I've come across a few people talking about implementing SEDA to handle HTTP requests. ...
0
votes
1answer
294 views

Bind arbitrary Python objects to CherryPy sessions

I'm using CherryPy to make a web-based frontend for SymPy that uses an asynchronous process library on the server side to allow for processing multiple requests at once without waiting for each one to ...
0
votes
2answers
307 views

LINQ-SQL & ADO.NET - How to make a bulk transaction entirely asynchronous?

So i'm dealing with an ASP.NET 4.0 Web Forms Application in which the DAL is built with a combination of LINQ-SQL and classic ADO.NET (for auditing transactions, and bulk updates). I have an admin ...
0
votes
1answer
67 views

I/O Asynchronous Completion

In the following, it is said that an I/O handle must be associated with the thread pool but i could not find where in the given example an handle is associated with the thread. Which function or code ...
0
votes
2answers
317 views

How to implement async pattern in windows forms application?

I'm using an MVC pattern in winforms application. I need to call remote service asynchronously. So On some event in View I invoke corresponding Presenter method. In Presenter I call BeginInvoke method ...
0
votes
1answer
714 views

Asynchronous Storec Proc without waiting for completion

I have a client application that scrapes data into a raw table. This client application makes an asynchronous call to a stored procedure that actually parses the raw data into tables. This processing ...
-1
votes
3answers
116 views

Value getting changed in the iteration before the call begins

I've the following code in my app. MyEventHandler handler = null; //Declare the handler foreach (string pname in group) { handler = getHandler(pname); //Get the handler if(handler == null) { ...
-2
votes
1answer
97 views

how retrieve the completely result from shell in Asynchronism process?

Hi all refer to these post : here1 and here2 at last I solve my problem by build a asynchronous solution,and it work well!!! but there is a problem that i face with it,now my code is like this: class ...