我必须调用一个 asmx webservice,它接受 AttachmentData 作为参数。这有一个 base64Binary 类型的成员。
<s:complexType name="AttachmentData">
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="FileName" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="UploadedUserName" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="Attachment" type="s:base64Binary" />
</s:sequence>
</s:complexType>
我正在发送附件成员的文件内容如下:
//read the file contents
byte[] buffer = null;
try {
FileInfo attachment = new FileInfo(filepath);
using (FileStream stream = attachment.OpenRead()) {
if (stream.Length > 0) {
buffer = new byte[stream.Length];
stream.Read(buffer, 0, (int)stream.Length);
}
}
}
catch {
buffer = null;
}
//create AttachmentData object
WebSrvc.AttachmentData att = new WebSrvc.AttachmentData();
att.FileName = fileName;
att.Attachment = buffer;
这是发送 base64Binary 的正确方法吗?我需要将文件内容编码为 base64 还是即时完成?我想看看我是否通过使用上面的代码不必要地膨胀了 web 服务请求的大小。
最佳答案
对于输入中的每 3 个字节,Base 64 encoding 在输出中需要 4 个字节,因此有一点开销,但并没有那么多。
Base 64 编码的好处是它只使用可打印的字符,因此很容易嵌入到 HTTP 协议(protocol)中,该协议(protocol)旨在处理人类可读的文本字符。
在您的代码示例中,byte[] 缓冲区在被放置在线上之前会自动转换为 Base 64(即在 HTTP 协议(protocol)中嵌入和传输)。
关于c# - 调用asmx webservice时如何发送base64Binary的数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15410697/