Skip to content

Commit

Permalink
Set BSPComplian on WSHandler
Browse files Browse the repository at this point in the history
Setting bspCompliant = false has effect only for first request, setting
it on the handler fixes this.

Issue: SWS-828
  • Loading branch information
poutsma committed Apr 12, 2013
1 parent 8ab2c0b commit 51d615f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ public void setEnableRevocation(boolean enableRevocation) {
* Set the WS-I Basic Security Profile compliance mode. Default is {@code true}.
*/
public void setBspCompliant(boolean bspCompliant) {
this.handler.setOption(WSHandlerConstants.IS_BSP_COMPLIANT, true);
this.bspCompliant = bspCompliant;
}

Expand Down

0 comments on commit 51d615f

Please sign in to comment.