Restlet 2.0.1
I have two Get annotations defined:
@Get("htm|html")
and
@Get
The get @Get returns a serializable object which jackson serializes to json.
However when I put the url in a browser I would expect the @Get("htm|html") to
be called.
I put in some print statement and it seems internet explorer 8 it always
requests application/json.
In firefox it does like I expect and requests text/html.
Is there any way to set it up so IE 8 will prefer text/html so the
@Get("htm|html") gets called and not my @Get which serves json?
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2671450