I am stuck at very critical junction of my scripting in Jmeter, I have a requirement to upload a file on Azure storage and a Microservice which analyze the blob data to process further but it looks for certain size, example 8081920 bytes. I am successfully able to upload the the file of same size on Azure storage but the service returns size Mismatch.
If I upload the same file using Postman, service is able to process the image successfully. Below is the Postman request Header
x-ms-blob-type: BlockBlob Content-Type: image/raw User-Agent: PostmanRuntime/7.26.10 Accept: / Postman-Token: b9384ac9-7fbe-4ab8-834b-aef0d8114588 Host: xxxxxxx.blob.xxxxxx.windows.net Accept-Encoding: gzip, deflate, br Connection: keep-alive Content-Length: 8081920
Jmeter Request Header: Connection: keep-alive Content-Type: image/raw Accept-Encoding: gzip, deflate, br Accept: / x-ms-blob-type: BlockBlob Content-Length: 8082155 Host: xxxxxxx.blob.xxxxxx.windows.net User-Agent: PostmanRuntime/7.26.10
Any idea how to resolve this from where jmeter sending additional 235 Bytes but Postman doesn't.
Thanks, Akshat