从操作协定方法(WCF 服务)返回图像
本文关键字:服务 返回 图像 WCF 操作 方法 | 更新日期: 2023-09-27 18:34:09
>我正在尝试从WCF服务获取Image
。
我有一个OperationContract
函数,它向客户端返回Image
,但是当我从客户端调用它时,我得到这个异常:
套接字连接已中止。这可能是由于处理消息时出错或远程主机超过接收超时,或基础网络资源问题引起的。本地套接字超时为"00:00:59.9619978"。
客户:
private void btnNew_Click(object sender, EventArgs e)
{
picBox.Picture = client.GetScreenShot();
}
服务.cs:
public Image GetScreenShot()
{
Rectangle bounds = Screen.GetBounds(Point.Empty);
using (Bitmap bmp = new Bitmap(bounds.Width,bounds.Height))
{
using (Graphics g = Graphics.FromImage(bmp))
{
g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size);
}
using (MemoryStream ms = new MemoryStream())
{
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
return Image.FromStream(ms);
}
}
}
IScreenShot
接口:
[ServiceContract]
public interface IScreenShot
{
[OperationContract]
System.Drawing.Image GetScreenShot();
}
那么为什么会发生这种情况,我该如何解决呢?
我已经想通了。
- 首次使用
TransferMode.Streamed
或StreamedResponse
(取决于您的需要)。 - 返回流,不要忘记设置
Stream.Postion = 0
以便从头开始读取流。
在服务中:
public Stream GetStream()
{
Rectangle bounds = Screen.GetBounds(Point.Empty);
using (Bitmap bmp = new Bitmap(bounds.Width, bounds.Height))
{
using (Graphics g = Graphics.FromImage(bmp))
{
g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size);
}
MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
ms.Position = 0; // This is very important
return ms;
}
}
接口:
[ServiceContract]
public interface IScreenShot
{
[OperationContract]
Stream GetStream();
}
在客户端:
public partial class ScreenImage: Form
{
ScreenShotClient client;
public ScreenImage(string baseAddress)
{
InitializeComponent();
NetTcpBinding binding = new NetTcpBinding(SecurityMode.None);
binding.TransferMode = TransferMode.StreamedResponse;
binding.MaxReceivedMessageSize = 1024 * 1024 * 2;
client = new ScreenShotClient(binding, new EndpointAddress(baseAddress));
}
private void btnNew_Click(object sender, EventArgs e)
{
picBox.Image = Image.FromStream(client.GetStream());
}
}
您可以使用 Stream 返回大型数据/图像。
示例示例(从 MSDN 将图像作为流返回)
您需要定义可序列化的内容。 System.Drawing.Image
,但默认情况下不在 WCF 上下文中(使用 DataContractSerializer
)。这可能包括将原始字节作为数组返回,或序列化为字符串(base64,JSON)或实现可序列化并且可以随身携带数据的DataContract
。
正如其他人所说,WCF 支持流式处理,但这不是问题的关键。根据数据的大小,您可能希望执行此操作,这样做本身将减少问题,因为您将流式传输字节(从明显的顶级视图)。
您还可以查看此答案,以帮助您获取实际的异常详细信息,例如完整的堆栈跟踪,而不仅仅是故障信息。