Hans Olav Loftum
Hans Olav Loftum
Perfect! I can make a pull request if you'd like.
@dariusdamalakas No, not in IdentityServer's repo. After reading https://github.com/IdentityServer/IdentityServer3/blob/master/CONTRIBUTING.md#contributing-code-and-content I got the feeling I would need a "go" before creating a pull request. There is, however, a way to get...
I have finally created a PR: https://github.com/IdentityServer/IdentityServer3/pull/3322
Possible solution: Adding configuration property ``` [ConfigurationProperty(ConfigurationStrings.MessageEncoding, DefaultValue = WSMessageEncoding.Text)] public WSMessageEncoding MessageEncoding { get { return (WSMessageEncoding)base[ConfigurationStrings.MessageEncoding]; } set { base[ConfigurationStrings.MessageEncoding] = value; } } ``` to `CoreWCF.Configuration.BasicHttpBindingElement.cs` makes...
I would be happy to create a PR.
I am getting the same issue in this case: ```terraform resource "azurerm_postgresql_flexible_server" "server" { authentication { active_directory_auth_enabled = true password_auth_enabled = true } administrator_login = "someadmin" # (...) } resource...