ContributionsMost RecentMost LikesSolutionsRe: error when importing a postman collection I've encountered this today and on my end, the issue was fixed by selecting "V1" even if it says "deprecated" at Postman's export page. It seems Postman's v2.1 cannot be processed properly into SoapUI as well. For more details on the steps for fix, you can refer to this page:https://www.soapui.org/docs/postman-collections.html Re: Error import postman collection I think this was posted by the same person here and was already answered:https://community.smartbear.com/t5/SoapUI-Pro/error-when-importing-a-postman-collection/m-p/159041 ...leaving this comment here for others who might encounter the issue. Re: Make Data Source available for the whole project, instead of a test case. It's been awhile. Any update from SoapUI Product Owner or BAs if there is a chance that we'll see this become a reality? :-) Re: Property transfer step failed when run through Maven Hi, I am a bit confused with the details you provided. It's posted in the Open Source forums but the declaration on the POM file is showing SoapUI Pro 4.6. If it's really open source and you just copied that XML and modified it for your variables, youmight be missing some plugin declarations to make it work since the versions there seem to be a bit old. You might want to consider doing a backup and upgrading to 5.3.0. Anyway, it's free. They have already made a lot of fixes on that version to make life easier. If you still want to proceed with that version, you might need the following: the plugin for Maven 2. Maven is now on version 3 though. I think they have already stopped support for 2...just a wild guess why the transfer is failing on your end only when Maven is run...so you'll be needingthe items listed below. redfish4ktc2's plugin. He did some great workfor some issues. the compiler plugin...but you already have Java 1.8 so, just check the details thereif it's still necessary since you have the latest one. We are working on an older version on our end so we are using this one. Goodluck! Re: how to share session id to other request Hi, I suppose session ID = token. Create a property for the session ID under the Project level. Use groovy test step to process it if your session ID comes as part of a response data and store it to the Project Property. Ex. trim the part you need. You may refer to the code sample I have here. In the Headers tab of the test case,click the + icon for "Add a custom HTTP header to this session". Specify the name of your session ID variable. For the value on the right side, instead of writing or hardcoding the whole token, call the project property. Ex. Header: myToken Value: ${#Project#cleanedToken} 6. Sessions usually expire after a period of time, I would suggest you select the test case on the navigator tree on the left side of SoapUI, right-click and select Options. When Test Case options pops-up make sure Basic tab is selected and check Session: Maintain HTTP session to avoid timeout. Regards, Debz Re: How to update common property value for all available environment once execution is performed ? Hi, At the end of your test on the 1st environment, change the active environment to Env2 through Groovy step: testRunner.testCase.testSuite.project.setActiveEnvironment("Env2") Then use the set property value. In my case, I'm transferring here the value of my token from the 1st environment: <-- start of Token cleanup code, since I only need the text in the middle --> def rawToken = testRunner.testCase.getPropertyValue( "rawToken" ) def cleanedToken = rawToken.substring(5,120) log.info(cleanedToken) <-- end of my token cleanup --> testRunner.testCase.testSuite.project.setPropertyValue( "Token", cleanedToken ) Since in your case, these are login details and no more processing involved, maybe you can go straight to the last line. Just replace the variable I used with those you have for the logins. Regards, Debz Re: Is there a way to define a DB role when creating a JDBC connection? I got this system generated mail yesterday from the SmartBear community, telling me that if someone already found a solution, I ought to tag it:smileyhappy: The issue just got resolved at workthe other day. Re: How to connect Phoenix DB with SOAP UI tool nmrao, apologies. I overlooked that part. Thanks for the heads up. Yeah, JDBC is not directly available on SoapUI Open Source, only on Ready!API. I can't delete my previous post though. There seems to be no option on the top-right side of the post? Re: How to connect Phoenix DB with SOAP UI tool Hi, try adding one via File > Preferences > JDBC Driver > + You will be asked to provide a name for it, then add the connection string (username, pasword, hostname, port, sid, etc) which should be available here. It seems that the jar should be "packaged" along with the installer. They have a repobut I can't confirm at the moment because that's 266 MB for the bin folder alone. Maybe other guys who have worked with Phoenix can share a direct download for the version you need. Re: Is there a way to define a DB role when creating a JDBC connection? Hi, sorry I forgot to update this. In previous versions, you get a notification that a SYSDBA or SYSOPER role is required. On Ready!API 2.0, the error message you'll see is the one in the image above. I've asked my coworkers here who worked with JDBC steps andit seems that the role is auto-detect, so there is no more need to specify one in the connection string. The issue got fixed after I asked a guy in charge of the DBs to have an account with the said roles set :-)