Server.MapPath()
This always bites me in the ass. When you need to call Server.MapPath from a standard class, you must call it from the current context.
Example:
System.Web.HttpContext.Current.Server.MapPath(“somefile.xml“);
This is more of a note for my future reference.