Forum Discussion

MattiH's avatar
MattiH
Staff
8 years ago

SoapUI 5.3 released!

SoapUI 5.3 is released today!

 

Additions include SwaggerHub improvements, OAuth improvements (most notably OAuth 1 support), Postman importer plugin and various bug fixes as well as valuable contributions

from helpful developers.

 

Read more about it here: https://www.soapui.org/news/soapui-5-3-is-here!.html

 

Best Regards,

Matti Hjelm

14 Replies

    • fazlook's avatar
      fazlook
      Frequent Contributor

      that's what I am using now :) new to SoapUI though.

  • nmrao's avatar
    nmrao
    Champion Level 3
    Kudos & Congratulations to SmartBear team for their efforts and continued support for the Open Source edition.

    Hope many in the community would embrace this release.
    • fazlook's avatar
      fazlook
      Frequent Contributor

      Is there a way to regenerate the TestSuite and not override the existed one (Add to it the new ones only)? say I added few more tests and wanted to add them up to my existing TestSuite.

      • nmrao's avatar
        nmrao
        Champion Level 3
        You should open a new topic regarding your issue with details, fazlook. And request you not to cross post.
  • Mariwan's avatar
    Mariwan
    Occasional Contributor

    Congratulations & Good news.

     

    Thanks

    Mariwan

    • mindgnat's avatar
      mindgnat
      Occasional Contributor

      Yeah a POM that works would be great too.

      • AndyO's avatar
        AndyO
        Occasional Contributor

        Here is the POM.xml that works for me:

        <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        	<modelVersion>4.0.0</modelVersion>
        	<groupId>AVL.System</groupId>
        	<artifactId>API-Tests</artifactId>
        	<packaging>jar</packaging>
        	<version>1.0-SNAPSHOT</version>
        	<name>API Tests</name>
        	<url>http://maven.apache.org</url>
        
        	<pluginRepositories>
        		<pluginRepository>
        			<id>SmartBearPluginRepository</id>
        			<url>http://www.soapui.org/repository/maven2/</url>
        		</pluginRepository>
        	</pluginRepositories>
        
        <build>
        <plugins>
        
        <plugin>
        <groupId>com.smartbear.soapui</groupId>
        <artifactId>soapui-maven-plugin</artifactId>
        <version>5.3.0</version>
        <configuration>
        </configuration>
        
        <dependencies>
            
            <dependency>
            <groupId>com.jgoodies</groupId>
            <artifactId>forms</artifactId>
            <version>1.0.7</version>
            </dependency>
            
        </dependencies>
        
        
        				<executions>
        					<execution>
        						<id>SoapUI Tests</id>
        						<phase>test</phase>
        						<goals>
        							<goal>test</goal>
        						</goals>
        						<configuration>
        							<globalProperties>
        								<value>ENV=TEST</value>
        							</globalProperties>
        							<projectFile>src/test/SoapUI/AVL-APIs-v2.xml</projectFile>
                                                             <outputFolder>${basedir}/target/SoapUI-Report</outputFolder>
        							<junitReport>true</junitReport>
        							<exportAll>true</exportAll>
        							<printReport>true</printReport>
        							<environment>DEV</environment>
        							<testFailIgnore>false</testFailIgnore>
        						</configuration>
        					</execution>
        				</executions>
        </plugin>
        
        </plugins>
        </build>
        </project>
  • MarioP's avatar
    MarioP
    Occasional Contributor

    Would be nice if you will fix suite cloning issue. It is there since few versions already (I've seen it in 5.1.2 already). The issue is when you clone suite for the first time everything is good, but when you next try to clone some other suite it clones only the name and content is always taken from the first suite cloned since app was opened. The only workaround I've found is to close the app and open it again - annoying.

     

  • mgsrinivasan's avatar
    mgsrinivasan
    Occasional Visitor

    For Tutorials:
    error "java.net.BindException: Address already in use"
    when trying to run "Account creation mock"

    There are two ports used:

                                           defaults:       set to:
    HTTP communication:     8080             1235
    HTTPS communication:    8443            1234


    In Linux, run:
    ---------------------
    cd /home/mohans/SmartBear/SoapUI-5.3.0/bin

    bin $ ./mockservicerunner.sh -p1235 -m "Account creation mock" "/home/mohans/SoapUI-Tutorials/Sample-REST-Project-soapui-project.xml"

    make sure in "View Form":
    Endpoint is "http://localhost-1235"

    See:
    https://www.soapui.org/articles/mock-services.html