如何将纯文本发布到WCF服务,即不包含在XML标记中?

时间:2011-01-06 13:07:27

标签: c# wcf web-services rest

这是我的问题:

我必须构建一个web服务,接受httppost正文中的纯文本 我想使用wcf,但看起来wcf只针对xml / json。

有没有人有一种方法可以用来通过http帖子发布纯文字?
请注意,我不能使用soap或将文本包装在xml标签内,我必须遵循某些指导原则才能与现有服务使用者兼容。

提前致谢。

1 个答案:

答案 0 :(得分:0)

诀窍是你用param Stream xxx调用你的方法

在iContract中

[WebInvoke(Method = "POST",
    UriTemplate = "InterpSvcTest",
    BodyStyle = WebMessageBodyStyle.Bare)] // this is key for combining params with Stream

Stream InterpretORUTest(Stream ORU);

在您的WebService类

    public Stream InterpretORUTest(Stream ORUMessageStream)
    {
        string hl7 = StreamToString(ORUMessageStream);

        return StringToStream(hl7);

    }

   public Stream StringToStream(string s)
        {
            return new MemoryStream(Encoding.UTF8.GetBytes(s));

        }

        public string StreamToString(Stream ms)
        {
            try
            {
                using (ms)
                {
                    var sr = new StreamReader(ms);
                    var myStr = sr.ReadToEnd();
                    sr.Dispose();
                    return myStr;
                };
            }
            catch (Exception e)
            {
                c.WriteToLog("StreamToString error - " + e.Message);
                return "";

            }

        }