我必须调用一个 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 服务请求的大小。