.NET 3.5 WCF 请求过滤

发布于 2024-12-27 08:16:16 字数 196 浏览 0 评论 0原文

谁能说有没有办法在.NET 3.5上为WCF get请求配置请求过滤? 具体来说,我想将 UTC 格式的日期时间作为像 webservicehost/webservicemethod/param1/param2/1-16-2012T11:48:50 这样的行的一部分传递,并且我在时间范围内遇到了冒号问题,因为 IIS 将其视为端口或诸如目录名之类的东西,其中冒号绝对是非法的。

Can anyone say is there any way to configure request filtering for WCF get request on .NET 3.5?
Specifically I want to pass datetime in UTC format as a part of a line like webservicehost/webservicemethod/param1/param2/1-16-2012T11:48:50 and I have got a problem with colons inside time because IIS treats it as a port or smth like directory name where colon is definitely illegal.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别把无礼当个性 2025-01-03 08:16:16

您可以尝试将参数作为查询字符串传递,这将允许您将单引号中的时间戳值。例如:

http://webservicehost/webservicemethod?param1=¶m2=¶m3 ='1-16-2012T11:48:50'

You could try passing the parameters as query strings instead, which will allow you to enclose the timestamp value in single quotes. For example:

http://webservicehost/webservicemethod?param1=¶m2=¶m3='1-16-2012T11:48:50'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文