i am working on a jmeter script as below, i am reading from a old database and passing it to this below script
jmeter script in the Http Request Body Data
"ID": ${ID}
"ProductName": "${ProductName}"
"Name" : "${Name}"
"NoOfdays": ${Numberofdays}
like this up to 300 more parameters
Request Record # 1
"ID": 1 "ProductName": "Pixel" "Name" : "abcd" "NoOfdays": 10 ... up to 300 parameters
Record # 2
"ID": 1 "ProductName": "null" "Name" : "null" "NoOfdays": 0 ... up to 300 parameters
My ESB server throws an error when i send "null" it expects a null with out quotes, how do i replace this values in bulk than using by parameter wise which is a time consuming.