Forum Discussion

JKA_QA's avatar
JKA_QA
New Contributor
9 years ago

sending sequential requests to a rest service using SOAP UI

We have a rest service to upload images, the images are sent in a sequential order. Below is an example of what I am attempting to send:

 

{
"parameters": [{
"attachmentType": "UserUpload",
"fileName": "odometer.jpg",
"userName": "X6TW6"
}, {
"attachmentType": "UserUpload",
"fileName": "screen_shot_LT_heatmap.jpg",
"userName": "RNLVX"
}]
}

 

The Rest Service is only picking up the first image, so I will need to create multiple requests, any ideas on how to sequentially submit requests ?

1 Reply

  • JKA_QA's avatar
    JKA_QA
    New Contributor

    I have tried using load test using soap UI, but I have to send a different file name everytime so ran into a blocker there.