I'm trying to send a soap request with a pdf attachment using karate framework.
I've got the same process on SoapUI working, but when I try to do it on karate, the attachment is not sending I've got the same process on SoapUI working, but when I try to do it on karate, the attachment is not sending (https://i.stack.imgur.com/WoiF6.png)
Could someone help me with that?
I've tried using multipart file with content-disposition attachment as follow, but its not working
And multipart file myfile = { read : '1.pdf', Content-ID:<2.pdf>, Content-Transfer-Encoding:binary, Content-Type: 'application/pdf', Content-Disposition: attachment; name: '1.pdf' }
And multipart file image = { read: '1.pdf', Content-Type: 'application/pdf'}
And multipart file myFile = { read: '1.pdf', filename: '1.pdf' }
And multipart entity read('1.txt')