我试图将图像上传到sharepoint-server,但最初它不起作用。只有在我使用IE浏览SP站点并手动上传其他图像后,它才开始使用Web服务。
uint res = client.CopyIntoItems(fileName, target, new FieldInformation[] { fieldInfo }, imageData, out result);
'res'始终为0.
可能导致这种情况的原因是什么?我没有得到任何超时,所以它似乎还活着,只是没有准备好保存文件......它很奇怪......
我使用这些安全设置:
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Ntlm" proxyCredentialType="Ntlm" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
但我想这非常取决于服务器的安全设置。我发现这个组合起作用,所以我猜它在我的背景下是有效的。