CardioLog easily integrates personal user data into reports and provides advanced visitor segmentation capabilities by using existing user directories.
Additional user information, such as department, gender, and other profile data is retrieved by the User Categories Updates service from Active Directory attributes or SharePoint User Profiles by default. The User Categories Updates service can also retrieve the data from a custom source (any human resource management system or even custom databases), using a designated web service that supplies the user information.
The user information web service should be exposed by a web page which provides an XML string response. Follow this format:
<?xml version="1.0" encoding="utf-8" ?> <xs:schema id="CategoryXmlSchema" elementFormDefault="qualified" xmlns:mstns="http://tempuri.org/CategoryXmlSchema.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="tree"> <xs:complexType> <xs:sequence> <xs:element name="item" type="UserCategoryXmlNode" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="UserCategoryXmlNode"> <xs:sequence> <xs:element name="userName" type="xs:string" /> <xs:element name="categories" minOccurs="0" maxOccurs="1"> <xs:complexType> <xs:sequence> <xs:element name="categoryValue" type="categoryNode" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> <xs:complexType name="categoryNode"> <xs:sequence> <xs:element name="categoryName" type="xs:string" minOccurs="1" maxOccurs="1" /> <xs:element name="categoryValue" type="xs:string" minOccurs="1" maxOccurs="1" /> </xs:sequence> </xs:complexType> </xs:schema> |
Field Definitions:
<tree> <item> <userName>MyCompany\james</userName> <categories> <categoryValue> <categoryName>Region</categoryName> <categoryValue>West</categoryValue> </categoryValue> <categoryValue> <categoryName>Gender</categoryName> <categoryValue>Male</categoryValue> </categoryValue> </categories> </item> <item> <userName>MyCompany\taylor</userName> <categories> <categoryValue> <categoryName>Region</categoryName> <categoryValue>North</categoryValue> </categoryValue> <categoryValue> <categoryName>Gender</categoryName> <categoryValue>Female</categoryValue> </categoryValue> </categories> </item> </tree> |