ManageSoft Element
This element contains all the information needed for connection to the central compliance database.
Examples
Running on the central application server in an on-premises implementation, using the database connection string specified in the registry, and executing separate updates without wrapping them in a single transaction for speed (as distinct from a single database transaction, where rollback is supported in the event of any failure to the updates):
<ManageSoft ConnectionType="ECM" RunInTransaction="False" />
In connected mode, when access is available to the central compliance database using Windows authentication, and the connection string has not been encrypted (the connection string attribute should be all on one line):
<ManageSoft AccountIsEncrypted="False"
ConnectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=FNMP;
Data Source=WIN2K8SRV2"/>
In disconnected mode, when the adapter is exercised on an inventory beacon with no access to the central compliance database:
<ManageSoft ConnectionType="Default" RunInTransaction="False" />
In connected mode, when access is available to the central compliance database but the connection string has been encrypted (which locks the adapter file to use on this same computer). The encrypted connection string has been shortened in this example for printing purposes.
<ManageSoft ConnectionType="Specific"
ConnectionString="1|2Y728ZndMMMpMwQMc...WikVzdsnJvxL"
RunInTransaction="False" AccountIsEncrypted="True" />
Contains
<ManageSoft />
is an empty element, containing no child elements.
(See attributes listed below.)
Contained by
<root>
is the parent.
Supported attributes
Attribute | Details |
---|---|
AccountIsEncrypted |
Mandatory. Boolean:
For details about encrypting connection strings in an
adapter XML file, see Command Line for Business Importer.
Note: The
AccountIsEncrypted attribute is used by the
Business Importer to determine whether the
ConnectionString value is encrypted. Setting
the value to false once the connection string has been encrypted
results in a connection error when the Business Importer is
run with this adapter file.Tip: To remove
encryption, you must do all of the following three things:
|
ConnectionString |
Defines the OLE-DB connection string to the central compliance database. This value may be plain text (when
The attribute is mandatory in connected mode (with access to the central
compliance database) when The unencrypted form of the connection string value depends on which type
of authentication is used to connect to the central SQL Server
database:
In either case, substitute your values for the following placeholders as
required:
Tip: If you do not wish to type in a value for
ConnectionString , you can build a connection string
using a UDL file. For more information, see Validating Connection Strings. |
ConnectionType |
Optional. Defines the method for determining the connection. Valid values
are:
|
RunInTransaction |
Optional. Boolean:
|
2022 R1