ContributionsMost RecentMost LikesSolutionsRe: Get TimeTaken from a REST POST request Thanks....I figured that, but I'm hoping that they are due for a release soon as we typically don't like to take maintenance release and RC releases for testing. But good to know. Re: Get TimeTaken from a REST POST request I heard back from support. the issues is no longer seen in 1.9.0 maintenance builds. If you see this error you can download that. I asked when the 1.9.0 build will be available to the public but have not heard back yet. Hope this helps everyone. Re: Get TimeTaken from a REST POST request Just wanted to follow up since it's been about a week. I opened Case #0023601. Someone replied back that they would reproduce and get back to me, but I'm still waiting to hear back. Re: Get TimeTaken from a REST POST request Redford.....Nice catch!! I removed (deleted, disabling doesn't work) the assertion on the REST call and my script worked. I'll send this over to support and come back when I hear back from them. Get TimeTaken from a REST POST request I'm trying to write the response times for SOAP and REST calls from the my test cases to a database. I have it working with one exception. The REST POST requests are giving me the following: ERROR:java.lang.NullPointerException: Cannot invoke method getTimeTaken() on null object I'm using the TestListener.AfterRun event. Here is the relevant code: for (myResult in testRunner.getResults()) { if((myResult.testStep.config.type == "request") || (myResult.testStep.config.type == "restrequest")){ //if this is a request we want to get the amount of time it took RequestDurationList.add(myResult.response.timeTaken) //if the repsonse for the request takes longer than 2 seconds (2000 milliseconds) //Mark it as an SLA Failure if(myResult.response.timeTaken > 2000){ SLAFailureValue = "True" } } } My failure is on the BOLD and Italics line. Why is this working for GET requests buy not POSTs? (ALSO as a note I use this exact code on the SOAP side and I haven't seen any issues there) Re: Run Test Case as test step failure Pull the nightly build here: https://support.smartbear.com/downloads/readyapi/nightly-builds Re: Run Test Case as test step failure We also downloaded the latest snapshot build and that seems to have fixed the issue. Re: Run Test Case as test step failure Please let me know if this video is enough or if you need more information. Thanks, Adam Run Test Case as test step failure I have a REST test case that makes an authentication call. I use it to authenticate for all other REST test cases in the project. It was working in 1.4.1 and it worked fine. When we upgraded to 1.5 it started to fail. When we use the "Run Test Case as Test Step" the authenitcation test case is getting messed up. It longer has the REST icon next to it and we can not call it or get any data to the calling test case. Any one less seeing this kind-of behavior? We have tried rebuilding the authenitcation test step and have tried recreating the test cases all to no avail. Did something change with the Run Test Case as Test Step? Solved