Dashboard > Tempo > ... > Documented Features > Atom Feeds > View
Tempo Log In   View a printable version of the current page.
Atom Feeds
Added by Alex Boisvert, last edited by Alex Boisvert on Jul 30, 2008

Atom Feeds

You can access atom feeds from the UI-FW, either using the alternate feed icon, in the main bar, or using the provided feeds button.
So far, the feeds URLs are something similar to:

We are using Atom Version 1.0 by default.
The feed content will look something like:

<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>IntalioFEEDID</id>
	<title type="text">Intalio Processes</title>
	<link href="" /><link href="" rel="self" />
	<author><name>intalio</name></author>
	<updated>2008-06-23T05:27:18.937Z</updated>
	<subtitle type="text">This is a feed for the following user:intalio\admin</subtitle>
	<category term="processes" />
	<entry>
	  <id>072e3db1-cbc7-4e3b-9a5f-e095a0425670</id>
	  <title type="text">Examples - Absence Request</title>
	  <updated>2008-06-23T05:27:19.727Z</updated>
	  <link 
            href="http://localhost:8080/xFormsManager/init ..." 
            title="Link to Examples - Absence Request">Link to Examples - Absence Request</link>
	</entry>
</feed>

We are using Apache Abdera under the hood, which has great support for server feeds and caching.

No configuration change is needed by default.
For reference, we are using the following spring simple configuration (again, does not need any changes for default usage):

    <import resource="tempo-formmanager.xml"/>
	
    <bean id="configuration" class="org.intalio.tempo.workflow.tms.feeds.Configuration" factory-method="getInstance">
        <property name="tmsService" value="http://localhost:8080/axis2/services/TaskManagementServices"/>
        <property name="tokenClient"><ref bean="tokenService"/></property>
    </bean>

    <bean id="tokenService" class="org.intalio.tempo.security.ws.TokenClient">
        <constructor-arg value="http://localhost:8080/axis2/services/TokenService"/>
    </bean>

Where:

  • form-manager config is used to resolve the URL to the proper form manager
  • tmsService is the Axis Service for retrieving tasks
  • tokenClient is the Axis Service for single sign on.

A short video explains how the feeds can be used.

Site powered by a free Open Source Project / Non-profit License (more) of Confluence - the Enterprise wiki.
Learn more or evaluate Confluence for your organisation.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 1.4.1 Build:#212 Jun 02, 2005) - Bug/feature request - Contact Administrators