On Monday, February 27, 2012 8:03:00 AM fachhoch wrote: > My web service I am sending multiple huge files (as larger as 50mb each > file) as response , most of the times I am getting broken pipe error , > error with jaxb serilization. Sending larger files through web service is > it any different from normal web service ?
It shouldn't be, no. However, I would suggest using MTOM for this instead of having JAXB inline in. A broken pipe is usually due to the client side closing the connection for whatever reason. If the data is inlined, it MAY be possible the client has hit an OOM or something which is causing the connection to drop. Don't really know. Dan > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/send-huge-files-through-web-service-tp55193 > 56p5519356.html Sent from the cxf-user mailing list archive at Nabble.com. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
