Details
Description
There is a bug in
org.apache.servicemix.cxf.transport.nmr.NMRConduitOutputStream.java
private void commitOutputMessage() throws IOException { try { ... } catch (Exception e) { e.printStackTrace(); new IOException(e.toString()); }
Notice it creates a new IOException but never throws it. As a result the error is ignored completely.