在 nuSoap 中发送图像或其他数据
如何使用网络服务将图像或文件发送到服务器?
How to send a image or a file using the web service to the server ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用网络服务将图像或文件发送到服务器?
How to send a image or a file using the web service to the server ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
以下是如何使用 NuSOAP 发送文件的一个很好的示例:
http://web.imkrisna.com/june/news/simple-file-transfer-using-nusoap/
Here is a good example of how to send a file using NuSOAP:
http://web.imkrisna.com/june/news/simple-file-transfer-using-nusoap/
Web 服务的文档应指定必要的格式,这可能涉及对图像数据进行 Base64 编码。您可以执行 Web 服务所需的任何编码,然后以与处理文本相同的方式将其传递给 nuSoap。
The web service's documentation should specify the necessary format, which will probably involve base64 encoding the image data. You would do whatever encoding the web service requires and then pass it to nuSoap in the same way you already do for text.