1

我有一个 .NET 4.5 WCF 服务。在我的本地主机和另一台服务器上,方法参数被正确传递。但是,在不同的服务器上,方法参数保持编码。

例如,如果我使用以下内容:

var factory = new ChannelFactory<MyService.Interface.ILeadService>("MyService", new EndpointAddress(url));
var channel = factory.CreateChannel();
using (new OperationContextScope((IContextChannel)channel))
{
    channel.AddCalendarItem("09/26/2013 7:40PM");
}

要调用此方法:

[OperationContract]
[WebGet(UriTemplate = "AddCalendarItem/?startDate={startDate}",
ResponseFormat = WebMessageFormat.Json)]
AddCalendarItemResponse AddCalendarItem(string startDate);

在我的本地(Windows 8)机器和一台服务器(Windows Server 2008 R2)上,我得到了预期的字符串:“09/26/2013 7:40PM”

但是,在具有相同代码和配置的一台服务器(Windows Server 2012)上,我得到:“09%2f26%2f2013 9%3a30PM”

我不知道问题出在呼叫者还是被呼叫者。

知道什么可能导致缺乏解码吗?频道可以是双重编码的吗?

4

1 回答 1

0

那里的铅是什么?

现在试试,应该可以了

  [OperationContract]
        [WebGet(BodyStyle = WebMessageBodyStyle.WrappedRequest, ResponseFormat = WebMessageFormat.Json,
         UriTemplate = "/AddCalendarItem/{token}?startDate={startDate}")]
        AddCalendarItemResponse AddCalendarItem(string token, string startDate);
于 2013-09-27T04:11:14.870 回答