Sharepoint和WCF交互

时间:2014-05-20 08:42:19

标签: c# .net wcf sharepoint sharepoint-2010

我尝试在Sharepoint 2010上阅读和创建XML文件。 我知道Sharepoint暴露了一些用于与应用程序交互的服务(如/_vti_bin/ListData.svc或/_vti_bin/Lists.asmx或/_vti_bin/Webs.asmx),但我不知道如何使用它们,如果他们可以做什么我想做。

如果有人有样本可以帮助我或提供全面的文档链接,感谢您与我们分享。

提前谢谢你,祝你有个美好的一天。

2 个答案:

答案 0 :(得分:1)

以下是一个带有示例的参考:http://msdn.microsoft.com/en-us/library/office/aa979690(v=office.14).aspx

您是否尝试过自己搜索?

你有什么特别的问题?

答案 1 :(得分:0)

现在我能够做我想做的事。

以下是使用WCF服务在SharePoint 2010上读取XML文件的解决方案:

public string GetLocalisationCollection()
    {
        CopySoapClient client = new CopySoapClient();
        FieldInformation myFieldInfo = new FieldInformation();
        FieldInformation[] myFieldInfoArray = { myFieldInfo };
        byte[] myByteArray;
        client.GetItem(Configuration.LocalisationUri, out myFieldInfoArray, out myByteArray);

        return System.Text.Encoding.UTF8.GetString(myByteArray);
    }