- Roy Osherove continues to review tests, ASP.NET MVC and Unity.
- Found this info on MSDN, helpful while looking into WCF channel states.
- Custom basic authentication for REST services.
- Ayende on SOLID.
- I always say at work ‘Copy Paste is van den duvel’ and it seems I’m not alone.
Cuyahoga Patch for ContactUs 1.6.0
Attached to this post is a small patch that needs to be applied to the ContactUs (Contact.cs and Contact.hbm.xml) module in Cuyahoga so that it works with the latest version.
Changing your connection string at runtime with Spring.Net
Something that pops up every once in a while on the Spring.Net user forum is how to change your connection string at runtime. You need this behaviour for instance when you have a multi tenant application.
Out of the box Spring.Net comes with two DbProviders to change information about your connection string at runtime. One provider to change the credentials at runtime named UserCredentialsDbProvider, and one that can choose a connectionstring from a predefined list called MultiDelegatingDbProvider.
If you want to change the connection string at runtime, for instance based on the current logged in user, what works best is to either subclass DelegatingDbProvider or UserCredentialsDbProvider (which actually is a subclass of DelegatingDbProvider).
Attached you can find a quick and dirty sample which shows what you need to hook up.
WCF ChannelManagement drop 3
A new version is available, with two modes of channel pooling.
The ‘FixedPool’ mode is based on the SimplePool which you can find in the Spring.Pooling library. Meaning that at any given time there can be a maximum of x amount of channels. Where x equals the SimplePool’s size. So if the size of your pool is 5 and you request a 6th channel while the previous 5 are still busy doing their business you’ll get a blocking thread until one of the previous five is returned to the pool. This is good for when you want to limit the connectivity to your server, but don’t forget that it will block the calling thread when you request more channels than there are available.
The other pool mode is ‘VariablePool’. This is a pool that grows and shrinks depending on the load. So if you request 6 channels you’ll get 6 channels which will be available for future requests when returned to the pool. Channels which are no longer usable will be removed and new ones will be created when needed.
I spend most of the time trying to find a good away around my dependency on ChannelFactory. Since that class has a method ‘CreateChannel’ which takes no arguments and the factory can be configured using the endpoint name in your system.servicemodel section. The interface which the class implements doesn’t have this. The classes which populate a channelfactory from the app.config are marked internal and so you can’t use them.
The only solution I found that worked pretty ok was a wrapper interface which exposes the CreateChannel method, it helped me to test the code without a channelfactory instance.
I did a lot of renaming in the codebase but on the consuming end not much has changed.
A ‘SingleAction’ operating channel is still the easiest to configure.
<object id=“MyService” type=“WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager”> <property name=“ChannelType” expression=“T(Server.IService1, Common)”/> <property name=“EndpointConfigurationName” value=“MyEndpoint”/> </object> |
Creating a fixed pool is one extra line.
<object id=“MyService” type=“WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager”> <property name=“ChannelType” expression=“T(Server.IService1, Common)”/> <property name=“EndpointConfigurationName” value=“MyEndpoint”/> <property name=“ChannelManagementMode” value=“FixedPool”/> </object> |
A variable pool means just another value as ChannelManagementMode.
<object id=“MyService” type=“WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager”> <property name=“ChannelType” expression=“T(Server.IService1, Common)”/> <property name=“EndpointConfigurationName” value=“MyEndpoint”/> <property name=“ChannelManagementMode” value=“VariablePool”/> </object> |
If you want to use your own channel manager, you can use the ProductTemplate to hook everything up. The sample below illustrates this, here the variable pool is configured via the template instead of using the ChannelManagementMode property of the FactoryObject.
<object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager"> <property name="ChannelType" expression="T(Server.IService1, Common)"/> <property name="EndpointConfigurationName" value="MyEndpoint"/> <property name="ProductTemplate"> <object> <property name="ChannelManager"> <object type="WCFChannelManager.ChannelPoolManager<Server.IService1>, Perponcher.WCFChannelManager"> <constructor-arg value="MyEndpoint"/> <constructor-arg> <object type="WCFChannelManager.AutoSizePoolFactory, Perponcher.WCFChannelManager"/> </constructor-arg> </object> </property> </object> </property> </object> |
The same approach can be used to configure the channelfactory for i.e. passing credentials.
<object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager"> <property name="ChannelType" expression="T(Server.IService1, Common)"/> <property name="EndpointConfigurationName" value="MyEndpoint"/> <property name="ChannelManagementMode" value="VariablePool"/> <property name="ProductTemplate"> <object> <property name="ChannelManager.ChannelFactory.Credentials.UserName.UserName" value="username"/> <property name="ChannelManager.ChannelFactory.Credentials.UserName.Password" value="password"/> </object> </property> </object> |
That’s it for now. Future additions will include:
- setting the pool size of a fixed sized pool via the FactoryObject, for now the default of 5 is used
- extend or add a new pool based on the SimplePool. At the moment closed or faulted channels are not removed from that implementation, meaning that when your 5 channels are closed the pool will raise an exception.
WCFChannelManager_drop3.zip (1.16 mb)
Series:
This week on my screen #5
- NHibernate 2.1.0 alpha 1 released, note that the dynamic proxy stuff has been changed so read the release notes.
- War stories from Joe Stump lead architect at Digg, very interesting!
- Roy Osherove reviews the tests from NerdDinner, interesting and funny. He also has a book out which I promptly ordered: The Art of Unit Testing: with Examples in .NET
- MIX, get a view on where Microsoft is going with Silverlight, .NET, ….
WCF ChannelManagement drop 2
Updated version is now available, no channel pooling yet but I changed the way default values and the ProductTemplate were being handled. I’ve already used the library successfully at work in a very heavy WCF application. I found some issues with it, like when you wanted to configure the ChannelFactory in your configuration file, but these are now fixed.
Next up pooling!
WCFChannelManager_drop2.zip (1.14 mb)
Series:
This week on my screen #4
- SOLID pictures, if you don’t know what it stands for visit this site.
- Manifesto for Software Craftsmanship.
- Windows 7 HTPC on Tom’s Hardware.
- Fluent NUnit.
- In depth article on BeginInvoke, Invoke. If you multithread your Winforms a must read.
- WCFMock, mocking for WCF, what’s in a name.
- SAML token with Geneva.
- Free eBook on ASP.NET MVC
First drop of ChannelManagement available.
First drop available of the ChannelManagement library. Currently only support single action channels, meaning that after executing the operation the channel is closed. I hope to add pooling the coming week.
The zip contains the source code and an example project. Not much changes in the ‘end user’ code:
static void Main(string[] args) { var myService = ContextRegistry.GetContext().GetObject("MyService") as IService1; string value = myService.GetData(5); var returnValue = myService.GetDataUsingDataContract(new CompositeType() { BoolValue = false, StringValue = "Perponcher" }); Console.ReadLine(); } |
<spring> <context> <resource uri="config://spring/objects" /> </context> <objects xmlns="http://www.springframework.net"> <object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject, Perponcher.WCFChannelManager"> <property name="ChannelType" expression="T(Server.IService1, Common)"/> <property name="EndpointConfigurationName" value="MyEndpoint"/> </object> </objects> </spring> <system.serviceModel> <client> <endpoint name="MyEndpoint" address="http://localhost:8731/Design_Time_Addresses/Server/Service1/" contract="Server.IService1" binding ="wsHttpBinding"/> </client> </system.serviceModel> |
Out and ref parameters are not yet supported.
WCFChannelManager.zip (1.17 mb)
Series:
This week on my screen #3
- NHibernate in Action is finally released.
- How FriendFeed used MySQL.
- NServicebus, a servicebus for .net.
- masstransit, another servicebus.
- Problems with WCF and the Using block on InfoQ, interesting for my little ChannelManager project.
- RestPad, editor for communicating with RESTful services.
Configuring the ChannelManager
I’m trying to keep configuration to a minimum. Let’s look at an example:
<object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject"> <property name="ChannelType" expression="T(WCFChannelManagerTests.IService)"/> <property name="EndpointConfigurationName" value="MyEndpointName"/> </object> |
This is probably what you’ll need the most. You define the ChannelType, that is the interface exposed by the service you want to consume, and the EndpointConfigurationName, which is the name of the endpoint in the system.servicemodel section of your app/web.config. And that’s it. The behaviour of the channel in this case is that a new channel will be created for every operation you want to execute.
<object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject"> <property name="ChannelType" expression="T(WCFChannelManagerTests.IService)"/> <property name="EndpointConfigurationName" value="MyEndpointName"/> <property name="ChannelManagementMode" value="Recycle"/> </object> |
If you want channels to be reused, you can specify this by changing the value of the ‘ChannelManagementMode’. There are two predefined values you can use here, Recycle and ThrowAway. ThrowAway being the default. Not sure about these names though :-).
<object id="OneTimeUseChannel" type="WCFChannelManager.SingleActionChannelManager<WCFChannelManagerTests.IService>"/> <object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject"> <property name="ChannelType" expression="T(WCFChannelManagerTests.IService)"/> <property name="EndpointConfigurationName" value="MyEndpointName"/> <property name="ProductTemplate"> <object> <property name="ChannelManager" ref="OneTimeUseChannel"/> </object> </property> </object> |
If one of the default ways to manage the lifecycle of a channel is not what you want or need you can create your own and specify it in the ProductTemplate property of the ChannelManagerFactoryObject. The example above shows how you can do this, in this case it would result in the same default behaviour you get in the first xml configuration I showed in the beginning of my post.
If you even want to customize the way a channel is retrieved, an action is executed on it and then handed back to the channel lifecycle manager, you can subclass ChannelActionWrapper and specify that type in the ChannelActionWrapperType property of the ChannelManagerFactoryObject. This is illustrated below:
<object id="MyService" type="WCFChannelManager.ChannelManagerFactoryObject"> <property name="ChannelActionWrapperType" expression="T(WCFChannelManagerTests.MockChannelManager)"/> <property name="EndpointConfigurationName" value="MyEndpointName"/> </object> |
public class MockChannelManager : ChannelActionWrapper<IService> { public MockChannelManager() : base(null) { } public override IService GetChannelToWorkWith() { return new Service(); } public object ExecuteOperation(MethodInfo info, object[] parameters) { return this.ExecuteInChannel(info, parameters); } } |
The ChannelType will now be retrieved from your subclass so you don’t need to specify the ChannelType.
And that’s all I have for you now.
Series: