How to use Soap UI without wsdl?

ChanGan picture ChanGan · Mar 22, 2011 · Viewed 57k times · Source

Hi I have installed Soap UI...Like C, Java we will create some sample program. likewise i wanted to use some sample request and response..how to create a request and response without wsdl?

Answer

Miklós Molnár picture Miklós Molnár · Mar 4, 2015
  • Create new SOAP Project using File > New SOAP Project
  • Set the name as required
  • Leave the initial WSDL field blank
  • On the Project Navigator Window to the left, mouse over the project folder and select New Rest Service from URI using the context menu
  • Enter the enpoint you would like to send a SOAP message to, i.e. http://www.webservicex.net/WS/WSDetails.aspx?CATID=2&WSID=10
  • Choose POST as the HTTP method
  • Add your xml SOAP payload to the window in the bottom left
  • Choose media type: text/xml from the combobox
  • Click to green arrow to POST the message to the specified endpoint
  • And voilà - you should see the SOAP response on right-hand side window :)