从IIS服务器第二次请求开始,NetworkCredential无法使用

时间:2018-08-10 06:18:06

标签: c# networking iis-7 asp.net-web-api2

我已经开发了一个Web API,可以在localhost上正常工作。我已经使用NetworkCrendential类将共享文件夹文件访问到我的系统中。对于我在localhost上发送的每个请求,它工作正常。但是,一旦将其部署到IIS Web服务器上,就无法从第二个请求中获取数据。

 using (NetworkConnection nc = new NetworkConnection(@"\\172.18.11.11\d$", new NetworkCredential(@"Administrator", "Siemens123$", "AD001")))
            {
                _listDataSetInfo = new List<DataSetInfo>();
                var folderPath_single = @"\\172.18.11.11\d$\BMC\_Settings\SINGLE";
                var items_single = new DataAccessLayer().GetData(folderPath_single);
                var folderPath_folder = @"\\172.18.11.11\d$\BMC\_Settings\FOLDER";
                var items_folder = new DataAccessLayer().GetData(folderPath_folder);
                foreach (var item in items_single)
                {
                    _listDataSetInfo.Add(item);
                }
                foreach (var item in items_folder)
                {
                    _listDataSetInfo.Add(item);
                }
                // _listDataSetInfo = new DataAccessLayer().GetData(folderPath_single);
                _CancellationToken = _CancellationTokenSource.Token;
                //nc.Dispose();
            }

public class NetworkConnection : IDisposable
{
    string _networkName;

    public NetworkConnection(string networkName,
        NetworkCredential credentials)
    {
        _networkName = networkName;

        var netResource = new NetResource()
        {
            Scope = ResourceScope.GlobalNetwork,
            ResourceType = ResourceType.Disk,
            DisplayType = ResourceDisplaytype.Share,
            RemoteName = networkName
        };

        var userName = string.IsNullOrEmpty(credentials.Domain)
            ? credentials.UserName
            : string.Format(@"{0}\{1}", credentials.Domain, credentials.UserName);

        var result = WNetAddConnection2(
            netResource,
            credentials.Password,
            userName,
            0);

        if (result != 0)
        {
            NetworkConnection nc = new NetworkConnection(@"\\172.18.11.11\d$", new NetworkCredential(@"Administrator", "Siemens123$"));
            throw new Exception("Error connecting to remote share");
        }
    }

    ~NetworkConnection()
    {
        Dispose(false);
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        WNetCancelConnection2(_networkName, 0, true);
    }

    [DllImport("mpr.dll")]
    private static extern int WNetAddConnection2(NetResource netResource,
        string password, string username, int flags);

    [DllImport("mpr.dll")]
    private static extern int WNetCancelConnection2(string name, int flags,
        bool force);
}

[StructLayout(LayoutKind.Sequential)]
public class NetResource
{
    public ResourceScope Scope;
    public ResourceType ResourceType;
    public ResourceDisplaytype DisplayType;
    public int Usage;
    public string LocalName;
    public string RemoteName;
    public string Comment;
    public string Provider;
}

public enum ResourceScope : int
{
    Connected = 1,
    GlobalNetwork,
    Remembered,
    Recent,
    Context
};

public enum ResourceType : int
{
    Any = 0,
    Disk = 1,
    Print = 2,
    Reserved = 8,
}

public enum ResourceDisplaytype : int
{
    Generic = 0x0,
    Domain = 0x01,
    Server = 0x02,
    Share = 0x03,
    File = 0x04,
    Group = 0x05,
    Network = 0x06,
    Root = 0x07,
    Shareadmin = 0x08,
    Directory = 0x09,
    Tree = 0x0a,
    Ndscontainer = 0x0b
}

请提供一些输入信息,说明为什么在本地主机上可以正常工作时,为什么这段代码无法在IIS服务器上获取数据。

0 个答案:

没有答案