Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use Umbraco as a CMS for my existing .net website. I have shifted through all the Umbraco tutorials / Wiki articles and have come to the conclusion that using the NodeFactory via the Umbraco DLL's in my code is the way forward.

However all articles/wiki/community help assume that your Umbraco installation is already a part of your existing site. In my case I need to reference my site directly to the new Umbraco installation, is this a simple case of importing the settings (such as DB connection string etc..) from the Umbraco Web.Config into my sites Web.Config or is there a better way to pull the content from an Umbraco installation without it being part of an existing site?

share|improve this question

2 Answers

Depending on what content you need. I would suggest creating some basic web services to provide an API for accessing your data from the umbraco site. Umbraco provides the base rest extensions that allow you to put up a web service easily. But you could also hook up an ashx file or something similar. I've had success using odata with an umbraco site.

share|improve this answer
Thanks, I'll have a look into that option - we are literally using Umbraco to create content for our site and not really using it to build up the site as such – CalicoWare Jan 22 at 16:57

You want to look at Umbraco /Base - more detail at the following url and the other pages referenced from here on how to work with Umbraco /Base:

http://our.umbraco.org/wiki/reference/umbraco-base

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.