use of org.apache.cxf.binding.soap.interceptor.StartBodyInterceptor in project cxf by apache.
the class SoapOutInterceptorTest method setUp.
@Before
public void setUp() throws Exception {
super.setUp();
StaxInInterceptor sii = new StaxInInterceptor("phase1");
chain.add(sii);
rhi = new ReadHeadersInterceptor(BusFactory.getDefaultBus(), "phase2");
chain.add(rhi);
sbi = new StartBodyInterceptor("phase1.5");
chain.add(sbi);
soi = new SoapOutInterceptor(BusFactory.getDefaultBus(), "phase3");
chain.add(soi);
}
use of org.apache.cxf.binding.soap.interceptor.StartBodyInterceptor in project cxf by apache.
the class SAAJInInterceptorTest method setUp.
@Before
public void setUp() throws Exception {
super.setUp();
rhi = new ReadHeadersInterceptor(BusFactory.getDefaultBus(), "phase1");
chain.add(rhi);
sbi = new StartBodyInterceptor("phase1.5");
chain.add(sbi);
saajIntc = new SAAJInInterceptor("phase2");
chain.add(saajIntc);
chain.add(new CheckFaultInterceptor("phase3"));
}
Aggregations