Today I passed this exam with 815 points. So I can call myself:
Yeah, still adaptive enough.
Sep 3
Today I passed this exam with 815 points. So I can call myself:
Yeah, still adaptive enough.
Jul 26
You may know that kernel-mode authentication is faster then user-mode authentication. You also may know that when you have a webfarm, network service isn’t the “user” you can use for kernel-mode authentication. With thew following command you can configure that the application pool user is used for kernel-mode authentication.
%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/security/authentication/windowsAuthentication -useAppPoolCredentials:true
This wil result in the following configuration in the applicationHost.config
<system.webServer> <security> <authentication> <windowsAuthentication enabled="true" useAppPoolCredentials="true" /> </authentication> </security> </system.webServer>
You can configure this at the webserver/website/application level.
Jul 25
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…
Jul 20
.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.