]
Radim Hatlapatka updated WFLY-5236:
-----------------------------------
Affects Version/s: 10.0.0.CR1
[Migration operation] [Web to Undertow] SSL configuration - verify
client attribute value is not properly migrated
------------------------------------------------------------------------------------------------------------------
Key: WFLY-5236
URL:
https://issues.jboss.org/browse/WFLY-5236
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Affects Versions: 10.0.0.Beta2, 10.0.0.CR1
Reporter: Stuart Douglas
Assignee: Stuart Douglas
Priority: Critical
Fix For: 10.0.0.CR1
In web there exists different options for {{verify-client}} attribute of ssl
configuration [1] than values which are allowed to be defined as part of https-listener
(REQUIRED, REQUESTED, NOT_REQUESTED).
Currently the migration operation fails as the value isn't converted to equivalent
value accepted by Undertow.
[1]
{code:xml}
<xs:attribute name="verify-client" default="none">
<xs:annotation>
<xs:documentation>
that is OpenSSL SSLVerifyClient (optional,require,optionalNoCA,none)
and clientAuth (true=require/false=none)
</xs:documentation>
</xs:annotation>
</xs:attribute>
{code}