Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi Tim
Are there any contour web services I can use to periodically draw down records from our Umbraco build from another server/site?
Thanks Martin
Comment author was deleted
Nope but should be easy to create with a Web API controller
So I wrap a contour API call with this?
Never done it before, but there's always a first time!
Thanks
M.
Yeah best would be to use code that is used for exporting entries,that will be fastest, will get you a code snippet
This snippet would be the fastest way to get all records
RecordsViewer rv =newRecordsViewer();
XmlDocument xs =newXmlDocument();
XmlNode XmlRecords = rv.GetXmlRecords(form, xs);
rv.Dispose();
returning them in xml format
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
REST or /base services for contour?
Hi Tim
Are there any contour web services I can use to periodically draw down records from our Umbraco build from another server/site?
Thanks Martin
Comment author was deleted
Nope but should be easy to create with a Web API controller
So I wrap a contour API call with this?
Never done it before, but there's always a first time!
Thanks
M.
Comment author was deleted
Yeah best would be to use code that is used for exporting entries,that will be fastest, will get you a code snippet
Comment author was deleted
This snippet would be the fastest way to get all records
RecordsViewer rv =newRecordsViewer();
XmlDocument xs =newXmlDocument();
XmlNode XmlRecords = rv.GetXmlRecords(form, xs);
rv.Dispose();
returning them in xml format
is working on a reply...