I have this line of code in an assembly:
HttpContext.Current.Server.MapPath
This works great if the assembly is being used in a web service.
but if I take it out of the web service its obivously not going to work, because HTTPContext does not exist.
Is it at all possible to fool httpContext into thinking it exists, really just to get the relative path structure of a directory?
I mean somehow manually creating the HTTPContext object, and assigning it a base directory?
Update
Is there a more generic approach to : HttpContext.Current.Server.MapPath
Something that can work in executables, and something that can work in web?