vote up 2 vote down star
1

Folks,

I've been trying to find a way to load my WCF service configuration (that huge BLOB of XML config data) from an alternate source - not the standard web.config / app.config.

We're running in a restricted environment where we don't have access to the server's file system, and thus we cannot make tweaks and changes to our WCF configs ourselves - we always have to find IT managers to handle that. We've put our entire configuration into a sQL Server database and trimmed down the web.config basically to a section - that's it.

Now, we were wondering if there's a nice, documented way to do the same for WCF - is there a mechanism to plug in a "config provider" of sorts? Could we somehow store our config entries in a database table and feed them to the services as they start up?

I haven't been able to find any really useful and understandable documentation and samples on this..... any takers here?!?!

Cheers! Marc

flag

So you basically want to be able to configure your endpoints and behaviors via edits to the configuration that would be dynamically loaded when a request comes in? I guess you want to be able to change them via some sort of user interface which allows edits to this stored configuration? – bnkdev Nov 24 '08 at 20:17
Well, not even really dynamically - I would just like to store the whole WCF config that a service uses when starting up, or that a client uses when finding out how to connect to a service, somewhere else than the usual default XML config files. Things like binding, address etc. – marc_s Dec 14 '08 at 19:25

1 Answer

vote up 2 vote down check

You can do this, it's a little bit of work though.

You'll have to create your own custom service host and over ride the apply configuration method.

Check out: http://blogs.msdn.com/dotnetinterop/archive/2008/09/22/custom-service-config-file-for-a-wcf-service-hosted-in-iis.aspx

link|flag
Very interesting indeed - thank you very much for the pointer! – marc_s Dec 21 '08 at 21:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.