i have started working on vaultsharp but facing some issues plz help me
MayaKhan12
@MayaKhan12
any method to close the connection forcefully. var microsoftSqlConnectionInfo = new MicrosoftSqlConnectionInfo { ConnectionString = "server=localhost\sqlexpress;port=1433;user id=sa;password=**;database=master;app name=vault", MaximumOpenConnections = 5, VerifyConnection = true }; await vaultClient.MicrosoftSqlConfigureConnectionAsync(microsoftSqlConnectionInfo, mountPoint); as on last line application throw following exception "System.Exception: '400 BadRequest. {"errors":["Error validating connection info: failed to send SQL Batch: write tcp [::1]:9468-\u003e[::1]:1433: wsasend: An existing connection was forcibly closed by the remote host."]}"
Raja Nadar
@rajanadar
@MayaKhan12 the library exposes the apis supported by vault server
define a connection string, define roles, create credentials.
the library has no control or knowledge over the closing of the connection etc.
MayaKhan12
@MayaKhan12
please tell me then how can we connect with vault (MSSQL) in C#
daborg69
@daborg69
Hi, how are you progressing on the new version? Is it realistic that we will see a release this month (March)? Thanks
Raja Nadar
@rajanadar
@daborg69 the 0.9.x version took a hit in terms of its timeline (due to some business travel etc). I am re-adjusting it this week, and aiming for a mid-april first release. Also changing the release method a bit.
David Cumps
@CumpsD
looking forward to the 0.9.x version :) using the deprecated way of accessing mssql now in vault, which works ofcourse, but for how long :p
andrewhart098
@andrewhart098
hello
I was having some trouble running VaultClientEnd2EndTests so I tried my hand at refactoring
The vault server configuration is now in code and the only assumption about the VaultClientEnd2EndTests is that the currently supported vault.exe is in the bin/Debug folder of the testing solution
Here is the MR: rajanadar/VaultSharp#45
andrewhart098
@andrewhart098
I abstracted the setting up of a test vault instance into it's own class and refactored the VaultClientEnd2EndTests to use this class. I'm hoping to build more End2End tests using this abstraction: https://github.com/rajanadar/VaultSharp/pull/46/commits
andrewhart098
@andrewhart098
Hi @rajanadar - is there anything I can do to help with the 0.10 release?
kiranvengala
@DotNetGeek2017_gitlab
There is no support for .net core 1.0
Raja Nadar
@rajanadar
Yes. I am working on that next. Enhance the next NuGet package with multi platform outputs.
@andrewhart098 thanks for the offer. Right now, I redesigned VaultSharp for modularity & did the 0.10.x release. I expect the design to be stable now and keep adding new features on this design. Need to get a .net 1.x, .net 4.5 support going. After that, feel free to add bit by bit to the lib.
@DotNetGeek2017_gitlab I am working on the support for .net core 1.x, .net 4.5 support etc.