机体参数“宽度”。 GET操作不能有身体吗?(body parameter 'width

2019-09-16 08:44发布

我试着去从像这样一个WCF休息服务中获得的图像:

[ServiceContract]
public interface IReceiveData
{
    [OperationContract]
    [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Xml, UriTemplate = "picture/")]
    //this line is wrong though
    Stream GetImage(int width, int height);
}
public class RawDataService : IReceiveData
{
    public Stream GetImage(int width, int height)
    {
        // Although this method returns a jpeg, it can be
        // modified to return any data you want within the stream
        Bitmap bitmap = new Bitmap(width, height);
        for (int i = 0; i < bitmap.Width; i++)
        {
            for (int j = 0; j < bitmap.Height; j++)
            {
                bitmap.SetPixel(i, j, (Math.Abs(i - j) < 2) ? Color.Blue : Color.Yellow);
            }
        }
        MemoryStream ms = new MemoryStream();
        bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
        ms.Position = 0;
        WebOperationContext.Current.OutgoingResponse.ContentType = "image/jpeg";
        return ms;
    }
}

在我的主机应用程序:

class Program
    {
        static void Main(string[] args)
        {
            string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
            ServiceHost host = new ServiceHost(typeof(RawDataService), new Uri(baseAddress));
            host.AddServiceEndpoint(typeof(IReceiveData), new WebHttpBinding(), "").Behaviors.Add(new WebHttpBehavior());
            host.Open(); // this line
            Console.WriteLine("Host opened");
            Console.ReadLine();

我得到这个错误:

操作“的getImage”合同“IReceiveData”使用GET,但也有身体参数“宽度”。 GET操作不能有身体。 要么使参数“宽度”一个UriTemplate参数,或从开关到WebGetAttribute WebInvokeAttribute。

林不知道你如何设置webinvoke / UriTemplate方法图像或你如何得到的图像并将其返回。 有人可以张贴在这个例子中显示图像的正确方法。

编辑

如果我尝试下面的答案,并使用UriTemplate = "picture?w={width}&h={height}"我的UriTemplate导航到时http://www.localhost.com:8000/Service/picture?width=50&height=40我收到我的代码中的错误:

public Stream GetImage(int width, int height)
        {
            Bitmap bitmap = new Bitmap(width, height); // this line
            for (int i = 0; i < bitmap.Width; i++)
            {
                for (int j = 0; j < bitmap.Height; j++)
                {
                    bitmap.SetPixel(i, j, (Math.Abs(i - j) < 2) ? Color.Blue : Color.Yellow);
                }
            }
            MemoryStream ms = new MemoryStream();
            bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
            ms.Position = 0;
            WebOperationContext.Current.OutgoingResponse.ContentType = "image/jpeg";
            return ms;
        }

其中规定ArguementException was unhandled by user code: 参数无效。

Answer 1:

在属性,你需要告诉你期待的宽度和高度为URL参数的运行时间。

目前,运行时假定你调用一个不带参数的URL,但被调用的方法需要的参数,所以运行时真不知道如何找到这些值传递给你的方法, widthheight

这可以看起来像

[WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Xml, UriTemplate = "picture/{width}/{height}")]
Stream GetImage(string width, string height)
{
    int w, h;
    if (!Int32.TryParse(width, out w))
    {
        // Handle error: use default values
        w = 640;
    }
    if (!Int32.TryParse(height, out h))
    {
        // Handle error use default values
        h = 480;
    }

    ....
}

你将需要调用类的URL http://test.tld/picture/320/200



Answer 2:

UriTemplate = "picture/"

应该是这样的

UriTemplate = "picture?w={width}&h={height}"

这告诉WCF如何从URL中的宽度和高度参数。



文章来源: body parameter 'width'. GET operations cannot have a body?