WCF 奇怪的行为
Posted
技术标签:
【中文标题】WCF 奇怪的行为【英文标题】:WCF strange behaviour 【发布时间】:2012-07-13 01:42:27 【问题描述】:我在使用网络服务时得到了这个:
合约“IServices”的“登录”操作指定了多个要序列化的请求主体参数,而无需任何包装器元素。最多一个 body 参数可以在没有包装元素的情况下被序列化。删除额外的正文参数或将 WebGetAttribute/WebInvokeAttribute 上的 BodyStyle 属性设置为 Wrapped。
我使用的界面是这样的:
namespace DreamServices
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
[ServiceContract]
public interface IServices
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "LogIn/username/password")]
string Login(string username, string password);
[OperationContract]
[WebInvoke(
Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "WaletTotalAmount/userid")]
double? WaletTotalAmount(string userid);
[OperationContract]
[WebInvoke(
Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "UserService/userid")]
IList<UserServiceses> UserService(string userid);
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "InsertUpdateWallet/userid/Amount/ComissionAmount")]
void InsertUpdateWallet(string userid, string Amount, string ComissionAmount);
然后我托管它,然后我将网络引用添加到我的网站并修改 web.config 以使其类似于
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp />
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<webHttpBinding>
<binding name="defaultRest">
<readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="64" maxNameTableCharCount="2147483647" />
<security mode="None" />
</binding>
</webHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:1381/PMAHost/Service.svc" binding="webHttpBinding" contract="ServiceReference.IServices" behaviorConfiguration="web"/>
</client>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
知道如何解决这个错误吗?
【问题讨论】:
请显示这些属性装饰的方法的签名。 ok public string login(string userid) ; public void InsertUpdateWallet(string userid, string amount) 发布您的完整 WCF 接口代码。 查看我修改后的问题 【参考方案1】:首先我不确定你为什么使用 GET 操作登录,你应该使用 POST 对吗?接下来,您在UriTemplate
中定义了两个参数,但该方法只包含一个。我建议你使用一个类作为参数,而不是返回字符串,你也可以返回一个模型。
public class LoginModel
public string username get; set;
public string password get; set;
public class Result
public bool success get; set;
public string error get; set;
[WebInvoke(Method = "POST",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
UriTemplate = "/LogIn")]
public Result login(LoginModel loginModel)
【讨论】:
但是我在android中使用了这个web服务并且工作得很好,你知道在asp.net中如何在***.com/questions/4346554/…中添加这个属性到客户端代理AS以上是关于WCF 奇怪的行为的主要内容,如果未能解决你的问题,请参考以下文章
WCF 奇怪的 ReadOnlyDictionary 序列化