是否可以使用 SOAP 或 XML_RPC 进行文档(字)传输?

发布于 2024-10-18 23:44:04 字数 152 浏览 0 评论 0原文

大家好,

现在我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲鸠 2024-10-25 23:44:04

最简单的方法是读取文件(例如 file_get_contents()),以某种方式对其进行编码(例如 base64_encode())并将其传递给 SOAP 或 XML-RPC作为参数调用。示例:

$soap = new SoapClient('url/to/your.wsdl');
$soap->upload(base64_encode(file_get_contents('file/to/upload')));

当然,假设 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:

$soap = new SoapClient('url/to/your.wsdl');
$soap->upload(base64_encode(file_get_contents('file/to/upload')));

This, of course, assumes a SOAP server that has a method called upload that accepts base64_encoded files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文