Stefan,
I got sucked away on another project and am only now returning to this. XMOD stores its data in SQLServer. It stores a row for each 'form' record filled in, and the data is in XML format. I want to show various subsets of that data on different pages of another portal. So, basically I need to figure out how to format that data within a URL which will return XML that I can feed into various XML module instances, each one configured to select and style different subsets of the data. I have two possible approaches, Option 2 being preferable since I'm not an experienced developer :
- I can probably write a custom module which reads the database using parameters on the URL : in this case I have to understand how DNN permits me to return an XML document to the requestor from a custom module
- I can use an existing 'view' module provided by XMOD called a 'details view' , which allows me present all the data from a single row on a page. In this case , using 'details view' I'm again trying to figure out how a DNN page is turned into a document which can be processed by the XML module. In effect what I would be doing is creating one 'details view' and using the XML module to style and select the data it wanted from the full set of data available.
So, common to either approach try to imaging a situation where one module is installed on a DNN page : I can determine the information contents of that module based on criteria supplied in the URL by the page requestor. The page requestor is an instance of the XML Module in a different portal - I'm trying to understand how I can construct the DNN page to make it compatible with the XML module requesting it.
Thanks for giving it some thought,
Mike