0

C#2010を使用してSharepoint 2010でビジネスデータコンテンツソースをプログラムで定義する必要があります。サーバーの全体管理内からこれを行う方法を確認し、MOSS 2007のスニペットを確認しました。ただし、実行例は見つかりませんでした。これはSP2010で行われます。誰かが私を正しい方向に導くことができますか?

あなたの助けと指導に感謝します。

4

2 に答える 2

3

APIの使用

        string strURL = "http://mySiteUrl";
        SearchContext searchContext;
        using (SPSite searchSite = new SPSite(strURL))
        {
            searchContext = SearchContext.GetContext(searchSite);
        }
        Content sspContent = new Content(searchContext);
        ContentSourceCollection sspContentSources = sspContent.ContentSources;
        BusinessDataContentSource bdcs = (BusinessDataContentSource)sspContentSources.Create(typeof(BusinessDataContentSource), "MyBdcContentSource");
        bdcs.StartAddresses.Add(BusinessDataContentSource.ConstructStartAddress("Default", new Guid("00000000-0000-0000-0000-000000000000"), "LOBSystemName", "LOBSystemInstanceName"));

Powershellの使用

$searchapp = Get-SPEnterpriseSearchServiceApplication "My Search Service Application Name"
$lobSystems = @("LOBSystemName1","LOBSystemNameInstance1")
$proxyGroup = Get-SPServiceApplicationProxyGroup -default
New-SPEnterpriseSearchCrawlContentSource -name "My Content Source Name" -searchapplication $searchApp -Type Business -LOBSystemSet $lobSystems -BDCApplicationProxyGroup $proxyGroup
于 2011-06-02T14:41:24.780 に答える
0

これはあなたを助けるはずです。

于 2011-01-05T18:31:26.007 に答える