I have a simple RESTful method which currently returns JSON representation of an object.
My question is more of from the architectural perspective and not completely technical.
Should a RESTful service be designed in such a way that it returns both JSON and XML at the same time?
As far as I know this is a bad practice and separate resources should be defined for this. One resource should return JSON data and other one XML.
Am I thinking it correctly?