Re: SOAP Attachment question/problem

2007-08-29 Thread Daniel Kulp
We do support SOAP w/ Attachements (it's required by JAX-WS spec). Unfortunately, I don't know a lot about it. You might want to check the JAX-WS spec to see what they say. For the most part, on the code side, you just use a DataHandler object for the parameter. A WSDL with

Re: SOAP Attachment question/problem

2007-08-29 Thread Freeman Fang
Hi Pawel, You can refer to the system test ClientServerSwaTest to get more details about how cxf support SWA. http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/swa/ClientServerSwaTest.java?view=log Cheers Freeman Daniel Kulp wrote: We do support

SOAP Attachment question/problem

2007-08-28 Thread Pawel Janusz
Hello, I'm starting using CXF to use them as WebService. I cannot find anywhere example on how to add SOAP attachment in service class. Could anyone help me ? Some example code will be very helpful. -- Greetings Paweł Janusz

Re: SOAP Attachment question/problem

2007-08-28 Thread Willem Jiang
Hi, You can take a look of the below two documents. [1] http://cwiki.apache.org/CXF20DOC/mtom.html [2]http://cwiki.apache.org/CXF20DOC/mtom-attachments.html And you can find the simple MTOM from CXF bin distribution . Willem. Pawel Janusz wrote: Hello, I'm starting using CXF to use them as

Re: SOAP Attachment question/problem

2007-08-28 Thread Pawel Janusz
Yes, this is a MTOM example, but as far as I know SOAP Attachments is something different. Willem Jiang wrote: Hi, You can take a look of the below two documents. [1] http://cwiki.apache.org/CXF20DOC/mtom.html [2]http://cwiki.apache.org/CXF20DOC/mtom-attachments.html And you can find the