I send POST request in raw
tab , in XML format. File could be selected under binary
, but unable to send both as a request. SOAP request in XML format and file attachment should be sent in the same request, just like in SoapUI.
@plaidshirtakos Welcome to the community
For SOAP, all requests should be only βPOSTβ. Kindly explain in details what is your ask here
So Iβve pasted SOAP envelope to raw field of Body. It needs to be POST request, because I would like to send it, but I canβt add attachment file.
In soapUI there is attachment section in which we can add file in .pdf format, the same way I want to attach a file in POSTMAN.
Where shall i add this file in postman with body as raw/xml not form-data.
you can convert your pdf file to base64. In your method there should be a parameter which name is may be bulkBytes. Put the base 64 code inside this parameter and send your request. That will be successβ¦
How could I send large files? These are 50-100MB, so base64 encoded string would be too long.
Hello iβm interested to get a solution for this topic please.