.NET 3.5 WCF 请求过滤
谁能说有没有办法在.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将参数作为查询字符串传递,这将允许您将单引号中的时间戳值。例如:
You could try passing the parameters as query strings instead, which will allow you to enclose the timestamp value in single quotes. For example: