Tagged Questions
The content-negotiation tag has no wiki summary.
6
votes
1answer
174 views
Is My Spring-MVC ContentNegotiatingViewResolver setup correctly? How can I send 404 error for unsupported media types?
I dunno if this is a valid question for this site, but I was wondering if someone experienced with the ContentNegotiatingViewResolver could look this over and let me know if I set it up correctly and ...
6
votes
2answers
320 views
Rest Content Negotiation and Caching
I'm wondering how caching works with content negotiation based API. Since the to get a resource in XML or JSON, the URI will be the same, for example:
http://example.com/bikes/mountain
The service ...
4
votes
3answers
759 views
Specify supported media types when sending “415 unsupported media type”
If a clients sends data in an unsupported media type to a HTTP server, the server answers with status "415 unsupported media type". But how to tell the client what media types are supported? Is there ...
3
votes
2answers
231 views
Is there a C# or .NET class to handle HTTP Content Negotiation?
Is there a C# or .NET class to handle HTTP Content Negotiation with a User Agent?
I would like to be able to supply a list of acceptable Content Types, and have those negotiated with the browser to ...
2
votes
2answers
38 views
Spring MVC 3 content negotiation restrict to actions which support it
I have configured content negotiation in my Spring MVC 3 app as follows:
<bean
class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
...
2
votes
2answers
964 views
How to redirect users based on browser language
I want to redirect users based on browser language, I figured out how to do this here, it works fine, here is the code(PHP):
if(preg_match('/en-US/', $_SERVER['HTTP_USER_AGENT']))
...
2
votes
2answers
258 views
Content negotiation ignored when using browser Back button
Here's the situation:
I have a web application which response to a request for a list of resources, lets say:
/items
This is initially requested directly by the web browser by navigating to that ...
2
votes
4answers
658 views
RESTful Content Negotiation in Rails
I'm looking to implement content negotiation on some resources in a Rails app. I'm using Mootools and will likely be able to tweak the content type accepted by an XMLHTTPRequest to ...
1
vote
2answers
38 views
Is there an easier way to do content negotiated responses in Grails?
From what is in the Grails user guide, the recommended way to send different content formats based on the content negotiation is to use a withFormat block:
import grails.converters.XML
class ...
1
vote
1answer
110 views
JSON/XML output in GUI, BLL or DTO?
I'm using content-negotiation, so depending on the header of the request I provide JSON/XML output. Now I was wondering what the best location is for providing this functionality.
Info:
BLL= business ...
1
vote
1answer
182 views
issues with xml in spring mvc 3
See my following 4 simple examples, 2 works for xml, the other 2 does not.
//works for html, json, xml
@RequestMapping(value = "/test", method = RequestMethod.GET)
public ...
1
vote
2answers
640 views
HTTP content negotiation conflicts in JAX-RS/Jersey?
I am enjoying the auto HTTP content negotiation of JAX-RS (specifically Jersey), i.e. its ability to route my resources by "Accept" and/or "Content-Type" headers. But I'm finding that sometimes it ...
1
vote
1answer
180 views
Content Negotiation on Tomcat
I'm trying to get my Tomcat to use pretty URLs, similar to Apache's MultiViews option. I tried using AJP to proxy Tomcat to Apache, but the .htaccess file is still ignored.
What are my options for ...
1
vote
1answer
3k views
Is there an example on how to use Spring 3.0 content negotiation for RESTful services?
I was reading the Spring 3.0 Documentation and Blog Posts (followups) on how to create REST style services with Spring MVC but I can't find any working example on how to use the ...
0
votes
1answer
61 views
How does Grails' content negotiation handle opposing types?
Grails supports content negotiation from 3 different sources:
Accept header
Request parameter (format)
URI extension
The question is, what does it do when it get content information from more than ...
0
votes
0answers
31 views
How to use htaccess for content negotiation?
In order for the content to be available through the same link, even if the file extension has changed, URI's shouldnt change. So i decided to use content negotiation and htaccess to achieve this. I ...
0
votes
2answers
60 views
How to disable content negotiation and always return JSON from WCF data service?
Let's say I have a northwind database and I use ADO.NET Entity Data Model which I automatically generate from the tables in database. Then I add a new WCF data service that inherits from DataService. ...
0
votes
1answer
68 views
How do I discover what content types a HTTP POST service allows?
I am writing a client for OpenTox webservices, but several services they provide have optional support for certain MIME types with only a few obligatory, e.g. this Dataset service. So I need to ...
0
votes
1answer
30 views
Possible Notations for Content Negotiation Headers?
Where can I find all the possible content notations for the following HTTP headers?
Accept
Accept-Charset
Accept-Encoding
Accept-Language
0
votes
0answers
40 views
Can you specify precedence of file extensions or media types in Apache?
Can you specify precedence of file extensions or media types in Apache?
I would like to implement the same technique as used by the W3C; an example of this technique is in displayed in their XSLT ...
0
votes
4answers
752 views
JSONP and Custom Filter Returning XML instead in Spring MVC
I am using JSONP to call a controller service in Spring MVC. I have a custom filter that returns the result wrapped in the callback. I used this example, ...
0
votes
1answer
307 views
Apache Content negotiation returns wrong Content-Type with Mulitviews :(
I am using Apache webserver 2.2 with Content Negotiation through Multiviews.
I have:
<Directory /home/develop/web/prodBuild>
Options +MultiViews
AddEncoding x-gzip .gz
</Directory>
...
0
votes
1answer
124 views
Grails Content Negotiation - handling unsupported type
We are using content negotiation in our service using the Accept header and the withFormat method....the issue we are facing is that we want to return a 406 http status if the Accept header has a type ...
0
votes
3answers
221 views
Serving XHTML as application/xhtml+xml with Ruby on Rails
I'm trying to get my Rails app to serve XHTML content properly, with the correct content-type of application/xhtml+xml. Ideally with content negotiation so that IE users get a chance to use the site ...
0
votes
1answer
34 views
How is the concept of “content negotiation” called outside the HTTP context?
What are different terms for "content negotiation" (when not talking about HTTP)?
For example: some (remote or local) services, components, modules,
are negotiating about which protocol to use and/or ...
0
votes
1answer
42 views
Canonical vs Requested Type in Content Negotation
So I was wondering what should be done with HTTP Content Negotiation regarding requests where the returned data may have multiple valid MIME types.
For example if say I have some arbitrary data that ...
0
votes
2answers
236 views
How do I download a file with a non-HTML content type from within a browser?
I'm trying to use content negotiation to give both a HTML and a RDF/XML representation of a resource on a HTTP server. On the server side this works, i.e.
curl -H "Accept: application/rdf+xml" ...
0
votes
1answer
587 views
mod_rewrite rules and content negotiation
I am relatively new to mod_rewrite, but have a site which I would like to have "pretty urls." Similarly to SO :).
I am attempting to have things like: "http://www.whatever.com/search/test" get ...