• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ContentNegotiatingViewResolver

 
Ranch Hand
Posts: 230
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello:

I have a RESTful web service in which I want to give the client the option of receiving either XML or JSON by specifying the extension on the URL:






If I send:

http://localhost::9081/SIMS_Student_Location_Confirm/SIMS/get/2828/1234567890.json

I only get only JSON back if I specify the Accept header as application/json. If I specify both text.xml and application/json in the header, I always get XML back, no matter what extension I use. I'd like the extension to determine the format of the output. I've been trying to follow the new Spring in Action book but there is something missing in the text.

Thanks
eric
 
reply
    Bookmark Topic Watch Topic
  • New Topic