bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpSoapProviderMarshaler.java [158:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected InterceptorChain getChain(Phase phase) {
        InterceptorChain chain = chains.get(phase);
        if (chain == null) {
            chain = binding.getInterceptorChain(phase);
            if (policies != null) {
                for (int i = 0; i < policies.length; i++) {
                    chain.add(policies[i].getInterceptors(phase));
                }
            }
            chains.put(phase, chain);
        }
        return chain;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpSoapConsumerMarshaler.java [191:203]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected InterceptorChain getChain(Phase phase) {
        InterceptorChain chain = chains.get(phase);
        if (chain == null) {
            chain = binding.getInterceptorChain(phase);
            if (policies != null) {
                for (int i = 0; i < policies.length; i++) {
                    chain.add(policies[i].getInterceptors(phase));
                }
            }
            chains.put(phase, chain);
        }
        return chain;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



