0

如何使用 Sharepoint 的默认CopyIntoItems方法通过传入共享点用户名和密码从外部 Web 应用程序将新文件上传到共享点。我不想使用默认凭据,因为我在 MVC Web 应用程序上使用基于 SQL Server 的表单身份验证。

我尝试了以下方法:

CopySoapClient连接到此 url 的 web 服务在哪里。

http://sharepointaddress/_vti_bin/copy.asmx

代码示例

public static bool UploadSharePointFile(string file, string destination)
{
    bool success = false;
    CopySoapClient client = new CopySoapClient();
    client.ClientCredentials.Windows.ClientCredential = new NetworkCredential("username", "password", "domain");

    try
    {
        client.Open();

        string filename = Path.GetFileName(file);
        string destinationUrl = destination + filename;
        string[] destinationUrls = { destinationUrl };

        FieldInformation i1 = new FieldInformation { DisplayName = "Title", InternalName = "Title", Type = FieldType.Text, Value = filename };
        FieldInformation[] info = { i1 };
        CopyResult[] result;
        byte[] data = File.ReadAllBytes(file);

        uint ret = client.CopyIntoItems(filename, destinationUrls, info, data, out result);

        if (result != null && result.Length > 0 && result[0].ErrorCode == 0)
            success = true;
    }
    finally
    {
        if (client.State == System.ServiceModel.CommunicationState.Faulted)
            client.Abort();

        if (client.State != System.ServiceModel.CommunicationState.Closed)
            client.Close();
    }

    return success;
}

问题是我不断收到以下错误:

HTTP 请求未经客户端身份验证方案“协商”的授权。从服务器收到的身份验证标头是“协商,NTLM”。

当我尝试将其放入 Web 服务绑定的 web.config 中时:

<security mode="Transport">
    <transport clientCredentialType="Ntlm" proxyCredentialType="None"
      realm="" />
    <message clientCredentialType="UserName" algorithmSuite="Default" />
</security>

然后我收到以下错误:

提供的 URI 方案“http”无效;预期的“https”。参数名称:via

4

1 回答 1

0

我想到了。我需要做的就是将 web.config 中的安全模式更改为

仅传输凭证

<security mode="TransportCredentialOnly">
    <transport clientCredentialType="Ntlm" proxyCredentialType="None"
      realm="" />
    <message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
于 2013-07-31T17:06:07.343 回答