8. Dezember 2009 13:46
Die Lösung: Ein Rechtschreibfehler in der ClientUserSettings.Config war der Verursacher
. Anbei die korrekte Config für das beschriebene Problem.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<!--The Name of the computer running Microsoft Dynamics NAV Server.-->
<add key="Server" value="nav2009server"></add> <!--The Instance Name of the Microsoft Dynamics NAV Server.-->
<!--Default Value: DynamicsNAV-->
<add key="ServerInstance" value="DynamicsNAV"></add> <!--The listening TCP port for the computer running Microsoft Dynamics NAV Server for this Client.-->
<!--Default Value: 7046-->
<add key="ServerPort" value="7046"></add> <!--The security services for protecting the client/server data stream. This value must match the value specified in the
Microsoft Dynamics NAV Server configuration file.
-->
<!--Default Value: EncryptAndSign, Value Range: EncryptAndSign, Sign, None-->
<add key="ProtectionLevel" value="EncryptAndSign"></add> <!--The threshold in memory consumption at which the RoleTailored client starts compressing datasets, in kilobytes.-->
<!--Default Value: 64-->
<add key="CompressionThreshold" value="64"></add> <!--The default size for a chunk, in kilobytes. -->
<!--Default Value: 28, Value Range: 4 to 80-->
<add key="ChunkSize" value="28"></add> <!--The value for whether NTLM fallback is permitted for authentication. To require Kerberos authentication, set this value to false.-->
<!--Default Value: true-->
<add key="AllowNtlm" value="false"></add> <!--If this parameter is set to true, then the client can only connect to a Microsoft Dynamics NAV Server service
with a service principal name (SPN): <server instance>/<host>:<port>
If this parameter is set to false, then the client attempts to connect to the configured Microsoft Dynamics NAV Server service
regardless of whether it is associated with an SPN.
-->
<!--Default Value: false-->
<add key="ServicePrincipalNameRequired" value="true"></add> <!--The maximum amount of time to wait before determining that the client's attempt to connect to Microsoft Dynamics NAV Server has failed.
Time span format: [dd.]hh:mm:ss[.ff]
Where:
• dd: days
• hh: hours
• mm: minutes
• ss: seconds
• ff: fractions of a second
You can also use MaxValue to indicate no timeout.
-->
<!--Default Value: 00:00:30-->
<add key="OpenConnectionTimeout" value="00:00:10"></add> <!--A comma-delimited list of servers that is displayed in the Select Server and Company window when you click the drop-down arrow
in the Server name field.
This parameter is not present after you install the RoleTailored client, but it is created and populated once the user enters a
server name in the field.
You can create and populate this field after installing the RoleTailored client. This gives the user a list of servers from which to choose.
Example: <add key="UrlHistory" value="localhost,dev:7046/DynamicsNAV,sales:7046/DynamicsNAV"/>
-->
<add key="UrlHistory" value="nav2009server:7046/DynamicsNAV"></add> <!--This setting is not present by default in the ClientUserSettings.config file. If you need to set this parameter,
then you must first add it manually.
The filter-as-you-type (or find-as-you-type) feature displays a drop-down list of available choices as you type text into a
field in the RoleTailored client. Some users may find this feature distracting or counterproductive (for example,
if the drop-down list appears whenever the user happens to pause while typing).
To disable this feature, edit the ClientUserSettings.config file to add this parameter with a value of false:
<add key="FilterAsYouTypeAutomaticLookupEnabled" value="false"></add>
-->
<!--Default Value: true-->
<add key="FilterAsYouTypeAutomaticLookupEnabled" value="true"></add> <add key="DelegationInfo" value="DomainUser"></add> </appSettings>
</configuration>
Herzliche Grüße
Holger Ertel