1

We have a standalone .net application, this application is nothing to do with Tridion implementation. But due to some strange suggestion from client we need to store some content (html fragment) in Tridion and publish it to broker, once this content is available in broker database we want to fetch it and show in .net application. Basically this content will a small block under right column e.g. like Login block (with user name password text box and some captions)

Is there any way to do it, also do we need to put storage config in .net applications config directory? We are using Tridion 2011 SP1

user1453602
  • 1,165
  • 5
  • 14

1 Answers1

1

The easiest way is to spin up the Tridion Content Delivery Web Service, which is based on OData, point it to your Tridion Database, and then grab the content from there from your other website.

I've written this article some time ago about how to get the web service up and running, it is focused on Java, but the steps are pretty similar for .NET. There is a prepackaged .NET web service you can just deploy on IIS, which then only needs the configuration part (cd_storage_conf.xml).

BTW - There is a Tridion-specific StackExchange site: http://tridion.stackexchange.com

Nuno Linhares
  • 10,214
  • 1
  • 22
  • 42