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?