I've tried it with every AuthenticationMode! But no one seems to work correctly in my case. I thought that PassThrough should work with a preset User ID and password. This would be enough for the moment, but even this doesn't work!!
With WindowsCredentials I get the following error:
The Property with name 'SsoApplicationId' is missing on the LobSystemInstance.
SsoApplicationId I tried to set this with the SharePoint SSO but I've no such services. How can I set this just for the current WindowsCredentials (of the current Sharepoint user)
With RevertToSelf I get the following error:
"An error occurred while retrieving data from MyLOBInstance. Administrators, see the server log for more information."
The server log contained no useful information for me.
With PassTrough I get the following error:
"Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. [CLIENT: <local machine>]"
Why are the lines
<Property Name="RdbConnection User ID" Type="System.String">MyDomain\Administrator</Property>
<Property Name="RdbConnection Password" Type="System.String">mYpAssWoRd</Property>
being ignored
Everything (MOSS, SQLServer,...) is on a single machine, so I don't need to activate Kerberos, do I
<LobSystemInstance Name="SEPInstance1207">
<Properties>
<Property Name="DatabaseAccessProvider" Type="Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbAccessProvider">SqlServer</Property>
<Property Name="AuthenticationMode" Type="Microsoft.Office.Server.ApplicationRegistry.SystemSpecific.Db.DbAuthenticationMode">PassThrough</Property>
<Property Name="RdbConnection Data Source" Type="System.String">MyDBServer</Property>
<Property Name="RdbConnection Initial Catalog" Type="System.String">MyDataBase</Property>
<Property Name="RdbConnection Integrated Security" Type="System.String">TRUE</Property>
<Property Name="RdbConnection User ID" Type="System.String">MyDomain\Administrator</Property>
<Property Name="RdbConnection Password" Type="System.String">mYpAssWoRd</Property>
<Property Name="RdbConnection Pooling" Type="System.String">False</Property>
</Properties>
</LobSystemInstance>