我对 SOAP 和 Android 非常陌生。有人可以帮我建立一个 SOAP 请求来发送以下请求。
SOAPAction: http://api.example.com/application
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://api.example.com/registration/v3.1">
<soapenv:Header>
<ns0:appCredentials ns0:name="your-account-name" ns0:password="mypassword" ns0:targetAccountName="vvz"
xmlns:ns0="http://services.example.com/application/types/1.0"/>
</soapenv:Header>
<soapenv:Body>
<ns:identityPoint_identify_request>
<ns:identification type="email-password">
<ns:email>
<ns:address>action@vvz.com</ns:address>
</ns:email>
<ns:password>actionbar123</ns:password>
</ns:identification></ns:identityPoint_identify_request>
</soapenv:Body>
</soapenv:Envelope>
谢谢你