Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
2k views

C# Socket.Receive message length

I'm currently in the process of developing a C# Socket server that can accept multiple connections from multiple client computers. The objective of the server is to allow clients to "subscribe" and ...
4
votes
3answers
1k views

How far will GWT AsyncCallback execute while waiting for the response?

If I were to call from a function (all written in Java): public int hello() { int a = 1; executeCallback(); // C: Question lies in this range return a; } public void executeCallback() { // A: random ...
3
votes
4answers
205 views

asp.net AJAX best practise for client calling slow async process on server

I have a service that performs a slow task, when its finished I want to update the client using AJAX with the result of the task. In my client I call the task many times to update a grid of results. ...
3
votes
1answer
330 views

Callback functions: passing callbacks from a C# winform app to a referenced VC++ Exe

Asynchronous Callback Functions Perspective: I am upgrading several VB6 ActiveX applications to C#.net, which all talk to each other using callback functions which they register with a referenced ...
3
votes
1answer
731 views

WP7 Propogate exception from BeginGetResponse callback

I'm using HttpWebRequest to call a web service. If the AsyncCallback from BeginGetResponse throws an error, I want to propagate it up to my main program flow. I'm having trouble doing this because the ...
2
votes
3answers
316 views

Is the callBack method called before the assignment or after here?

I have the code below which is basically calling a Domain Service in a SilverLight Application. LoadOperation<tCity> loadOperation = _dataContext.Load(query,callBack, true); Can you tell me ...
2
votes
1answer
311 views

Problem with AsyncCallback in C# .NET 3.5

I have created a single threaded Windows application which communicates with more than 100 sockets (using AsyncCallbacks), may be 5-10 sockets in a sec. The application works fine when I launch from ...
2
votes
3answers
1k views

How do I delegate an AsyncCallback method for Control.BeginInvoke? (.NET)

Is it possible to use Control.BeginInvoke in anything other than a "fire & forget" manner? I want to change the following request to delegate a callback method so that i can do something when each ...
1
vote
2answers
74 views

Showing Multiple Graphs w/GWT Visualizations

This bit of code (below) works to display 1..n LineCharts on the screen without incident. What I'm wondering is how efficient it is. I'm calling the ...
1
vote
3answers
69 views

Javascript - add more parameters to a callback function

I'm calling an async function that needs a callback function as parameters. Here is the javascript code: for(i in array) { var item = array[i]; functionToCall(item[i][1], 50, function(a, b) ...
1
vote
2answers
163 views

AsyncCallback getting values through reference variable

I need to call a function using asynchronous delegates, when i go through the tutorial of the AsyncCallback I saw the async call back defined as below: static void CallbackMethod(IAsyncResult result) ...
1
vote
4answers
395 views

How to fire an asynchronous task, but wait for all callbacks before returning ActionResult?

I have an ASP.NET MVC 3 action method which accepts a HttpFileCollectionBase in the HTTP POST. In this method, i need to resize and upload the image 3 times. The action method currently looks like ...
1
vote
1answer
244 views

When should I use UdpClient.BeginReceive? When should I use UdpClient.Receive on a background thread?

Essentially, what are the differences between these beyond the obvious? When should I use which form? class What { public Go() { Thread thread = new Thread(new ThreadStart(Go2)); ...
1
vote
1answer
229 views

C# How do I pass more than just IAsyncResult into AsyncCallback?

How do I pass more than just the IAsyncResult into AsyncCallback? Example code: //Usage var req = (HttpWebRequest)iAreq; req.BeginGetResponse(new AsyncCallback(iEndGetResponse), req); //Method ...
1
vote
2answers
454 views

error when I use GWT RPC

I have a problem with Eclipse when I use an RPC.. If I use a single method call it's all in the right direction but if I add a new method to handle the server I get the following error: ...
1
vote
1answer
365 views

Throwing an exception from a BackgroundWorker which calls an async. method (Webrequest)

My main application creates a new BackgroundWorker X the DoWork event handler of X calls a method Y of my controller. This method creates the WebRequest (async.) instance and the callback using ...
1
vote
3answers
1k views

Asynchronous callback - gwt

I am using gwt and postgres for my project. On the front end i have few widgets whose data i am trying to save on to tables at the back-end when i click on "save project" button(this also takes the ...
1
vote
1answer
630 views

AsyncCallback in .net web page run away

I have been working on a small project on and off for a while and I think I am close but it has 'issues'. The idea is to FTP a file up to a 3rd party, they process it and 5-10 minutes later they ...
0
votes
0answers
12 views

BeginAuthenticateAsClient doesn't work in new AppDomain

I am trying to create an SslStream object in a new AppDomain. However, running the BeginAuthenticateAsClient method on the stream causes an Exception to be thrown. internal class SslWrapper : ...
0
votes
1answer
22 views

Instead of scanning multiple ports I'm scanning only one and when port is closed my app closes

I'm trying to scan multiple ports at once using asynchronymous scanning. The problem is that I can only display the first working port and then waiting like 20 seconds my app is closing with out ...
0
votes
1answer
33 views

The results of ports scanning seem to be incorrect while using AsyncCallback

I'm trying to port scan given IP address with range of 20 ports. I know that port 80 is open and all other are closed. My code is showing that all ports are open. I'm trying to use asynchronous ...
0
votes
0answers
32 views

iPhone wait for the call back method

I have a scenario in which i call a web service method using sudzc code and it has a call back handler which gets called on the response received. My problem is i have a utility class in which there ...
0
votes
2answers
70 views

GWT Async Call Blocking the UI

I have a text box where the user can type in characters and a suggestion box opens up. I have fired events on the key up event . There is a timer set after which an async call is fired and on success ...
0
votes
1answer
74 views

Calling multiple WCF service using IAsyncResult and AsyncCallback

I have one web page MyWebPage.aspx which while loading has to show data from two webservices along with it's own algorithm. 1) WebServiceI.SomeMethod() -> Takes 10 seconds aprx. to respond. 2) ...
0
votes
1answer
55 views

Webservice : AsyncCall finished : But WaitOne() still waiting

I am calling a WebService method via a Command Line Exe. This method call is Async Call and I am using WaitOne after the Call. I am doing ManualRest.Set() in completed method. The above setup ...
0
votes
1answer
30 views

passing extra variable to a callback

I have the following call which runs a method within a cacheListener object asynchronously: ohttp.asyncOpenCacheEntry(url, 4, cacheListener); Here is what the callback object/function looks like: ...
0
votes
0answers
40 views

Debug AsyncCallback in visual studio

I would really appreciate any help on the following issue. I'm developing a client-server program where the client is done in c# and the server is done in C programming. for the client side (C#) im ...
0
votes
0answers
132 views

How to Dispose using smtpClient.Send() and AsyncCallback

I'm maintaining a .NET 4.0, MVC 3 application. I tried using SendAsync(), but the calling thread was being blocked. I'm probably not configuring SendAsync() correstly. Actually, SmtpClient.Send() ...
0
votes
3answers
310 views

For-loop and async callback in node.js?

I'm new to JavaScript and to node.js. I want to loop through a directory and add all file stat (not other directories) to an array. As you see below there is a problem with my code since the callback ...
0
votes
1answer
59 views

How to get the parameters passed to the asynchronous method in the callback

I need a Label that is transmitted to the AsyncSendRegistrationMethod in CallbackMethodSendRegistration. private delegate ResponceFromServer AsyncSendRegistrationDelegate(RegistrationToUser ...
0
votes
0answers
116 views

AsyncCallback Error in a webfarm environment

We are getting ready in a few weeks to deploy a new product to brand new webservers and so we are doing some deployment testing in advance. (Smart move? :-)) Anyway, we have 2 web servers (WEB01 ...
0
votes
0answers
79 views

ThreadCulture for ThreadPool

I have an ASP.NET handler which receives AJAX requests from clients and process them. The processing requires calling an API which has only Async Methods. The API has been implemented using Thread ...
0
votes
1answer
199 views

GWT displaying widgets with asynchronous calls on RootPanel

I am having problems while adding my widget into the RootPanel of another container class. I think that it may be related to the Asynchronous call that I make during the creation of the widget. I have ...
0
votes
2answers
610 views

Handling repeater events aynchronously

I have a custom search control on my page (asp.net) which contains a textbox and a repeater for displaying results. The repeater is populated with a callback as the user types ... nice and simple ...
0
votes
0answers
113 views

Use Data from Process's RedirectStandardOutput Callback

In my c# console app's Main() function, I create a process, and redirect the standard output to an event handler. I want to make a function for GetPlayers() which will issue the command "playerlist" ...
0
votes
1answer
288 views

How does a Mongoose callback function know what the second parameter is the db.query result?

How does the anonymous callback function know that 'item' (or really the second argument in the following callback function after Mongoose queries since they can be called anything) in the below ...
0
votes
5answers
369 views

Javascript callback from custom jQuery AJAX function

I have this jQuery code (function () { function load_page (pagename) { $.ajax({ url: "/backend/index.php/frontend/pull_page/", type: "POST", data: ...
0
votes
1answer
310 views

trigger event from an AsyncCallback in c#

My question involves events and where I am triggering the events in my class. This class wraps my TCP functionality and I am using TcpListener to achieve this. I realize some TCP stuff may be missing ...
0
votes
1answer
418 views

Asynchronuos callback saves value but prints FAILED

I am using nested Asynchronous callbacks to save my front-end data to the back-end database. The data is being save into the tables the way i want them to, but it is printing that it failed. Here is ...