I've got a terrible SOAP WSDL, and all attempts to do a codegen with JAXB/CXF/Axis failed to generate usable code. In order to build a web service out of it, I started implementing it out of a Spring MVC Controller.

Things were OK until one of the services had to receive a SOAP/MTOM+XOP request. I tried using Commons FileUpload through org.springframework.web.multipart.commons.CommonsMultipartResolver but it returns no files. That's understandable because the MTOM attachments are not files per se. And they do not have a file name. Just a Content-ID.

Is there a way to obtain these attachments?

link|improve this question

67% accept rate
Have you tried using XMLBeans? I've had great success with its codegen for consuming SOAP requests. You just need to convert the WSDL to a Schema (XMLBeans comes with a converter in its /bin dir) and then you can generate the classes. – Aaron Sheffey Aug 16 '11 at 23:56
1  
@Aaron: XMLBeans is great, however it doesn't support MTOM. – rahul Aug 16 '11 at 23:58
Good to know...thx! Here's a thread which deals with this issue: forum.springsource.org/showthread.php?49236-MTOM-and-Spring-WS – Aaron Sheffey Aug 17 '11 at 0:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.