Oleksii Leonov

Results 7 comments of Oleksii Leonov

Hey. I have the same problem on linux (LDAPS). Used TrustAllCertificates(); SetOption(LdapOption.LDAP_OPT_REFERRALS, 0); `Operations error. 000004DC: LdapErr: DSID-0C090A57, comment: In order to perform this operation a successful bind must be...

@flamencist you can reproduce this error with this code snippet: ```csharp var groupName = "MyGroup"; using (var connection = new LdapConnection()) { connection.Connect("my.company.local", 636, LdapSchema.LDAPS); connection.TrustAllCertificates(); connection.SetOption(LdapOption.LDAP_OPT_REFERRALS, 0); connection.Bind(LdapAuthType.Simple, new...

BindAsync ` Operations error. 000004DC: LdapErr: DSID-0C090A37, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v4563. Result: 1. Method: ldap_parse_result....

You must add an endpoint `"/connect/revoke"` ``` .AddServer(options => { // Enable the token endpoints. options.SetAuthorizationEndpointUris("/connect/authorize") .SetLogoutEndpointUris("/connect/logout") .SetTokenEndpointUris("/connect/token") .SetRevocationEndpointUris("/connect/revoke") .SetUserinfoEndpointUris("/connect/userinfo"); } ``` When you add a client ``` Permissions.GrantTypes.Revocation ```...

temporary solution, create runtimeconfig.template.json ``` { "configProperties": { "System.Drawing.EnableUnixSupport": true } } ```