Soap UI Updates
Transfer property(SOAPUI)
Property Transfer TestSteps are used to transfer properties between TestSteps(Requests) and their containing TestCase, TestSuite and Project. They are extremely useful in a number of situations, especially when properties containing XML are involved. This tutorial involves, Extracting a value from an XML message Write a value into an XML message Transfer complex XML content between properties ** Update – Complete SoapUi Tutorials now available here Follow the steps below to transfer properties between...
read moreHow to choose between SOAP Web Services and RESTful services?
Choose SOAP: If you require asynchronous processing In your service operations are statefull If you need formal contract/Interfaces Choose RESTful Services: If you have limited bandwidth If your clients require caching. If your operations are...
read moreWeb Services
‘Web services’ is the name given to a technology for providing loosely coupled and interoperable communications between computer systems over a network. Applications of this technology include enterprise application integration, enabling communications between distributed systems and interoperability with partners or other businesses. The major benefits of using web services are platform independence, flexibility and ease of maintenance, which are the result of the open standards employed and the simplified underlying...
read moreRunning functional tests from the command-line
Running functional tests from the command-line is straightforward and simple using the included testrunner.bat/.sh script, which takes a number of arguments to control which tests to run, output, etc: e : The endpoint to use when invoking test-requests, overrides the endpoint set in the project file h : The host:port to use when invoking test-requests, overrides only the host part of the endpoint set in the project file s : The TestSuite to run, used to narrow down the tests to run c : The TestCase to run, used to narrow...
read moreWhat is the difference between HTTP and REST and SOAP in web services?
SOAP uses WSDL for communication between consumer and provider, whereas REST just uses XML or JSON to send and receive data WSDL Defines contract between client and service and is static by its nature. In case of REST contract is somewhat complicated and is defined by HTTP, URI, Media Formats and Application Specific Coordination Protocol. It’s highly dynamic unlike WSDL. SOAP doesn’t return human readable result, while REST result is readable with is just plain XML or JSON This is not true. Plain...
read moreEstablish JDBC connection in SOAPUI PRO
To establish JDBC connection all you need is 3 simple things, OJDBC 14 Jar File Database Connection String Database details Now I am gonna tell you how to establish JDBC connection in PRO using Oracle XE (eXpress Edition). Before you start this, you have to download OJDBC 14 Jar file from oracle site and place it in the path specified. ** Update – Complete SoapUi Tutorials now available here SmartBear\soapUI-Pro-4.5.1\bin\ext Now you can proceed with the below steps to work with the connection. Step 1: Open ur...
read more