是否可以使用 SOAP 或 XML_RPC 进行文档(字)传输?
大家好,
现在我想使用 SOAP 向服务器发送一个文件(c# 客户端)。但我不知道是否可以使用 SOAP 发送文件。有谁了解使用 SOAP 或任何其他文件传输(例如 XML)的知识吗? RPC,请将您的想法发送给我...
谢谢&问候, P.萨拉瓦南。
HI All,
Now i want to send a file(c# Client) to server using SOAP.but i dont know whether it is possible to send file by using SOAP.Does anybody having knowledge about file transfer using SOAP or any other for example XML-RPC, please send me your thoughts...
Thanks & Regards,
P.SARAVANAN.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是读取文件(例如
file_get_contents()
),以某种方式对其进行编码(例如base64_encode()
)并将其传递给 SOAP 或 XML-RPC作为参数调用。示例:当然,假设 SOAP 服务器具有名为
upload
的方法,该方法接受 base64_encoded 文件。The easiest way is to read the file (e.g.
file_get_contents()
), encode it in some way (e.g.base64_encode()
) and pass it to the SOAP or XML-RPC call as a parameter. Example:This, of course, assumes a SOAP server that has a method called
upload
that accepts base64_encoded files.