Hi
I think we have a performance degredation in our cxf webservice.
I try to send a file of 200mb through cxf and store it to a file. Sometimes
this takes 12 seconds, but it often takes a few minutes.
My service is now implemented like this:
log.debug("String files");
for(Dokument d :forsendelse.getDokumenter()){
d.getData().writeTo(new FileOutputStream("target/" +
UUID.randomUUID().toString()));
}
log.debug("Files stored");
I am running cxf on jetty 9.2, the client is a unit test which sends files
from the filesystem.
Anyone have any thoughts?
--
Idar Borlaug