tags:

views:

36

answers:

1

Hi,

I am creating a WCF service (CALLER) for Azure. The service(CALLER) calls async methods of another third party service(EXTN). The third party service calls the callback methods of another WCF service (LISTNER) hosted by me on Azure. CALLER enter the service details in the databsae with status = PENDING.

In the callback service (LISTENER) I am updating the status of the request as COMPLETED/FAILED in the database.

I want to notify my C# code after the value is database changed by LISTENER.

Is it possible????

A: 

how about trying this with Reactive Extensions for .NET (Rx) MS DevLabs

ajay_whiz