を送信し、送信するSOAPリクエストは、上記のコードで は、私はいくつかのURLにSOAPリクエストを送信したい私のアプリケーションではSOAPリクエスト
POST /TelLink/WrenchENTService.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://WrenchGlobal/GetToDoList"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetToDoList xmlns="http://WrenchGlobal/">
<viPeriod>int</viPeriod>
<vsUserID>string</vsUserID>
</GetToDoList>
</soap:Body>
</soap:Envelope>
以下のように、私は「INT」を置き換えるために持っているだろうです"文字列"を実際の値で置き換え、サーバー上でGetToDoListを呼び出します。私の問題は、私はこのリクエストをサーバに送る方法を知らないのですか? (httppostを使用して)誰も私を助けることができますか?
[Android、HTTP POST(SOAP)経由でXMLを送信する](http://stackoverflow.com/questions/2559948/android-sending-xml-via-http-post-soap) – balexandre