10

Can anyone help me in importing the SoapUI project in postman?

I have imported wsdls in SoapUI. So I need a way to get the wsdls from SoapUi to postman or if there is a way to use wsdl files in postman directly it will help too.

Julien Kronegg
  • 4,968
  • 1
  • 47
  • 60
RV_Dev
  • 435
  • 1
  • 7
  • 21

5 Answers5

10

Those two tools do not have a common format they can export to. The only common format between them is Swagger, which either of them can import. However, neither of them is able to export into this format.

Further, Postman is made with REST services in mind. As such, it cannot do anything with a WSDL. If you definitely must use Postman to test SOAP services, you will have to map all your calls as a POST call, unfortunately, all manually.

Updates:

I did little more digging. It seems that SoapUI is able to import a Postman collection.

And further, SoapUI is able to export a Swagger description: Project > Export Swagger.

Personally I have not tried either of these options.

SiKing
  • 10,003
  • 10
  • 39
  • 90
3

Osiris is correct. Now we can at least import interfaces from SoapUI:

  1. open SoapUI
  2. select interface you want to export
  3. in its context menu press "Export Definition" -> Save (it will be saved as wsdl and xsd files)
  4. open Postman -> Import -> select saved wsdl and xsd files
Kyo
  • 61
  • 6
2

From the previous comment, you can export and import collections and projects between Postman and SoapUI but only REST projects.

Exporting to Swagger in SoapUI will result in an error for a SOAP projects.

"Importing SoapUI projects into Postman", referenced in the previous post, is referring to a REST Project not a SOAP project.

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
1

After so much frustration, I installed a different tool called "SoapUI" by the SmartBear. IT worked very easily. I just gave it my wsdl url and it loaded all the end points.

max
  • 9,708
  • 15
  • 89
  • 144
1

The latest version of Postman (8.4.0) supports importing WSDL files as Postman Collections.

Osiris
  • 4,195
  • 2
  • 22
  • 52