erskine wrote: > > I tried putting my attachments using > MessageContext.OUTBOUND_MESSAGE_ATTACHMENTS or using Message.Attachments. > I can see the attachments in the requestContext, but they do not get > automatically added to the message object's attachment collection. So a > call to message.getAttachments() returns null. >
Just a guess--if you're using JAX-WS handlers (instead of CXF interceptors), make sure you set the SCOPE to APPLICATION and not just HANDLER, so the client or service endpoints will receive whatever you attach: http://www.jroller.com/gmazza/entry/jaxws_handler_tutorial HTH, Glen -- View this message in context: http://cxf.547215.n5.nabble.com/soap-with-attachments-mime-dime-tp568705p1046879.html Sent from the cxf-user mailing list archive at Nabble.com.
