Description
authnRequestBuilder cofiguration property for samlProtocolType is ignored due to the bug in org.apache.cxf.fediz.core.config.SAMLProtocol line 84. It states following:
samlpRequestBuilder = new DefaultSAMLPRequestBuilder();
it means, that DefaultSAMLPRequestBuilder is created even if configuration defines custom authnRequestBuilder.
it should be something like this:
if (null == samlpRequestBuilder)
samlpRequestBuilder = new DefaultSAMLPRequestBuilder();