我正在使用Web服务访问SharePoint列表,网站和文档。 喜欢:List.asmx,Site.asmx e.t.c。
我的问题是:
使用上述服务时是否需要断开与SharePoint的连接? 如果是,那么如何?
示例:
GetSiteCollection(String login, String password, String url)
{
Webs ws = new Webs();
try
{
ws.Credentials = new NetworkCredential(login, password);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
ws.Url = url + @"/_vti_bin/webs.asmx";
ws.PreAuthenticate = true;
XmlNode websiteNode = ws.GetWebCollection();
XmlNodeList nodes = websiteNode.SelectNodes("*");
// getting list set of sites
//Now here after this is there any way to disconnect from server?
}
答案 0 :(得分:3)
默认情况下,Web服务已断开连接,您通过发送和接收消息进行通信,因此无需断开连接。