On Wed July 15 2009 12:59:32 pm Kid_79 wrote: > Does cxf save attachments in temporary files?
It depends. :-) In SOME cases, it doesn't need to save them anywhere. For example, if there is just a single attachment that is passed in as a param, we can directly stream it off the wire. No saving needed. If the attachments are small (default is 64K, but controllable), we also just keep them in memory. However, if they exceed that threshold, then yes, we dump them into temp files. Does that answer the question? -- Daniel Kulp [email protected] http://www.dankulp.com/blog
