Hi All,
I am calling an application’s web service in my test case as below.:
def getConfigurationResponse = WS.sendRequest(findTestObject(‘UIM/InventoryWSHTTPSoapBinding/GetConfiguration/getConfigurationRequest’,[‘entityId’:SHM_CVR_RFS_ServiceID]))
def responseXML = getConfigurationResponse.responseBodyContent
But when running this test case in Linux KSE, I am getting below error for null object. Works fine in Windows KSE
2022-10-21 16:50:34.021 DEBUG c.k.k.core.testobject.ObjectRepository - Finding Test Object ‘Object Repository/UIM/InventoryWSHTTPSoapBinding/GetConfiguration/getConfigurationRequest’
2022-10-21 16:50:34.021 WARN c.k.k.core.testobject.ObjectRepository - Test object with id ‘Object Repository/UIM/InventoryWSHTTPSoapBinding/GetConfiguration/getConfigurationRequest’ does not exist
2022-10-21 16:50:34.022 DEBUG c.k.k.c.w.helper.WebServiceCommonHelper - Checking request object
2022-10-21 16:50:34.026 ERROR c.k.k.core.keyword.internal.KeywordMain - Unable to send request (Root cause: java.lang.IllegalArgumentException: Request object is null
at com.kms.katalon.core.webservice.helper.WebServiceCommonHelper.checkRequestObject(WebServiceCommonHelper.java:103)
Below is the definition of this web service
Any input will be appreciated!