In the EPiServer CMS 5.2.375.7 SDK the RemotePageProvider is mentioned. But there is no class "RemotePageProvider". Do I have to implement this myself.
What I want to do is get pages from another EPiServer that is registered as a RemoteSite. I have created a remote site in admin, "MyRemoteSite". I get an accepted response when I ping it.
I have tried: PageReference pageLink = new PageReference(3, "MyRemoteSite"); PageData pageData = DataFactory.Instance.GetPage(pageLink);
This throws an exception saying there is no PageProvider "MyRemoteSite".
How is it meant to be done, getting pages from other EPiServer's?
In the EPiServer CMS 5.2.375.7 SDK the RemotePageProvider is mentioned. But there is no class "RemotePageProvider". Do I have to implement this myself.
What I want to do is get pages from another EPiServer that is registered as a RemoteSite. I have created a remote site in admin, "MyRemoteSite". I get an accepted response when I ping it.
I have tried:
PageReference pageLink = new PageReference(3, "MyRemoteSite");
PageData pageData = DataFactory.Instance.GetPage(pageLink);
This throws an exception saying there is no PageProvider "MyRemoteSite".
How is it meant to be done, getting pages from other EPiServer's?
/Hans