Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Loading WCF config (for server + client) from custom source (not standard XML)

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?!?!

like image 793
marc_s Avatar asked Nov 23 '08 15:11

marc_s


1 Answers

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

On the service side, You'll have to create your own custom ServiceHost and override the ApplyConfiguration method.

Check out this blog post

On the client side, you do something similar, but provide a custom ChannelFactory and override the ApplyConfiguration method there.

like image 55
Stever B Avatar answered Oct 21 '22 21:10

Stever B