First, let me start with some background: I have a web service which accepts XML as input and outputs in XML. The output has 2 different possible schemas (with two more coming). Each request has a list of groups from which to poll for data. The database is polled, then XML of the correct format is generated from each group; the groups are compiled together and the XML is outputted.
So basically, there is a class for each group of data which handles polling the database and outputting either XML schema output.
The code itself is very bloated and difficult to maintain because of the multiple output formats. So I am looking for a design pattern to use in order to make adding new output formats easier. I explored the option of using XSLT to transform between formats, but they differ significantly so that I believe this option isn't feasible.
tl;dr: What is an efficient design pattern for a restful XML webservice to generate XML in different formats based on data from a single database?
Please let me if I can provide more information!