1

我有一个以非常简单的方式使用的文件上传工具。需要获取文件(大约 20-25 KB 的非常小的文件)并将其传输到远程服务器。

每台服务器都授予了对特定用户名和密码的访问权限,我必须在使用 File.SaveAs() 函数之前使用 Impersonation。

public void btnUploadFile_Click(Object sender, EventArgs e)
    {        
                    try
                    {
                        string strUploadDir = GetFileUploadLocation(ddlRole.SelectedItem.Value, fuupload.FileName);
                            objCommon.ImpersonateUser("xxxxxx","xxx", "xxx");
                            fuupload.SaveAs(strUploadDir + "\\" + fuupload.FileName);
                            objCommon.EndImpersonation();
                            divUploadMessage.InnerHtml = "<font color='green'><b>File uploaded successfully.</b></font><br>";
                    }
                    catch (Exception ex)
                    {
                        divUploadMessage.InnerHtml = "<font color='red'><b>Failed to upload. Please try again. Error : " + ex.ToString() + "</b></font><br>";
                    }                
    }

现在,我遇到的问题:

  1. 在一台服务器上,当我上传文件时,文件大小减小到零,所以基本上它变成了一个空文件
  2. 当我从其他服务器使用它时,我收到一个未知用户名或密码错误错误,而我已经检查了用户凭据,这很好。此外,IIS 设置设置为用户 Windows 身份验证。

对于使用什么模拟,下面是代码。

public bool ImpersonateUser(String userName, String domain, String password)
    {
        WindowsIdentity objIdentity;
        IntPtr token = IntPtr.Zero;
        IntPtr tokenDuplicate = IntPtr.Zero;

        if (RevertToSelf())
        {
            if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref token) != 0)
            {
                if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
                {
                    objIdentity = new WindowsIdentity(tokenDuplicate);
                    impersonationContext = objIdentity.Impersonate();
                    if (impersonationContext != null)
                    {
                        CloseHandle(token);
                        CloseHandle(tokenDuplicate);
                        return true;
                    }
                }
            }
        }
        if (token != IntPtr.Zero)
            CloseHandle(token);
        if (tokenDuplicate != IntPtr.Zero)
            CloseHandle(tokenDuplicate);
        return false;
    }
4

0 回答 0