WCF 和 WebGet - 请求带有扩展名的文件时出错
我在我的服务中配置了一个简单的方法,仅发送回您请求的内容:
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是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.