ContributionsMost RecentMost LikesSolutionsRe: Message Viewer Not Working The fix will be included in 5.7.0. Re: [Possible Bug] SoapUI 5 is setting default proxyselector to null The fix will be included in 5.7.0. Re: Schema Name Length from Export Definition eam Thank you! The fix will be included in 5.7.0. Re: SecretKey not supported due to JCEKS keystores not supported Hello, Mountazar Signing with secret keys is supported now in the maintenance build that is available here: https://support.smartbear.com/downloads/readyapi/maintenance/. Set Key Identifier Type to "Secret Key". Re: SecretKey not supported due to JCEKS keystores not supported Hi makix13 Your keystore file should have an extension ".jck". Re: How to listen on a JMS queue from SoapUI NG Pro? Hi, CollinRichman. JMS Request test step has send and receive destinations, so yes, you can configure sending a message to an input queue and receiving a response from an output queue. Also it's possible to leave either of them blank, in which case JMS Request step will only send a message without waiting for a response, or immediately start listening for a message without sending anything. Read more here: http://readyapi.smartbear.com/structure/steps/request/jms/add (section New Endpoint shows the dialog to configure JMS endpoint). Re: How to save TLS session IDs returned from z/os AT-TLS full handshake to reuse in another message? Hi Dsonntag_16, If your session cookies are returned in Set-Cookie header in the response, they can be transferred in subsequent requests within the same test case automatically. For that you have to set option "Maintain HTTP session" in TestCase Options (right-click on the test case in Navigator and click "Options"). Re: getAssertionStatus() in readyapi Hello niravk17 The JavaDocs you are referring to are for TestServer. In SoapUI NG you should use other classes. The script to log the status of all the assertions should look like this: import com.eviware.soapui.model.testsuite.TestStep import com.eviware.soapui.model.testsuite.Assertable import com.eviware.soapui.model.testsuite.TestAssertion for (TestStep testStep : testCase.testStepList) { if (testStep instanceof Assertable) { for (TestAssertion assertion : testStep.assertionList) { log.info testStep.name + " " + assertion.label + " " + assertion.status } } } Re: How to read specific message using correlation ID from the JMS Queue? Hi mukulgupta, You should use Message Selector field in request JMS Headers tab. It doesn't matter whether you send a message or not, the selector will be used to receive a message anyway. The format is the same as in JMS API, so for your Correlation ID you should use: JMSCorrelationID='CO:CO-XXXX:EnrichDetail:XXXX:' Re: Using a File datasource to read a file full of JSON (and then to use that JSON with a JSON datasourc Hi Anna The issue isn't fixed yet. I can suggest a simple workaround though - using Groovy script to replace {} with "null" values. You should add a Groovy test step right after Property Transfer with the following script (assuming POST Request is your request with corrupted null fields): import com.eviware.soapui.model.testsuite.TestStep String request = context.expand( '${POST Request#Request}' ) String correctedRequest = request.replace("{}", "null") TestStep testStep = testRunner.getTestCase().getTestStepByName("POST Request") testStep.setPropertyValue("Request", correctedRequest) Hope it helps.