December 2009 Entries

What Identity with IIS7 and ApplicationPoolIdentity?
With IIS7, we have a little bit more isolation with AppPool Identities For example, if you’re using the the DefaultAppPool, if you need to assign permissions to NTFS, SQL, etc., what you’d use instead is as follows: IIS APPPOOL\DefaultAppPool Where “DefaultAppPool” ends up being the name of your AppPool as shown in IIS Manager… That is if you’ve set the identity to the “ApplicationPoolIdentity” instead of something else, such as Network Service, Local System, or something other…...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Thursday, December 24, 2009 6:14 AM | Feedback (0)

Wildcard Certificates and IIS7
Let’s face it, during development, managing all the certificates if you’re doing anything with validating SSL/TLS traffic is a pain. Now with Windows Identity Foundation (fka Geneva) we really have to get crackin on getting used to managing certificates, setting up SSL sites, etc. So, here’s great post on setting up IIS7 to use wildcard certificates… http://blog.mikeobrien.net/... This gives you 1 certificate rooted at some common domain (eg. mydev.local)...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, December 23, 2009 9:29 AM | Feedback (0)

Make sure you copy the correct web.config…
During an installation issue, a client followed the TechNet article (http://technet.microsoft.c... and those instructions are misleading. It indicates to copy the “web.config” to the Layouts directory – what if fails to specify is it should be the “layoutsweb.config” file instead. While following the article does get you passed the issue that brought you there in the first place, you eventually end up with issues on provisioned sites that reference anything in _layouts...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, December 16, 2009 4:58 AM | Feedback (0)

How did I miss this one – The VirtualPathUtility in ASP.NET
I’ve been writing one off methods that apparently are handled quite well for a few things in the type System.Web.VirtualPathUtility. For example, if you just want the page name or the extension, you have this utility to quickly get that from the current request path. http://msdn.microsoft.com/e...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Friday, December 04, 2009 6:11 AM | Feedback (0)