Tagged Questions

3
votes
2answers
118 views

HTTP caching in WCF Web API seems inconsistent across browsers

I'm implementing a simple REST service with the WCF Web API and attempt to set HTTP headers in order to cache responses. For a simple GET like this http://localhost:49302/my/2 the response headers ...
2
votes
2answers
466 views

Cache-control policy for search resource on RESTful API

I'm creating a RESTful API (using MVC.NET) to allow external access to a business system. The API includes a search resource. The resource takes the URI form ...
0
votes
1answer
683 views

HTTP CacheControl with Jersey and json implementation

I want to add the CacheControl intormation to a GET service that use the json binding. I found that to add the cacheControl to a response the REST service sound like this: @GET ...
0
votes
1answer
789 views

HTTP Cache-Control: What is acceptable default behavior when it's not present?

I'm running into some HTTP caching issues, caused by some downstream apps not putting Cache-Control headers on time-sensitive data. I need to make the case that this is a broken situation. Is there ...