首页 > 编程 > .NET > 正文

解决ASP.NET创建的线程的用户改变引发的拒绝访问错误

2024-07-10 12:56:20
字体:
来源:转载
供稿:网友


解决asp.net创建的线程的用户改变引发的"拒绝访问"错误
      

         asp.net创建的线程的用户由<identity impersonate="true"/> 改为nt authority/network service, 引起"system.unauthorizedaccessexception","拒绝访问"



    dim thr as threading.thread
    dim l as system.security.principal.windowsidentity

    function print()
        thr = new threading.thread(addressof printautocad)
        thr.start()
        l = system.security.principal.windowsidentity.getcurrent
    end function

    private sub printautocad()
        system.security.principal.windowsidentity.impersonate(l.token)
 ...
    end function

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表