Closed firebird-automations closed 4 years ago
Commented by: @luronumen
Hi Jiri Cincura
I just retested this issue in Firebird 3.0.6, released yesterday, and the issue is still reproducible. That is, this bug is NOT related to the CORE6329 bug fixed in Firebird 3.0.6.
Other than that, I just retested this issue using an old version of the http://ADO.NET provider (v5.5.0 - Wednesday, October 5, 2016) and the issue IS also reproducible on it, that is, this is an old issue and it was NOT introduced recently by any update of the http://ADO.NET provider.
Anyway, this issue is blocking the use of the Firebird 3.0 Windows Trusted Authentication (Win_Sspi) in .NET applications :(
Best regards, Luciano
Commented by: @luronumen
Hi Jiri Cincura,
Any news about this issue? Did you have a chance to evaluate the proposed solution in the DNET936 issue? Could you generate a FirebirdSql.Data.FirebirdClient.dll with the solution proposed in the DNET936 issue so that I can confirm that it is the same issue that I described here?
I am sorry on insisting in this case but the reason for so much insistence is because this issue is blocking the migration of the .NET systems of the company to from Firebird 2.5 to 3.0.
I thank you in advance for making possible the use of Firebird by .NET systems!
Best Regards, Luciano
Commented by: @cincuranet
Haven't looked at the DNET936 yet. I'll try to find some time and run the whole tests suite with this change.
Commented by: @luronumen
Thank you very much Jiri Cincura!
This bug is really blocking the use Windows Trusted Authentication of .NET applications with Firebird 3.0.x and I am hoping that you will be able to fix this bug in time for the next version of http://ADO.NET provider.
Thanks again!
Commented by: @luronumen
Retest result on https://teamcity.jetbrains.com/repository/download/OpenSourceProjects_FirebirdClient_CiBuildItems_ProviderCoreFb30/3099959:id/FirebirdSql.Data.FirebirdClient.7.5.0.nupkg!/lib/net452/FirebirdSql.Data.FirebirdClient.dll: PASSED!
Thank you very much for the fix Jiri Cincura!
Best Regards, Luciano
Submitted by: @luronumen
Duplicates DNET936
Attachments: LOGIN_ERROR.png
ACTUAL RESULT: Windows Trusted Authentication (Win_Sspi) exception on Client PC when Firebird Server is version 3.0.5 (See LOGIN_ERROR.png picture attached): - 335544382 - Invalid clumplet buffer structure: buffer end before end of clumplet - clumplet too long
EXPECTED RESULT: No Windows Trusted Authentication (Win_Sspi) exception should be happen on Client PC when Firebird Server is version 3.0.5
STEPS TO REPRODUCE THE ISSUE: - Try to connect a Firebird 3.0.5 Database Server from a client PC using Windows Trusted Authentication (Win_Sspi)
IMPORTANT NOTES: - This issue does NOT happen when Firebird server version is 2.5.9; - If the .NET application (FirebirdSql.Data.FirebirdClient 7.5.0) is installed on the same PC where Firebird 3.0.5 is installed (Server), the .NET application can authenticate via Windows Trusted Authentication (Win_Sspi) without any issue; - The issue is only reproducible if the .NET application is installed on a client PC; - The .NET application authentication via user/password (Srp) works perfectly on both the server PC and the client PC; - The Windows Trusted Authentication (Win_Sspi) using the native Firebird 3.0.5 (fbclient.dll - FlameRobin) library is working perfectly on both the server PC and the client PC; - The issue is the same described in the following Firebird FAQ: http://www.firebirdfaq.org/faq320/
ENVIRONMENT SETUP ===firebird.conf===
SETUP
AuthClient = Legacy_Auth, Srp, Win_Sspi AuthServer = Legacy_Auth, Srp, Win_Sspi ServerMode = Super UserManager = Legacy_UserManager, Srp WireCrypt = Enabled
PERFORMANCE
DefaultDbCachePages = 30K FileSystemCacheThreshold = 2M LockHashSlots = 30011 LockMemSize = 15M RemoteServicePort = 3050 TempBlockSize = 2M TempCacheLimit = 3000M
SECURITY
DatabaseAccess = None SecurityDatabase = $(dir_secDb)/security3.fdb
Database Page Size: 8192
=== http://ADO.NET Connection String === var fbConnectionStringBuilder = new FbConnectionStringBuilder { Pooling = true, ServerType = FbServerType.Default, DataSource = Properties.Settings.Default.Server, Database = Properties.Settings.Default.Database, Charset = "WIN1252", Role = "RDB$ADMIN" };