我有一个REST WCF服务,它有一个方法可以将参数作为字符串
获取当我在Url中使用%23时,我收到一条错误消息:找不到端点! e.g:
-- Id #9999
http://localhost:8000/MyService/GetData/Id/%239999 (%23 means # symbol encoded)
如果我使用没有%符号,它可以正常工作
http://localhost:8000/MyService/GetData/Id/10
[ServiceContract]
public interface IService1
{
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetData/id/{id}")]
string GetData(string value);
}
我在Windows服务上托管服务:
ServiceHost host = new ServiceHost(typeof(Service1), "http://localhost:8000");
WebHttpBinding binding = new WebHttpBinding();
ServiceEndpoint endpoint = host.AddServiceEndpoint(typeof(IService1), binding, "MyService");
WebHttpBehavior httpBehavior = new WebHttpBehavior();
endpoint.Behaviors.Add(httpBehavior);
host.Open();
我发现这篇文章: http://www.hanselman.com/blog/ExperimentsInWackinessAllowingPercentsAnglebracketsAndOtherNaughtyThingsInTheASPNETIISRequestURL.aspx但它不起作用,因为我没有在IIS上托管WCF而是在Windows服务上托管它
答案 0 :(得分:1)
由于这个帖子我找到了解决方案:
How can I pass slash and other 'url sensitive' characters to a WCF REST service?
解决方案:
<configuration>
<system.net>
<settings>
<httpListener unescapeRequestUrl="false"/>
</settings>
</system.net>
</configuration>
答案 1 :(得分:0)
在网址中使用一些特殊字符并不是最佳实践。请考虑不要使用它们。