访问 Sharepoint Web 服务需要什么用户凭据
我目前在 Web 服务中有一个 Web 配置文件,它使用以下代码片段,以便它可以访问 Sharepoint 上的资源。
<identity impersonate="true" userName="[domain admin]" password="[password]"/>
显然,这种情况不是一个好主意,我们目前正在用正确的处理方式替换它。但是,与此同时,我们正在创建一个不是域管理员的新域用户,并将其用作权宜之计。使用域管理员是因为人们懒得确定所需的正确安全级别,并且将保证域管理员可以访问每个资源。
我的问题是:该域用户继续访问 Sharepoint Web 服务所需的最低安全级别是多少?我应该考虑什么样的事情?
I currently have a web config file in a web service that is using the following code snippet so that it can access resources on Sharepoint
<identity impersonate="true" userName="[domain admin]" password="[password]"/>
Clearly this situation is not a good idea and we are currently replacing this with the correct way of doing things. However, in the mean time we are creating a new domain user that is NOT the domain admin and using that as a stop gap. The domain admin was used as people were too lazy to determine the right security levels required and a domain admin will be guaranteed access to every resource.
My question is: What is the minimum level of security that this domain user requires in order to continue accessing the Sharepoint Web Service? What sort of things should I be thinking about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您到底在谈论什么网络服务? SharePoint Web 服务具有权限感知功能,就像任何其他模块一样,因此如果您想说读取项目或创建网站,情况会有所不同。您需要首先知道您想要完成什么,然后授予用户执行此操作的确切权限
What web service are you talking about exactly? SharePoint web services are permissions aware, just like any other module, so it is different if you want to say read items or create a site. You need to know first what you are trying to accomplish and then give the user the exact permissions to do that