sb.getOutFaultInterceptors().add(new StaxOutInterceptor());
if (!Boolean.TRUE.equals(binding.getProperty(DATABINDING_DISABLED))) {
if (SoapConstants.BINDING_STYLE_RPC.equalsIgnoreCase(bindingStyle)) {
sb.getInInterceptors().add(new RPCInInterceptor());
sb.getOutInterceptors().add(new RPCOutInterceptor());
} else if (SoapConstants.BINDING_STYLE_DOC.equalsIgnoreCase(bindingStyle)
&& SoapConstants.PARAMETER_STYLE_BARE.equalsIgnoreCase(parameterStyle)) {
//sb.getInInterceptors().add(new BareInInterceptor());
sb.getInInterceptors().add(new DocLiteralInInterceptor());
sb.getOutInterceptors().add(new BareOutInterceptor());