Hi there!
I am building a DNN-Site and I want to integrate it with Ebay, so that I can present my costumers real time auction data about clothes.
I thought about an algorithm that would basically do the following:
1) Read an XML file that has the following format
Clothes XML File
Group 1
Subgroup 1.1
Item 1.1.1
Item 1.1.2
Item 1.1.3
…….
Subgroup 1.2
Item 1.2.1
Item 1.2.2
Item Type 1.2.3
…..
Subgroup 1.n
…..
Group n
One example of request would be Group = Pants, Subgroup = jeans, Clothes Type = Armani
2) The second step would be to get the generated the xml for each request from the Ebay server and build a page in the dotnetnuke server.
The task here is to build a page with the following characteristics:
Page name: pants_jeans_armani
Page content: a customized view of the xml file from Ebay
My questions are:
What object from the DNN should be used to handle the creation of files?
The output should be transformed via XSLT?
Thank you a lot!