vote up 9 vote down star
2

Does anyone know of a good example of how to expose a WCF service programatically without the use of a configuration file? I know the service object model is much richer now with WCF, so I know it's possible. I just have not seen an example of how to do so. Conversely, I would like to see how consuming without a configuration file is done as well.

Before anyone asks, I have a very specific need to do this without configuration files. I would normally not recommend such a practice, but as I said, there is a very specific need in this case.

flag

76% accept rate

7 Answers

vote up 3 vote down check

I'm pretty sure Michele Bustamante's book has examples with and without config files:

http://www.amazon.com/Learning-WCF-Hands-Michele-Bustamante/dp/0596101627

Also, Juval Lowy's book is very good about customizing services:

http://www.amazon.com/Programming-WCF-Services-Juval-Lowy/dp/0596526997

Both are very good.

link|flag
vote up 2 vote down

It is not easy on the server side..

For client side, you can use ChannelFactory

link|flag
vote up 2 vote down

Consuming a web service without a config file is very simple, as I've discovered. You simply need to create a binding object and address object and pass them either to the constructor of the client proxy or to a generic ChannelFactory instance. You can look at the default app.config to see what settings to use, then create a static helper method somewhere that instantiates your proxy:

internal static MyServiceSoapClient CreateWebServiceInstance() {
    BasicHttpBinding binding = new BasicHttpBinding();
    // I think most (or all) of these are defaults--I just copied them from app.config:
    binding.SendTimeout = TimeSpan.FromMinutes( 1 );
    binding.OpenTimeout = TimeSpan.FromMinutes( 1 );
    binding.CloseTimeout = TimeSpan.FromMinutes( 1 );
    binding.ReceiveTimeout = TimeSpan.FromMinutes( 10 );
    binding.AllowCookies = false;
    binding.BypassProxyOnLocal = false;
    binding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard;
    binding.MessageEncoding = WSMessageEncoding.Text;
    binding.TextEncoding = System.Text.Encoding.UTF8;
    binding.TransferMode = TransferMode.Buffered;
    binding.UseDefaultWebProxy = true;
    return new MyServiceSoapClient( binding, new EndpointAddress( "http://www.mysite.com/MyService.asmx" ) );
}
link|flag
I personally like this approach for examples when you are going to be using the file in a different matter, for example, if you've encrypted your app.config (or equivalent config file) and don't need to use the built in WCF capabilities of it reading in a connection – Noah Dec 5 '08 at 20:54
vote up 1 vote down

All WCF configuration can be done programatically. So it's possible to create both servers and clients without a config file.

I recommend the book "Programming WCF Services" by Juval Lowy, which contains many examples of programmatic configuration.

link|flag
vote up 0 vote down

I've just started looking at WCF and came across this http://msdn.microsoft.com/en-us/library/ms730935.aspx

link|flag
vote up 0 vote down

I found the blog post at the link below around this topic very interesting. One idea i like is that of being able to just pass in a binding or behavior or address xml section from the config to the appropriate wcf object and let it handle the assigning of the properties - currently you cannot do this. Like others on the web i am having issues around needing my WCF implementation to use a different config file than that of my hosting application (which is a .net 2.0 windows service).

http://blog.salvoz.com/2007/12/09/ProgrammaticallySettingWCFConfiguration.aspx

link|flag
vote up 0 vote down

Its very easy to do on both the client and the server side. Juval Lowy's book has excellent examples. As to your comment about the config files, I would say that the config files are a poor man's second to doing it in code. Config files are great when you control every client that will connect to your server and make sure they're updated, and that users can't find them and change anything. I find the WCF config file model to be limiting, mildly difficult to design, and a maintenance nightmare. All in all, I think it was a very poor decision by MS to make the config files the default way of doing things.

EDIT: One of the things you can't do with the config file is create services with non-default constructors. This leads to static/global variables and singletons and other types of non-sense in WCF

link|flag

Your Answer

Get an OpenID
or

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