0
votes

I am testing a SOAP web service through SoapUI tool. Web Service is deployed on a server and SaopUI project is hitting that web service. My concern is while testing one request if I do not provide a mandatory input parameter even then I am getting successful response. No error at all. On the other hand, if we call the same through web application then error comes.

WSDL request:

<wsdl:message name="update_request">
     <wsdl:part name="name" type="xsd:boolean"></wsdl:part>
     <wsdl:part name="flag" type="xsd:boolean"></wsdl:part> 
</wsdl:message>

Is it possible to call a request with less parameters through SoapUI? Why there is a difference between these two calling methods?

1

1 Answers

0
votes

Using the XML view of a Test Request test step in soapUI you can freely edit what shall be sent.

Example:

<soap...>
  <MyUpdateRequest>
    <name>true</name>
  </MyUpdateRequest>
</soap...>