Skip to content

BspCompliant is always set to true in Wss4jSecurityInterceptor [SWS-831] #905

@gregturn

Description

@gregturn

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

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions