gpt4 book ai didi

wcf - 无法将 "%26"传递给 WCF 服务中的 WebGet UriTemplate 变量?

转载 作者:行者123 更新时间:2023-12-04 14:33:13 28 4
gpt4 key购买 nike

我有一个带有此声明操作的 WCF 服务:

[WebGet(UriTemplate = "Test/{*testString}")]
public String Test(String testString)
{
return testString;
}

但是,当尝试调用 URL Test/You%26Me 时,IIS 返回错误:

A potentially dangerous Request.Path value was detected from the client (&).

我的目标是通过其 URL 编码允许 URI 中的 & 符号:%26

通配符没有帮助。有什么方法可以在不禁用安全功能的情况下防止此错误?

最佳答案

尝试使用 RequestPathInvalidCharacters Web.config 中的配置属性避免使用如下字符:

<system.web>
<httpRuntime requestPathInvalidCharacters="<,>,*,:,\\" />
</system.web>

关于wcf - 无法将 "%26"传递给 WCF 服务中的 WebGet UriTemplate 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3102897/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com