Hi khenatram,
I understand that you have two WCF service, one(CALLER) is submit jobs to third party through service, the other(LISTENER) is handling the status of jobs returned from third party. Now, you want the CALLER got notified when LISTENER update
the job status in db. If I misunderstood you, please correct me.
You could utilize
Windows Azure Queue storage to achieve this. the LISTENER send message in queue, and CALLER receive queue message to get notification on job status. In this way, the CALLER needn't polling query the db.
Thanks,
Mog Liang