私はwebservicesを初めて使用しています。このxmlを解析し、レスポンス(String val)をローカル変数に格納します。これどうやってするの? plzこれのためのコードスニペットを投稿してください。 XmlPullParser、DOMパーサとSAXParser:xmlからの応答を解析する
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?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>
<RegisterUserResponse xmlns="http://tempuri.org/">
<RegisterUserResult>string</RegisterUserResult>
</RegisterUserResponse>
</soap:Body>
</soap:Envelope>