Как передать параметры в веб-сервис, используя этот запрос:
POST /webservice/User.asmx HTTP / 1.1 Content-Type: text / xml;charset = utf-8 Content-Length: length SOAPAction: "http://sample.com/UpdateUserBatch"
<UpdateUserBatch xmlns="http://sample.com/">
<auth>
<Username>string</Username>
<Password>string</Password>
</auth>
<request>
<CreateIfNotExist>boolean</CreateIfNotExist>
<UpdateIfExists>boolean</UpdateIfExists>
<Users>
<UserProfile>
<UserID>string</UserID>
<BusinessID>string</BusinessID>
<ExternalID>string</ExternalID>
<Username>string</Username>
<Password>string</Password>
<UpdateDate>dateTime</UpdateDate>
</UserProfile>
<UserProfile>
<UserID>string</UserID>
<BusinessID>string</BusinessID>
<ExternalID>string</ExternalID>
<Username>string</Username>
<Password>string</Password>
<UpdateDate>dateTime</UpdateDate>
</UserProfile>
</Users>
</request>
</UpdateUserBatch>
Я хочу импортировать данные с помощью этого веб-сервиса.