0
votes
0answers
3 views
Using Observable.FromEvent when calling a WCF service in Silverlight
I am trying to use the .NET Reactive Framework to simplify some asynchronous calls to a WCF service used by a Silverlight 3 app that I'm writing.
The trouble is that I'm having a hard time finding a …
0
votes
0answers
8 views
Retrieving form data from a DetailsView in insert mode, without a DataSourceId
I have an application where I want to view, edit and insert records. I'm trying to use the DetailsView control. However, for this app I can't use a SqlDataSource control, and an ObjectDataSource …
0
votes
2answers
12 views
Anonymous methods and Async I/O
Can anyone tell me if I'm likely to run into unintended behavior if I use anonymous methods with Async I/O?
As an example:
Action<Socket> acceptedHandler = DoAccept
SocketAsyncEventArgs e = …
6
votes
7answers
355 views
Good introduction to the .NET Reactive Framework
Aside from the Microsoft documentation, does anyone know of a good introduction and tutorial to the Microsoft Reactive (Rx) framework?
Also, could someone articulate a good example (with code) of a …
0
votes
1answer
7 views
Cross domain asynchronous multipart POST file uploads using flXHR?
I am building a "widget" that can be embedded in other people's websites, that talk back to my server.
Right now I am using flXHR for the cross domain asynchronous communication, and it works fine …
0
votes
3answers
112 views
How to block until an asynchronous call is complete?
I have a method which calls an asynchronous method, and a callback which is fired when the asynchronous method finishes.
I want my method to appear syncrhonous, so I've created an AutoResetEvent, …
0
votes
0answers
20 views
Asynchronous HttpWebRequests and a null HttpContext.Current.Response/Request object.
I have a web application the relies heavily on web services. Everything with the services is done asynchronously and with AddOnPreRequestHandlerExecuteAsync. Anyhow, most of my calls work just fine, …
9
votes
4answers
150 views
Not calling Delegate.EndInvoke can cause memory leak… a myth?
There have been a lot of discussion around this and everyone tend to agree that you should always call Delegate.EndInvoke to prevent a memory leak (even Jon Skeet said it!).
I always followed this …
1
vote
2answers
39 views
How can I replace an <object…> with the actual content of that object?
Lets say I have this:
<object class="MyClass" type="text/html" data="/Whatever/1?renderpartial=1"></object>
<object class="MyClass" type="text/html" …
0
votes
2answers
18 views
how to call procedure in database asynchronously from java 1.4 code?
platform:
Sql server 2000
java 1.4
ejb 3.0
0
votes
3answers
76 views
Synchronous vs Asynchronous languages
Hi All,
In last 1 year I was working on Java and flex. While coding flex, most of my code parts went for a toss since its asynchronous. It made me to think about the real advantages and disadvantages …
0
votes
1answer
18 views
ajax call with jquery - parsing incoming feedback data
I got a server-side script that I call with jQuery ajax method. It can take quite a while for it to process data set. After each row of input data is processed, it prints out a "OK <row id>" to …
1
vote
2answers
68 views
Recommendations: asynchronous, portable file io in c++
Hi all,
Title says it all. I'm looking for a C++, async io library that should be compatible with both unix and windows systems.
What are some good libraries?
Is this asking too much for a …
2
votes
2answers
41 views
How to catch exception from thread?
I am using a free .net telnet component (De.Mud.Telnet), which has several asynchronous methods you can call, and the component fires events when things happen. My problem is that the component is …
1
vote
1answer
30 views
Multiple Async Request Synchronization
I'm developing a Silverlight app that makes multiple async requests to a number of web services. I want a modal "loading" dialog to stay active until all the requests have completed. I'm managing …
