]
Darran Lofthouse resolved ELY-1395.
-----------------------------------
Resolution: Done
Incorrect type on <set-port /> element within
authentication-configuration-type
-------------------------------------------------------------------------------
Key: ELY-1395
URL:
https://issues.jboss.org/browse/ELY-1395
Project: WildFly Elytron
Issue Type: Bug
Components: Authentication Client
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
Fix For: 1.2.0.Beta6
Presently it is defined as: -
{code}
<xsd:element name="set-port" type="port-number-simple-type"
minOccurs="0"/>
{code}
It should be 'port-number-type' i.e.
{code}
<xsd:complexType name="port-number-type">
<xsd:attribute name="number"
type="port-number-simple-type" use="required"/>
</xsd:complexType>
<xsd:simpleType name="port-number-simple-type">
<xsd:restriction base="xsd:positiveInteger">
<xsd:minInclusive value="1"/>
<xsd:maxInclusive value="65535"/>
</xsd:restriction>
</xsd:simpleType>
{code}