p.s.
On Mon, Oct 19, 2015 at 7:27 PM, arjan tijms <arjan.tijms_at_gmail.com> wrote:
> If the application is deployed to a stock GlassFish without any
> configuration whatsoever being done it can be requested
>
I now also tested the demo application on WildFly 10 RC3 and it works there
as well.
Unfortunately WildFly requires a modification in order to activate JASPIC
(it ships with JASPIC deactivated). In order to activate it, the following
dummy code has to be added to its standalone.xml config file:
<security-domain name="jaspitest" cache-type="default">
<authentication-jaspi>
<login-module-stack name="dummy">
<login-module code="Dummy" flag="optional"/>
</login-module-stack>
<auth-module code="Dummy"/>
</authentication-jaspi>
</security-domain>
Kind regards,
Arjan Tijms