从clearQuest Web服务器创建sharepoint站点

时间:2010-11-03 22:01:21

标签: web-services sharepoint clearquest

我有一个clearQuest Web(在Linux上运行),并希望在创建新记录时创建一个sharepoint站点(使用perl脚本)。 我该怎么做 - 是否有任何可用于创建网站的sharepoint Web服务。 我相信我需要一个用于Web服务的perl模块,如何将它添加到clearQuest Web服务器的perl安装中?

有没有人对此有所了解?

2 个答案:

答案 0 :(得分:0)

我没有使用perl脚本。但请查看http://sharepoint site/_vti_bin/sites.asmx webservice。此Web服务可用于管理站点。

答案 1 :(得分:0)

我创建了一个用于在SharePoint(WSS 3)中创建网站的自定义Web服务,因为我找不到使用现有Web服务的方法。

代码看起来像这样:

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class CreateSiteWebService : System.Web.Services.WebService
{

    [WebMethod]
    public string CreateSite(
            string strWebUrl,
            string strTitle,
            string strDescription,
            uint nLCID,
            string strWebTemplate,
            bool useUniquePermissions,
            bool bConvertIfThere
        )

    {
        SPWeb newWeb = null;
        SPSite site = SPContext.Current.Site;
        newWeb = site.RootWeb.Webs.Add(strWebUrl, strTitle, strDescription, nLCID, strWebTemplate, useUniquePermissions, bConvertIfThere);
        newWeb.Navigation.UseShared = true;
        newWeb.Update();
        //try to get it to appear in quick launch:
        SPNavigationNodeCollection nodes = web.Navigation.QuickLaunch;
        SPNavigationNode menuNode = null;
        foreach(SPNavigationNode n in nodes)
        {
            if (n.Title == "Sites")
            {
                menuNode = n;
                break;
            }
        }
        if (menuNode == null)
        {
            menuNode = new SPNavigationNode("Sites", site.Url + "/_layouts/viewlsts.aspx?ShowSites=1", false);
            nodes.AddAsFirst(menuNode);
        }
        SPNavigationNode navNode = new SPNavigationNode(strTitle, strWebUrl, false);
        menuNode.Children.AddAsLast(navNode);
        parent.Update();
        parent.Dispose();

        site.Dispose();
        string url = newWeb.Url;
        newWeb.Dispose();
        return url;
    }
}

希望有所帮助。