]
Radim Hatlapatka reopened WFLY-5236:
------------------------------------
Checked with WildFly 10.0.0.CR1.
Values {{true}} and {{false}} are not migrated even though according to
{{jboss-as-web_2_2.xsd}}, {{true=require}} and {{false=none}}. As such these values should
be migrated the same way as values {{require}} and {{none}}
[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}