Re: I am trying to use System.Web.HttpContext in CuteWebUI.UploaderProvider but session comes back null. How can I get session to not be null

  •  02-13-2009, 12:58 PM

    Re: I am trying to use System.Web.HttpContext in CuteWebUI.UploaderProvider but session comes back null. How can I get session to not be null

    Terry,
     
    This answer doesn't seem to make sense. If you stream the file to the database, putting it in a file system first doesn't make any sense, is wasteful, and is a security hole because through the process of uploading, you have no access to user context so there is no way to authorize the request. The GetData method has all the other information we need, except Session which severely limits the usefullnes. We could cache that information, but that can be costly on a high traffic system and is pretty pointless considering that data already exists in session.
     
    Terry
View Complete Thread