将外部列表数据从一个 SP 场拉至另一个 SP 场的最佳方法?
我正在考虑使用 owssvr,提供列表 GUID,然后解析该数据。有没有更好的方法?我需要提供凭据来获取该数据,我需要有一个至少可以针对 AD 进行身份验证的帐户。 (内部安全要求)。
我的基本调用如下所示:
//XmlDocument xDoc = new XmlDocument();
//xDoc.Load("<localsite>/_vti_bin/owssvr.dll?Cmd=Display&List={8C3DE28C-00EF-40CE-8FD1-2D76D7F85426}&XMLDATA=TRUE");//hard coded for testing
/*This is where I'd parse the xDoc*/
有没有更好的方法来做到这一点?我目前陷入了凭证问题。两个服务器场都是SharePoint 2007,它们可以更好地共享吗?
I was thinking of using owssvr, supplying the list GUID, then just parsing that data. Is there any better methods? I need to provide credentials to get that data, I need to have an account that can at least authenticate against AD. (Internal security requirements).
My base call would look like this:
//XmlDocument xDoc = new XmlDocument();
//xDoc.Load("<localsite>/_vti_bin/owssvr.dll?Cmd=Display&List={8C3DE28C-00EF-40CE-8FD1-2D76D7F85426}&XMLDATA=TRUE");//hard coded for testing
/*This is where I'd parse the xDoc*/
Is there any better method to do this? I'm stuck with the credential issue at the moment. Both farms are SharePoint 2007, can they share better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
您也许可以进一步减少此代码,但它为您提供了进一步调查的一些方向。
请注意,我正在使用 .NET 4 LINQ to XML 类。
对于 Xml DOM 版本,前 2 行保持不变:
Try this:
You may be able to reduce this code further but it gives you some direction for further investigation.
Notice I am using .NET 4 LINQ to XML clases.
For the Xml DOM version, the first 2 lines remain the same: