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?