Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
top
top

Diese Seite enthält eine Auflistung von Workarounds für bekannte Fehler in SmartTaxBalance.

Table of Contents

Fehlermeldung nach Login

Fehler:

Nach der Anmeldung in Smart Tax Balance erscheint eine Fehlermeldung mit folgender Nachricht:

Code Block
languagetext
Das Programm wird aufgrund eines Fehlers geschlossen.

[NullReferenceExcpetion] Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.

Im Log ist folgende Meldung zu finden:

Code Block
languagetext
WARN AMANA.SmartTaxBalance.Client.Presentation.Fat.DependencyInjection.LoggingNinjectPresenterFactory Failed to create presenter of type AMANA.SmartTaxBalance.Client.Presentation.Fat.Presenter.UnitSelectionPresenter on behalf of view 0x02f150a8 of type AMANA.SmartTaxBalance.Client.Presentation.Fat.Views.UnitSelectionForm due to an unhandled exception.
The exception will not be re-thrown and the program will continue without presenter.
Die Datei oder Assembly "LicenseSpot.Framework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6dd0cfd7f9476ce8" oder eine Abhängigkeit davon wurde nicht gefunden.
Das System kann die angegebene Datei nicht finden.

Ursache:

Die Installation ist nicht korrekt durchgeführt worden und die Bibliothek "LicenseSpotFramework.dll" liegt nicht im Programmverzeichnis

Lösung:

Die Anwendung deinstallieren und anschließen neu installieren.

Weitere Informationen zu Installation und Update finden Sie hier.


nach oben

Microsoft.Data.SqlClient.SqlException (0x80131904): Es konnte eine Verbindung mit dem Server hergestellt werden, doch während des Handshakes vor der Anmeldung trat ein Fehler auf. 

...

Breaking changes in Microsoft.Data.SqlClient 2.0

If the target server is configured to enforce encryption, then this version of the client requires the server certificate to be installed locally or enforce use of SSL for the database connection. Notice that Azure SQL Database is always configured to enforce encryption. So when using this version against Azure SQL Database (or any SQL Server enforcing encryption), you must at least add this setting to your connection string (to enforce use of SSL):

Code Block
languagepowershell
Encrypt=true; ODER TrustServerCertificate=true

...