RESTful WCF服务可以在JSON(P)和XML中进行响应,仍然可以用作SOAP Web服务?

给定合同如:
[ServiceContract] public interface IService
{
    [OperationContract]
    [WebGet(UriTemplate = "GetData/{id}.{format}")]
    ResponseData GetData(string id,string format);
}

有没有办法让服务响应json当请求时:
/GetData/1234.json,当请求作为/GetData/1234.xml时,xml仍然可以作为一个适当的肥皂服务在一些其他url,与强类型wsdl合同?

使用Stream作为GetData的返回值是不可行的,就像它符合前两个要求一样,wcf无法创建一个完整的wsdl规范,因为它不知道结果流的内容是什么.

解决方法

您应该有两个独立的方法,它们采用id和格式(并且它们将调用一个返回ResponseData的共享实现),它们具有不同的 WebGet attributes
[ServiceContract]
public interface IService
{
    [OperationContract]
    [WebGet(UriTemplate = "GetData/{id}.{format}.xml",ResponseFormat=WebMessageFormat.Xml)]
    ResponseData Getdataxml(string id,string format);

    [OperationContract]
    [WebGet(UriTemplate = "GetData/{id}.{format}.json",ResponseFormat=WebMessageFormat.Json)]
    ResponseData GetDataJson(string id,string format);
}

对于SOAP端点,您应该可以调用这两种方法,但是您将需要一个单独的ServiceHost实例来承载合同的实现.

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...