I have a WCF service (hosted in IIS 6) with two services, FileMonitorService ans JobService. In one of FileMonitorService's methods I want to call a method in JobService through WCF. This method in JobService is executed asynchronously (fire and forget).
I suppose it'd be easy enough use a Thread Pool and signal when they are all done.. I'd rather use WCF though (this is a personal project, so I'm just trying out new things).
edit:
I came across these two posts, but they addressed WCF services across different servers.
Calling a WCF service from another WCF service
calling a WCF service object method in another WCF service
edit 2: Clarification on question:
Less a question I suppose than more of a request for thoughts on the approach.