How to Programmatically create content page in umbraco?
I would like to be able to programmatically add content pages to Umbraco without user interaction. The program reads a static HTML file that is supplied as a feed and adds this HTML to the content page programmatically.
The following Post recommends adding the code in a web service and copying it onto your Umbraco site.
How do I copy the web service to my Umbraco site?
What are the configuration changes to be taken care of?
How do I invoke the Web Service?
I have currently added a service reference in m Umbraco site for the web service and made following changes in my umbracoSettings.config
<webservicesenabled="true">
<!-- You must set user-rights for each service. Enter the usernames seperated with comma (,) -->
Programmatically create content page in umbraco
How to Programmatically create content page in umbraco?
I would like to be able to programmatically add content pages to Umbraco without user interaction. The program reads a static HTML file that is supplied as a feed and adds this HTML to the content page programmatically.
The following Post recommends adding the code in a web service and copying it onto your Umbraco site.
How do I copy the web service to my Umbraco site?
What are the configuration changes to be taken care of?
How do I invoke the Web Service?
I have currently added a service reference in m Umbraco site for the web service and made following changes in my umbracoSettings.config
<webservices enabled="true">
<!-- You must set user-rights for each service. Enter the usernames seperated with comma (,) -->
<documentServiceUsers>admin</documentServiceUsers>
<fileServiceUsers>admin</fileServiceUsers>
<stylesheetServiceUsers>admin</stylesheetServiceUsers>
<memberServiceUsers>admine</memberServiceUsers>
<templateServiceUsers>admin</templateServiceUsers>
<!-- type of files (extensions) that are allowed for the file service -->
<fileServiceFolders>css,xslt</fileServiceFolders>
</webservices>
What am I missing ?
www.bayshield.com/.../span>.is working on a reply...