SOAP响应中以xml编码的文件

时间:2018-10-18 14:40:07

标签: android xml soap gzip

我是Android生态系统的新手,并且是SOAP概念的新手。我必须向Android SOAP形式的Web服务发出一些请求,以检索一些远程文件。响应的gzip为Content-Encoding。这是SoapUI中显示的完整响应:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:bus="http://path/to/file.wsdl">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <bus:getFilesResponse>
         <bus-result>
            <Code>0</Code>
            <Message/>
         </bus-result>
         <fileDataList>
            <Data>dGhpcyBpcyBhIHRlc3QgZmlsZQo=</Data>
            <FileName>mytext.txt</FileName>
         </fileDataList>
      </bus:getFilesResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我不知道该使用字母数字字符串(数据标签)。是我必须转换为gzip的输入流还是其他?我只想知道这一点,以避免永远不会停止在Google上进行搜索。谢谢。

更新:已解决,它是Base64。

0 个答案:

没有答案