I need to have a process or widget that every five minutes will check to see if there are any xlf files in the localization folder, and if any exist, will import them into Ektron. Is there a way within Ektron to have something scheduled.
Asked
Active
Viewed 212 times
3 Answers
2
I don't think there is any scheduler program inside Ektron.
To schedule a task you could look at using one of the following:
- Quartz.Net
- Command line programs called by Task Scheduler
Alternatively, you could look at using an Ektron plugin, which will get fired when certain Ektron events occur (e.g. content published). However, in my experience plugins/extensions are poorly supported and documented.

Spongeboy
- 2,232
- 3
- 28
- 37
-
Quartz.Net is a good suggestion. I couldn't remember what it was called. I'll agree that plugins weren't great, but I'm a big fan of the extension support in recent versions. – egandalf Feb 15 '13 at 17:57
-
What I am looking to do is programatically import content by checking the localization folder every X minutes. What is the best way to do that? I didn't see a localization API in the web services. – SaulR Feb 26 '13 at 03:06
2
You can try creating a Windows service to perform the scheduling.
Details on the localization API and how localization performed can be found at:
root\Workarea\controls\content\localization_uc.ascx.cs in your Ektron site.

Bisileesh
- 1,982
- 2
- 19
- 29
1
I'd recommend trying something similar to what Ken McAndrew did for an alias scheduler. Details here: Manual Alias Scheduler

egandalf
- 898
- 5
- 8