0

我想通过肥皂网络服务发送图像数据。我的肥皂信息如下所述。

<?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>
<TestFile xmlns="http://tempuri.org/">
  <userID>int</userID>
  <FileTitle>string</FileTitle>
  <FileName>string</FileName>
  <BufferFile>base64Binary</BufferFile>
  <languageID>int</languageID>
</TestFile>
</soap:Body>
</soap:Envelope>

我想用base64编码在bufferFile上添加图像。

给我任何可以同时发送maltipart数据或参数的建议或示例代码。

谢谢。

4

1 回答 1

1

尝试使用SudzC,它将为 iOS 生成客户端代码,与您的 WebService 进行通信。在您的情况下,它将生成一个方法,其中包含您需要传递的参数。您只需要一个 WSDL。

于 2012-07-09T14:30:51.940 回答