I try to connect to a SOAP web service using SoapUI (5.3.0). Additionally an mtom attachment should be send along. But it seems that there is some problem sending the attachment - I always get the following error message as a response:
No attachment for id
someID
found in [NameOfTheAttachmentFile.txt]
Here is what I did:
- Enabled the request property 'Enable MTOM'
- Added an attachment (in the Attchment section)
- Added some cid:12345
- Selected that cid within the "Part" column of the attachment
And here is part of the request:
<ws:stream mimeType="text/plain" uuid="0815" filename="Example.txt" ...>
<ws:documentData>cid:1234</ws:documentData>
</ws:stream>
And as I can see in SoapUI's Raw view the document is send alongside the request... Any ideas whats causing the problem?