My requirement is to call a web service from Android and display the result in a nice manner.
But inside the web service's WSDL I don't find a SOAPAction
. The WSDL looks like this:
<operation name="getStudentList">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
Is there any way to find the SOAPAction
in some other places inside the WSDL? Can I call the web service and get a result without the SOAPAction
?