Reputation: 1460
I am using soapUI for testing a REST web service. Is there a way to attach a file with the other parameters in a multipart request? I see the attachment tab in the panel but I cannot give that attachment a parameter name so that server can identify. It's not helping.
Upvotes: 25
Views: 57118
Reputation: 1460
I found it but forgot to post it here. It was not so intuitive.
C:\temp\my-file.csv
file:C:\temp\my-file.csv
That should be it. When attaching a file if you select Yes when it asks to Cache the file, you won't have to specify full path in step 2 above. The value of file parameter should be file:my-file.csv
Upvotes: 52
Reputation: 1
select mediatype as application/json and then add the json string to that. It will go to server as payload. Usually this request is of POST or PUT type
Upvotes: -4