Juergen Ebert opened SWS-831 and commented
The fix in #904 is incorrect. The handler option IS_BSP_COMPLIANT is always set to 'true'.
public void setBspCompliant(boolean bspCompliant) {
this.handler.setOption(WSHandlerConstants.IS_BSP_COMPLIANT, true);
this.bspCompliant = bspCompliant;
}
should be
public void setBspCompliant(boolean bspCompliant) {
this.handler.setOption(WSHandlerConstants.IS_BSP_COMPLIANT, bspCompliant);
this.bspCompliant = bspCompliant;
}
Affects: 2.1.3
Referenced from: commits f4c1fc8