Hi Guys,
What's the best way of using EPiServer APIs on an external website to get EPiServer information such as stored files and pages.
Ideally I'd use some EPiServer reference and call...
PageCollection pc = EPiServer.Global.GetChildren(PageReferenceNumber);
foreach (PageData page in pc){
// Extract information.
}
Something like that but not to have the external site be a EPiServer site or have EPiServer installed.
Can you help,
Chris
I guess the webservices is the best way:
You can use the DataFactory web service found at:
http://www.yourepiserverwebsite.com/WebServices/DataFactoryService.asmx
/Björn
Hi Guys,
What's the best way of using EPiServer APIs on an external website to get EPiServer information such as stored files and pages.
Ideally I'd use some EPiServer reference and call...
PageCollection pc = EPiServer.Global.GetChildren(PageReferenceNumber);
foreach (PageData page in pc){
// Extract information.
}
Something like that but not to have the external site be a EPiServer site or have EPiServer installed.
Can you help,
Chris