背景
我有一个WCF XML Web服务,需要将其转换为使用JSON。它托管在Windows服务中(如果重要的话)。
问题
我一直收到404状态回复。
INTERFACE:
[OperationContract]
[WebInvoke(BodyStyle = WebMessageBodyStyle.Wrapped, Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "/Search")]
SearchResponse Search(RequestInfo requestInfo);
CONSOLE APP:
using (var client = new WebClient())
{
client.Headers["Content-type"] = "application/json";
var request = new RequestInfo
{
//etc
};
using (var upStream = new MemoryStream())
{
var serializer = new DataContractJsonSerializer(typeof(RequestInfo));
serializer.WriteObject(upStream, request);
byte[] responseBytes = client.UploadData("http://localhost:8000/TheService.svc/Search", "POST", upStream.ToArray());
using (var downStream = new MemoryStream(responseBytes))
{
var deserializer = new DataContractJsonSerializer(typeof(Response));
var result = deserializer.ReadObject(downStream) as Response;
return result.SearchResult.QueryId;
}
}
}
其他
我也尝试过使用Fiddler 2.0并直接传递JSON请求,如下所示:
POST http://localhost:8000/TheService.svc/Search HTTP/1.1
User-Agent: Fiddler
Content-Length: 209
Content-Type: application/json; charset=utf-8
Expect: 100-continue
Host: localhost:8000
{my json here}
但是,这只是确认了404.我在这里缺少什么?
更新
请注意,我实际上可以浏览到http://localhost:8000/TheService.svc
并且工作正常。它显示由WCF创建的标准Web服务页面。
答案 0 :(得分:1)
事实证明,web.config中的某些内容导致了问题(<system.serviceModel>
部分)。我刚刚决定删除该部分中的所有内容,然后从一个裸骨配置开始,然后从那里建立...现在它可以工作..我没有花时间尝试我以前的每一个选项,所以我不喜欢我不确切知道哪个选项导致了问题。如果有人遇到同样的问题,我建议从基本配置开始并从那里开始构建。
答案 1 :(得分:0)
如果你也展示你的web.config代码会很棒。
使用
UriTemplate = "Search"
而不是UriTemplate = "/Search"
尝试10.0.2.2而不是localhost
而不是http://localhost:8000/TheService.svc/hello
将其删除BodyStyle = WebMessageBodyStyle.Wrapped
或改为使用
BodyStyle = WebMessageBodyStyle.Bare