LobSystemCollection.Create Method
Creates an LobSystem object.
Namespace: Microsoft.Office.Server.ApplicationRegistry.Administration
Assembly: Microsoft.SharePoint.Portal (in Microsoft.SharePoint.Portal.dll)
Syntax
'Declaration
Public Function Create ( _
name As String, _
isCached As Boolean, _
systemUtilityTypeName As String, _
connectionManagerTypeName As String, _
entityInstanceTypeName As String _
) As LobSystem
'Usage
Dim instance As LobSystemCollection
Dim name As String
Dim isCached As Boolean
Dim systemUtilityTypeName As String
Dim connectionManagerTypeName As String
Dim entityInstanceTypeName As String
Dim returnValue As LobSystem
returnValue = instance.Create(name, isCached, _
systemUtilityTypeName, connectionManagerTypeName, _
entityInstanceTypeName)
public LobSystem Create(
string name,
bool isCached,
string systemUtilityTypeName,
string connectionManagerTypeName,
string entityInstanceTypeName
)
Parameters
- name
Type: System.String
The name of the LobSystem object.
- isCached
Type: System.Boolean
true, if cached; otherwise, false.
- systemUtilityTypeName
Type: System.String
"Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbSystemUtility" or "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.WebService.WSSystemUtility"
- connectionManagerTypeName
Type: System.String
"Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbConnectionManager" or "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.WebService.WSConnectionManager"
- entityInstanceTypeName
Type: System.String
"Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbEntityInstance" or "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.WebService.WSEntityInstance"
Return Value
Type: Microsoft.Office.Server.ApplicationRegistry.Administration.LobSystem
An LobSystem object.
Examples
The following code example shows you how to create an LobSystem instance and set connection parameters.
Prerequisites
Ensure a Shared Service Provider is already created.
Replace the constant value EnterYourSSPNameHere in the code with the name of your Shared Resource Provider.
Project References
Add the following Project References in your console application code project before running this sample:
Microsoft.SharePoint
Microsoft.SharePoint.Portal
Microsoft.Office.Server
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Office.Server.ApplicationRegistry.Administration;
using Microsoft.Office.Server.ApplicationRegistry.Infrastructure;
using WSSAdmin = Microsoft.SharePoint.Administration;
using OSSAdmin = Microsoft.Office.Server.Administration;
namespace Microsoft.SDK.SharePointServer.Samples
{
class GetStartedAndCreateSystem
{
const string yourSSPName ="EnterYourSSPNameHere";
static void Main(string[] args)
{
SetupBDC();
CreateLobSystemAndInstance();
Console.WriteLine("Press any key to exit...");
Console.Read();
}
static void SetupBDC()
{
SqlSessionProvider.Instance().SetSharedResourceProviderToUse(yourSSPName);
}
static void CreateLobSystemAndInstance()
{
LobSystem system = ApplicationRegistry.Instance.LobSystems.Create("AdventureWorksSampleFromCode", true, "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbSystemUtility", "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbConnectionManager", "Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbEntityInstance");
LobSystemInstance sysInstance = system.LobSystemInstances.Create("AdventureWorksSampleFromCode", true);
sysInstance.Properties.Add("AuthenticationMode", (Int32)Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbAuthenticationMode.PassThrough);
sysInstance.Properties.Add("DatabaseAccessProvider", (Int32)Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbAccessProvider.SqlServer);
sysInstance.Properties.Add("RdbConnection Data Source", "YourAdvWorks2000ServerNameHere");
sysInstance.Properties.Add("RdbConnection Initial Catalog", "AdventureWorks2000");
sysInstance.Properties.Add("RdbConnection Integrated Security", "SSPI");
sysInstance.Properties.Add("RdbConnection Pooling", "false");
sysInstance.Properties.Add("WildCardCharacter", "%");
sysInstance.Update();
Console.WriteLine("Created a system instance successfully.");
}
}
}
See Also
Reference
Microsoft.Office.Server.ApplicationRegistry.Administration Namespace