Re: soap with attachments mime dime

2010-07-13 Thread Daniel Kulp
On Tuesday 13 July 2010 5:38:54 am erskine wrote: > Hi. > > 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 attachm

Re: soap with attachments mime dime

2010-07-13 Thread Glen Mazza
://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.

Re: soap with attachments mime dime

2010-07-13 Thread erskine
ments() returns null. Any idea why this is so? I have to write my own interceptor and populate the message object with the attachments from the requestObject. kin -- View this message in context: http://cxf.547215.n5.nabble.com/soap-with-attachments-mime-dime-tp568705p1046655.html Sent from the cxf

Re: soap with attachments mime dime

2009-12-16 Thread Daniel Kulp
On Mon December 14 2009 5:18:44 pm Alex wrote: > hi, > > how can I send attachments (no mtom) from the client, is there a > possibility to specify the typ (mime or dime). We don't support dime. I THINK you can do something similar using: ((BindingProvider)port).getRequestContext().put(...) to

Re: soap with attachments mime dime

2009-12-14 Thread Alex
hi, how can I send attachments (no mtom) from the client, is there a possibility to specify the typ (mime or dime). thanks Alex Daniel Kulp schrieb: On Mon December 14 2009 4:49:05 am Alex wrote: hi, I have to implement a webservice which must be able to receive attachments. The attachment

Re: soap with attachments mime dime

2009-12-14 Thread Alex
thank you Daniel for your help, the example you mentioned works, but I still getting warnings like: Unchecked cast from Object to Map I am not sure what's the recommended java version fpr apache xcf. I'am using jdk 1.6.0.17 with apach xcf 2.2.5 Do you have any idea. Thank you Alex Daniel Kulp

Re: soap with attachments mime dime

2009-12-14 Thread Daniel Kulp
On Mon December 14 2009 4:49:05 am Alex wrote: > hi, > > I have to implement a webservice which must be able to receive attachments. > The attachments are encoded in MIME or DIME, all attachments are send > via SWA Soap With Attachments (not MTOM). > I tested the webservice with SOAPUI and attache

soap with attachments mime dime

2009-12-14 Thread Alex
hi, I have to implement a webservice which must be able to receive attachments. The attachments are encoded in MIME or DIME, all attachments are send via SWA Soap With Attachments (not MTOM). I tested the webservice with SOAPUI and attached a PDF-File to the request, and it seems that the serve