错误截图错误日志位置:C:\ProgramFiles\CommonFiles\microsoftshared\WebServerExtensions\15\LOGS主要错误ThecurrentuserisnotanSharePointServerfarmadministrator.处理过程查看了当前User确实不是场管理员,但......
2022-04-11 67 SharePoint ERROR the current user not Server farm 错误
1、创建Silverlight时,选择Silverlight 4,不要选择版本5,试了很久版本5都调用不了,自己也不知道什么原因,谷歌也没找到答案,后来尝试版本4,可以调用;
至于Host the Silverlight application是否勾选没有影响;
2、Silverlight中使用客户端脚本,和Net中不一样,要添加下面两个引用;
3、两个需要的引用,在服务器上位置为C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\ClientBin,如下图:
4、然后在Silverlight的cs文件中添加引用,如下:
using Microsoft.SharePoint.Client;
然后添加读取List的代码,如下:
public string url = "http://server:80";Web web;List list;ListItemCollection itemColl;string listName = "Silverlight";string camlStr = "";private void btn_ShowMessage_Click(object sender, RoutedEventArgs e){ getdata();}public void getdata(){ try { ClientContext context = new ClientContext(url); web = context.Web; list = web.Lists.GetByTitle(listName); CamlQuery query = new CamlQuery(); query.ViewXml = camlStr; itemColl = list.GetItems(query); context.Load(itemColl); context.ExecuteQueryAsync(new ClientRequestSucceededEventHandler(OnSuccessed), new ClientRequestFailedEventHandler(OnFailed)); } catch (Exception ex) { MessageBox.Show(ex.Message); }}private void OnSuccessed(Object sender, ClientRequestSucceededEventArgs args){ this.Dispatcher.BeginInvoke(LoadData);}private void LoadData(){ String data = string.Empty; foreach (ListItem item in itemColl) { data += item["Title"].ToString() + "\r\n"; } lb_Message.Content = data;}private void OnFailed(Object sender, ClientRequestFailedEventArgs args){ this.Dispatcher.BeginInvoke(delegate() { MessageBox.Show("Get Data Failed"); });}
5、前台页面添加Silverlight展示WebPart,添加完毕如下图:
6、点击ShowMessage,执行客户端对象模型的方法,结果如下图:
总 结
自己对于Silverlight不是很熟悉,只是小有了解SharePoint,所以有问题之处还请大家指正。尝试了很多次,才发现如何能在Silverlight中使用SharePoint客户端对象模型,希望分享给有需要的人,给大家一个参考吧。
好了,就到这里,休息。。休息一下。。
标签: SharePointSilverlight中如何使用net客户端、
相关文章
SharePoint2013爬网报错AnunrecognizedHTTPresponsewasreceivedwhenattemptingtocrawlthisitem.Verifywhethertheitemcanbeaccessedusingyourbrowser.然后登陆网站,发现在服务器上输入3次用户名密码白页,考虑到......
2022-04-11 449 SharePoint ERROR unrecognized HTTP response was received
最近使用SharePoint中,遇到一个需要重命名网站集的需求,主要是网站用数据库备份/还原的方式,想要改网站集的地址,然后搜了一下PowerShell:$site=Get-SPSite-Identityhttp://server/sites/Demo$site.......
2022-04-11 299 SharePoint重命名网站集名称