ContributionsMost RecentMost LikesSolutionsRe: TestEngine API to get the transaction details returns 404 - Intermittent Issue I am from development team itself. http://localhost:8080/api/v1/testjobs/<testJobId>/transactions/<transactionId>is TestEngine URL, not developed by us (we have installed the TestEngine within Linux and accessing it as localhost) TestEngine API to get the transaction details returns 404 - Intermittent Issue We are running the Ready API tests in TestEngine and generating the report in JSON format. The JSON report doesn't returns the test's request and response. So we are using the CURL to get the details of failed tests's request and response using below TestEngine API. We use the details of failed transaction to debug a test and fix accordingly. As mentioned in the TestEngine documnetation (https://support.smartbear.com/testengine/docs/tutorial/get-result.html) we are using the TestEngine API to get the transaction details,below curl is been executed as a part of automation bash script to get the transaction details curl -u username:password http://localhost:8080/api/v1/testjobs/<testJobId>/transactions/<transactionId> Sometimes the above TestEngine API call returns 404 response as below (this is intermittent issue). But after sometime, the same above API works fine and returns the transaction details {"code":404,"message":"No transaction log found for testjobId: <testJobId> and transactionId: <transactionId>"} Help us in fixing this intermittent issue Re: Is it possible to generate two types (PDF and JSON) of reports in the same run with test engine? It is not possible to generate the two reports with same execution, so we are generating the report in json format along with execution and then generating the report in pdfformat using the same testjob Re: How to use the External JAVA libraries with Test Engine hosted on Linux We are using the above script as a part of groovy script to transfer the file from local machine to remote. This works fine with ReadyApi but fails with Test engine How to use the External JAVA libraries with Test Engine hosted on Linux We are using the Test Engine to run our Ready API test suites and this server is a Linux machine. We are referring the java library (com.jcraft.jsch.*) within groovy script and this is used for file upload. this works fine while running the test in local with the Ready API application but while the same test with Test Engine, this suites fails as Test Engine is not able to find the the reference of java library(refere below error). Can you help us with below questions * Is there a default location which the Test Engine looks for external library reference? * Is there a way to have our own custom path for external reference and let the Test Engine refer this path? We looked into the official documentation, it has the details of path for Ready API but not for Test Engine TestEngine report generated in JSON format does not have the details of request and response Hi, The report generated by TestEngine in JSON format doesn't have the details of request/response. However the report generated in PDF format has the request/response details. is there any additional parameters need to be passed for JSON format so that it can have the request/response details? Is it possible to generate two types (PDF and JSON) of reports in the same run with test engine? Hi, I want to generate two types of reports in the same run in testengine with command line. Is that possible? E.g -testengine-c .\testengine.confrun project tags=pet,user output=C:\Work\Reports format pdf,json environment=dev C:\Work\ready-api-project.xml