Friday I passed exam 70-667 Configuring Sharepoint 2010. All of the aspects of configuring Sharepoint 2010 were covered in the questions. Nice to know I have adaptive skills / techniques… 😉
Category: ASP.NET
WCF Services and multiple bindings
.Net 4.0 has a nice improvement I want to share with you. Where in the past is was tricky to configure services with multiple bindings, now is become easier.
Just add the following to your application web.config:
<system.serviceModel> <serviceHostingEnvironment multipleSiteBindingsEnabled=”true”> <system.serviceModel>
And configure your IIS bindings on your site and your all set.
Are your assemblies from a release or debug build?
Ever wondered if the assemblies your developers gives you to install on a production server are from a release build? You can make a little C# console application to check this.
Continue reading “Are your assemblies from a release or debug build?”
Faster ASP.NET applications
On the site codeproject.com I found a great article with some very good tips for you developers out there to speedup your ASP.NET applications.