i have used RESTFUL and json and successfullt bind the http body in test script
now i have SOAP API and xml (not http body but it is called Request message in Katalon), what is the syntax to use to replace the setBodyContent and HttpTextBodyContent ?
String xmldata= exceldata.toString()
println(xmldata)
//call the object and post the above data as SOAP request message
def item= ((findTestObject(‘Object Repository/Web Service Request/soaptest/genericProductUpdate’)) as RequestObject)
item.setBodyContent(new HttpTextBodyContent(xmldata))
this is the object repo for SOAP
genericProductUpdate.zip (754 Bytes)