我为我的REST项目使用WCF Rest 40(CS)模板 通过URL传递数据时没有遇到任何问题:
http://localhost:8525/Device/Login?deviceID=testid&password=a&serialNum=testserial
但是当传递Json数据时,我得到:
HTTP/1.1 400 Bad Request
Server: ASP.NET Development Server/10.0.0.0
Date: Fri, 17 Feb 2012 08:41:38 GMT
X-AspNet-Version: 4.0.30319
Content-Length: 1647
Set-Cookie: ASP.NET_SessionId=4tez22jvuy0s3tiioctukvdq; path=/; HttpOnly
Cache-Control: private
Content-Type: text/html
Connection: Close
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Request Error</title>
<style>BODY { color: #000000; background-color: white; font-family: Verdana; margin-left: 0px; margin-top: 0px; } #content { margin-left: 30px; font-size: .70em; padding-bottom: 2em; } A:link { color: #336699; font-weight: bold; text-decoration: underline; } A:visited { color: #6699cc; font-weight: bold; text-decoration: underline; } A:active { color: #336699; font-weight: bold; text-decoration: underline; } .heading1 { background-color: #003366; border-bottom: #336699 6px solid; color: #ffffff; font-family: Tahoma; font-size: 26px; font-weight: normal;margin: 0em 0em 10px -20px; padding-bottom: 8px; padding-left: 30px;padding-top: 16px;} pre { font-size:small; background-color: #e5e5cc; padding: 5px; font-family: Courier New; margin-top: 0px; border: 1px #f0f0e0 solid; white-space: pre-wrap; white-space: -pre-wrap; word-wrap: break-word; } table { border-collapse: collapse; border-spacing: 0px; font-family: Verdana;} table th { border-right: 2px white solid; border-bottom: 2px white solid; font-weight: bold; background-color: #cecf9c;} table td { border-right: 2px white solid; border-bottom: 2px white solid; background-color: #e5e5cc;}</style>
</head>
<body>
<div id="content">
<p class="heading1">Request Error</p>
<p>The server encountered an error processing the request. See server logs for more details.</p>
</div>
</body>
</html>
方法不允许
(使用Fiddler回复)
在辅助服务中:
namespace WCFRest.Rest
{
[ServiceContract]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class DeviceComponent
{
[WebInvoke(UriTemplate = "Login?deviceID={deviceID}&password={password}&serialNum={serialNum}", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
public WRModel.Entities.Session Login(string deviceID, string password, string serialNum)
{
string ip = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
WRModel.Interfaces.IDeviceComponent svc = WRModel.Logic.ConfigAndResourceComponent.Containers().Resolve<WRModel.Interfaces.IDeviceComponent>();
return svc.Login(deviceID, password, serialNum, ip);
}
[WebInvoke(UriTemplate = "Logout", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
public bool Logout(WRModel.Entities.DeviceSession deviceSession)
{
WRModel.Interfaces.IDeviceComponent svc = WRModel.Logic.ConfigAndResourceComponent.Containers().Resolve<WRModel.Interfaces.IDeviceComponent>();
return svc.Logout(deviceSession);
}
}
}
登录部分正常,但注销会导致错误。我哪里做错了?感谢帮助。这里有一些使用fiddler的图片:
编辑
DeviceSession实体
[DataContract(Name = "DeviceSession", Namespace = "http://MySite.com/1.0/DeviceSession")]
public class DeviceSession : IDeviceSession
{
public DeviceSession()
{
}
public DeviceSession(string session, string loginID, string serial)
{
Session = session;
LoginID = loginID;
Serial = serial;
}
string _session;
[DataMember(Order = 0)]
public string Session
{
get { return _session; }
set { _session = value; }
}
string _LoginID;
[DataMember(Order = 1)]
public string LoginID
{
get { return _LoginID; }
set { _LoginID = value; }
}
string _serial;
[DataMember(Order = 2)]
public string Serial
{
get { return _serial; }
set { _serial = value; }
}
}
答案 0 :(得分:3)
在每个示例中,您实际上做了一些不同的事情。在第一个示例(登录)中,您将在网址上发布变量,在您正在帖子中发布的第二个变量中。
需要注意的是,您需要在第二个示例中发布的JSON是字符串的json,而不是包含字符串的对象的json。这意味着json对类型字符串无效。
我建议将它包装在一个对象中,或者像在第一个例子中那样在查询字符串上调用它。
例如,您可以使用
[WebInvoke(UriTemplate = "Login", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
public WRModel.Entities.Session Login(LoginDetails details)
登录详细信息是包含deviceId密码serialNumber
的类