ContributionsMost RecentMost LikesSolutionsRe: ReadyAPI as a client of server sent events Hi all, I second richie's thought. I am stuck at SSE with ReadyAPI. It has been 4 years and still we do not have support on this. I wrote to them and they sent me this same post that I had read before, reaching out to them. Could somebody who has walked the path share the groovy script for others? Thanks! Ruhi SolvedRe: HTTP/1.1 404 Not Found error for a GET request in ReadyAPI but same works in Postman I solved this myself. HTTP/1.1 404 Not Found error for a GET request in ReadyAPI but same works in Postman I am getting "HTTP/1.1 404 Not Found' error for a GET request in ReadyAPI but same works in Postman. I can also hit the exact same endpoint using Python script Has anybody faced similar issue? SolvedRe: 2 TestSuites with diff auth/jwt clientID/secret. How do I configure it in Event handler? Hi Todd, Thanks for your reply. I think it is a specific req. we have our own .jar files that we use. I tried to add the same auth code in TestSuite Setup Script but it doesnt work. I get 'Failed JWT' error. 2 TestSuites with diff auth/jwt clientID/secret. How do I configure it in Event handler? Hi, I have 2 TestSuites and each uses diff auth/jwt (clientID/secret). How do I configure it in Event handler - RequestFilter.filterRequest to use depending on TestSuite name? I tried this but it does not work - def get_testsuitename = context.testCase.testSuite.name log.info(get_testsuitename) if get_testsuitename == "TestSuite1"{ def CLIENT_ID = "aaa"; def SECRET = "bbb"; } else if get_testsuitename == "TestSuite2"{ def CLIENT_ID = "cc"; def SECRET = "ddd"; } Then I tried using TestSuiteRunListener.beforeRun but no luck 😞 Any help would be appreciated! Thanks JWT error - Failed to verify JWT due to invalid exp. exp (expiration) must be after iat (issued at) Hi, All of sudden I see an error when I run my Test Suite. My credentials are correct and I get success when I test connection with client ID and secret. Has anybody seen this kind of error before? Any help/guidance is much appreciated. Thanks! Reorganizing parameters is not working Even though I have organized request parameters correctly using '^' I still see this - ?status=archive&page=1 instead of this- ?page=1&status=archive I am new to ReadyAPI. Has anybody faced similar problem? If so, what's the resolution? TIA! Solved