我有一个WCF Rest服务项目设置服务JSON数据结构。我在接口文件中定义了一个合同,如:
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "location/{id}")]
Location GetLocation(string id);
现在,WebService需要像标准Web服务器那样返回多媒体(图像,PDF文档)文档。 WebMessageFormat
的WCF ResponseFormat
仅支持JSON或XML。如何在界面中定义方法以返回文件?
类似的东西:
[OperationContract]
[WebInvoke(Method="GET",
ResponseFormat = ?????
BodyStyle = WebMessageBodyStyle.Bare,
UriTemplate = "multimedia/{id}")]
???? GetMultimedia(string id);
这样:wget http://example.com/multimedia/10
返回id为10的PDF文档。
答案 0 :(得分:3)
您可以从RESTful服务获取文件,如下所示:
[WebGet(UriTemplate = "file")]
public Stream GetFile()
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/txt";
FileStream f = new FileStream("C:\\Test.txt", FileMode.Open);
int length = (int)f.Length;
WebOperationContext.Current.OutgoingResponse.ContentLength = length;
byte[] buffer = new byte[length];
int sum = 0;
int count;
while((count = f.Read(buffer, sum , length - sum)) > 0 )
{
sum += count;
}
f.Close();
return new MemoryStream(buffer);
}
当您浏览到IE中的服务时,它应显示响应的打开保存对话框。
注意:您应该设置服务返回的文件的相应内容类型。在上面的示例中,它返回一个文本文件。