I have a WCF data service with some methods I call asynchronously during page_load events.
I need a solution to call these methods from either a script or console app if necessary.
I created a console app that references the WCF .dll libraries. I have to duplicate some of the configuration variables that are in web.config under the WCF service into an app.config under the console app.
I want the app.config to mirror the web.config automatically or somehow point the console app at the WCF services web.config.
My console app and wcf projects are adjacent to eachother in the same solution, so the 'configSource' attribute wont work. No parent directories or absolute paths are allowed.
Does anyone know of a work-around for this?