Questions tagged [soapui]

SoapUI is an open-source desktop application providing functional testing, load testing, security testing, API mocking, and API monitoring for both SOAP/WSDL and REST/WADL web services. Questions about the professional versions of these tools, such as SoapUI Pro, should be tagged with ready-api.

SoapUI is an open-source desktop application providing functional testing, load testing, security testing, API mocking, and API monitoring for both SOAP/WSDL and REST/WADL web services. Besides web-service protocols and standards, it also supports JMS, AMF, JDBC, and other technologies.

Notable features of SoapUI include (among many):

Information to Provide When Asking Questions

  • Which version of SoapUI are you using? It may be relevant because libraries and features and the API can change.
  • Are there any warnings or errors in the logs? Check the tabs along the bottom of the UI and include these in the question (as text, not an image) if they look relevant.
  • Provide a minimal reproducible example, particulary if your question concerns Groovy, JavaScript, XPath, XQuery, or JSONPath. A minimal reproducible example is not just a big code dump, but something that succinctly reproduces your problem.
  • As well as describing what you're having a problem with, it can also be helpful to say why you're doing it this way. Someone may know of a better way to do the same thing.

Without the above information it's hard for others to understand your problem and provide answers and you may risk having your question put on hold for being too broad or unclear.

Also remember to check out the tutorials and sample projects. You may be able to test some scenarios and ideas in these projects to better understand your problem.

Resources

Other Technologies in SoapUI

You need to understand a couple of other technologies to use SoapUI effectively, particularly when crafting assertions and automating your testing:

Note: SoapUI 5.5 uses an older version of the JayWay JSONPath library (version 0.9.1) compared to that used in SoapUI Pro (version 2.4 in SoapUI Pro version 2.3+), so you may get different behaviour if you're using both products.

Books

The SoapUI documentation is good enough to help you install the product and get a few projects up and running, so you may not need books that walk you through those procedures. So cookbooks and how-tos might be of more benefit. For example:

Related Tags

4614 questions
6
votes
4 answers

Soap ui SSl error ERROR:javax.net.ssl.SSLException: Received fatal alert: protocol_version

I am seeing below error when I hit a service over https. I've tried changing TLS version in Soap ui VM options file as below: -Dsoapui.https.protocols=TLSv1.0 -Dsoapui.https.protocols=TLSv1.2 and no luck. Please advise Thu Sep 07 11:32:47 BST…
nari447
  • 834
  • 2
  • 11
  • 25
6
votes
0 answers

Soap Webservice in Node JS

I am trying to build a soap webservice in node js using the npm module soap. I am using the soap.listen function that is mentioned to launch a soap server in node js. The wsdl file I am including looks like below:
XCEPTION
  • 1,671
  • 1
  • 18
  • 38
6
votes
0 answers

Missing/Invalid SOAP Envelope

I had constructed a soap over http protocol request message as following:
Brian Koey
  • 203
  • 4
  • 12
6
votes
2 answers

How to import Postman's collection into SoapUI?

Maybe anyone known how can I import postman collection into the SoapUI rest project. I just find reverse import way here: http://blog.getpostman.com/2016/04/27/importing-soapui-projects-into-postman/ May be I should import Postman collection in…
V. Rob
  • 316
  • 1
  • 4
  • 13
6
votes
1 answer

How to make SoapUI json request work with german umlauts?

We use SoapUI for many interfaces in our team project. We came across a problem with german special signs, called umlauts. When sending a POST request with Json body and a german umlaut, the we get…
6
votes
2 answers

SOAPUI - configure endpoints and resources for TestCase/TestSuite

Is there a way to configure the resource/method used by requests in tests on a test case, test suite or even project level in SOAPUI (free)? We have the following use case: The same REST service running on different servers(potentially different…
Julien Charon
  • 600
  • 1
  • 7
  • 21
6
votes
2 answers

File not uploading properly when use MTOM in SoapUI

I am using SoapUI 5.1.3 version. I am sending below request to the we service.
lakshman
  • 2,641
  • 6
  • 37
  • 63
6
votes
2 answers

SoapUI - REST Mocking with Query Parameter

I have several mocks with responses. But for some of them I want to create response based on additional query parameter. For example: I have mock for REST request such as "GET /order/item" and it works fine. But I tried to create mock for "GET…
Di Grey
  • 61
  • 1
  • 3
6
votes
2 answers

How to return dynamic response in SoapUI MockService

I am new to SoapUI and have just configured a very simple MockService. Is it possible to manipulate the response so that for a particular request the response's elements are dynamically built up? Scenario 1: Request:
Ross
  • 3,008
  • 1
  • 22
  • 27
6
votes
2 answers

SOAP-ERROR: Encoding: object has no 'FinalBookingDate' property

Before starting, I know, this errors means that I should have defined the property FinalBookingDate, but just keep reading and you will understand my point of view. The url is:…
Lucas Serafim
  • 3,702
  • 6
  • 30
  • 36
6
votes
1 answer

Wiremock URL matching logic

I am trying to compare the abilities of Soap UI and Wiremock using the following requirement (which is realistic enough for most cases in my projects). Goal is to create a mock for a currency price service. The requirements: Accessible at…
dbalakirev
  • 1,918
  • 3
  • 20
  • 31
6
votes
2 answers

How to create a .NET client for a wso2 Secure Token Service

I need to create a .NET client for a wso2 Secure Token Service. Normally I would create a simple console or WinForm project adding a Service Reference to it. The exposed WSDL would be turned in a set of classes that I can use to query the service…
sblandin
  • 904
  • 4
  • 11
  • 25
6
votes
2 answers

How to populate a query parameter list in SoapUI?

I need to transfer some values from previous test steps into a query parameter that is a list on the next test step. I am using SoapUI Pro 5. Example: I call addCustomer twice and get two IDs for the new customers, say ID=111 and ID=222. I then…
GeekChick
  • 118
  • 1
  • 2
  • 10
6
votes
2 answers

SoapUI not working with fiddler for REST service testing

I created a REST project in the SoapUI to test the googlemapsapi rest service (HTTPS). I configured the SoapUI to use the proxy settings to fiddler (localhost:8888). In fiddler, enabled the "Decrypt Https Traffic" option under Fiddler Tools ->…
user555400
  • 61
  • 1
  • 3
6
votes
3 answers

Consuming a web service in java and SOAPUI

I am consuming a webservice in java. This service is using UserNameToken, Timestamp and Signature for message level security. I have been given SoapUI project file(xml) to try and get the data from the service. Everything works fine in SoapUI. Now…
yogsma
  • 10,142
  • 31
  • 97
  • 154