marketguardOccasional ContributorJoined 9 years ago5 Posts1 LikeLikes received1 SolutionView All Badges
ContributionsMost RecentMost LikesSolutionsIntegrating with Ready-API! SoapUI Pro NG - Problem with Threadpool Hi, I have integrated with SoapUI Pro NG. Now something weird happens when I execute a TestCase via the TestCase Runner. 1. The first execution is done perfectly 2. In Case I loop over the same init and load mechanism and try to execute it again the following message is shown as a soap message: -- SubmitException: com.eviware.soapui.model.iface.Request$SubmitException: java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.FutureTask@d8c9c7b rejected from java.util.concurrent.ThreadPoolExecutor@7a45f415[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 3] Has anyone experienced a problem like that? What is the way to properly shut down soapui pro ng? Thanks in advance! Re: PropertyTransfersTestStep.PropertyTransferResult Java API - How to Get transferred Value? I ended up with this: WsdlProjectPro project = new WsdlProjectPro("PATH_TO_XML"); for (TestProperty projectProperty : project.getPropertyList()){ System.out.println("Key: " +projectProperty.getName() + " Value: "+project.getPropertyValue(projectProperty.getName())); } Works also fine on, TestSuite, TestCase and TestStep Level. Re: SoapUI NG Pro - Empty Expected Result in XPath Match results in passed Assertion Fixed with 1.8 PropertyTransfersTestStep.PropertyTransferResult Java API - How to Get transferred Value? <groupId>com.smartbear</groupId> <artifactId>ready-api-runners</artifactId> <version>1.7.0</version> Hi , I'm trying to get the transferred Value via the Java API, in a former Version of SoapUI Pro NG it was possible to use: PropertyTransfersTestStep.PropertyTransferResult.class.getDeclaredField("values") however in newer versions of the api this field is null, altough the proper transfer has been done successfully. Is there a possibilty to get the transferred value in another way? SolvedSoapUI NG Pro - Empty Expected Result in XPath Match results in passed Assertion Pre-Condition: - Valid XML Response Steps: 1. Add a "Xpath Match Assertion" 2. Enter a valid Xpath Expression which fits the given reply (click on "select from current test" would return acutal value in Expected Result) 3. Delete any String which is entered in "Expected Result" 4. Run test Expected Result: - Assertion Failed, because given Expression is not empty Acutal Result: - Assertion Passed Tested with 1.5.0 and 1.6.0 Solved