WCF 和 WebGet - 请求带有扩展名的文件时出错

发布于 2024-11-03 06:00:40 字数 583 浏览 2 评论 0原文

我在我的服务中配置了一个简单的方法,仅发送回您请求的内容:

[WebGet(UriTemplate = "/{fileName}")]
[OperationContract]
string GetFile(string fileName);

当我通过以下方式访问此方法时:
http://localhost:8460/WCFService1/Service.svc/fileName
我收到包含字符串“fileName”的响应。
但我希望能够接受对带有如下后缀的文件的请求: http://localhost:8460/WCFService1/Service.svc/fileName.jpg
在这种情况下,我收到错误:
找不到资源
(就好像请求没有传送到 GetFile() 方法一样)。

I have configured a simple method in my service that just sends back what you requested :

[WebGet(UriTemplate = "/{fileName}")]
[OperationContract]
string GetFile(string fileName);

And when I access this method via:
http://localhost:8460/WCFService1/Service.svc/fileName
I get a respond containg the string "fileName".
But I want to be able to accept a request for a file with it's suffix like this :
http://localhost:8460/WCFService1/Service.svc/fileName.jpg
In this case I get an error :
The resource cannot be found
(As if the request was not channeled to the GetFile() method).

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

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

发布评论

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

评论(1

情痴 2024-11-10 06:00:40

这是asp 开发服务器的一个错误。
当我在 webmatrix(IIS express) 中托管服务时,它工作正常,并且使用扩展发出的请求也可以。

It's a bug with the asp development server.
When I host the service in webmatrix(IIS express) it works fine and requests made with extensions are ok.

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