Using WCF to expose underlying process
Posted
by Steven
on Stack Overflow
See other posts from Stack Overflow
or by Steven
Published on 2010-05-03T23:12:29Z
Indexed on
2010/05/03
23:18 UTC
Read the original article
Hit count: 221
wcf
I have a server application that spins up and monitors about 8 separate processes that gather data from different systems. The server app then runs some calculations over the aggregated data and stores it in a db. Simple stuff.
I now have a requirement to modify the process so that it no longer saves data to the db but rather exposes it directly to clients via WCF.
That's cool, I've used WCF a fair bit but I'm struggling a little with it for some reason.
Basically my plan is to HOST the WCF service in my application and have calls redirect into the internals of my existing application but I can figure out how to do that without getting the WCF class to encapsulate the existing app.
I want the service to inside my current app, not become it.
Any suggestions?
© Stack Overflow or respective owner