I'm just starting to play around with Orchard CMS. I like what I see so far, but I need to be able to create pages that display record details for data stored in another system. Does any one know if that is possible?

I have a SQL Server database that hold real estate property record information. This information gets displayed on the web. On that same website are informational content pages (FAQs, Contact Us, Home, etc...) What I would like to to is leverage the CMS portion of Orchard for the content pages. Then I would like to write a module using the Orchard that would get the real estate info, allow users to search parcels, and display detail pages for each parcel.

If you view the site http://www.sc-pa.com/search you can search by last name "smith" and select one record. That may help illustrate what I need Orchard to do.

link|improve this question

feedback

2 Answers

Yes, that is possible, but your scenario is way too vague to get into any specifics. Can you elaborate on exactly what you are trying to do: what does the external data look like, where is it stored, how do you want to integrate it into Orchard, do you need any integration with content types and parts, or with search, etc.

link|improve this answer
I have a similar situation to what Doug Chamberlain is asking. The data that I need to display is stored in an external SQL Server. I'd like to build a module that would connect to SQL Server and pull in property data to display on a page within Orchard. It would need to display the property data within a zone (i.e. the "content" zone). I'd like the surrounding zones to maintain their widgets and for the theme of the site to govern the look and feel of the property pages. I don't believe there would need to be content types or parts for this since the data would not be stored in Orchard. – Brian Behm Nov 15 '11 at 8:14
OK, well, you can do that. Just write a controller, and opt out of the Orchard ambient transaction for all your external SQL data access : using (new TransactionScope(TransactionScopeOption.Suppress)) – Bertrand Le Roy Nov 15 '11 at 21:04
feedback

One alternative is to expose ur data as web service or odata endpoint and then use jquery to do asynch call to get json data. Then ur home free.

Create a page and put the javascript in that or include a ref to js file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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