Introduction to XML Applications

Size: px
Start display at page:

Download "Introduction to XML Applications"

Transcription

1 EMC White Paper Introduction to XML Applications Umair Nauman Abstract: This document provides an overview of XML Applications. This is not a comprehensive guide to XML Applications and is intended for an audience that has no previous knowledge of Documentum XML Applications. A basic understanding of XML is a prerequisite to this guide. Date 3/5/2008

2 Copyright 2005 EMC Corporation. All rights reserved. EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. THE INFORMATION IN THIS PUBLICATION IS PROVIDED AS IS. EMC CORPORATION MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND WITH RESPECT TO THE INFORMATION IN THIS PUBLICATION, AND SPECIFICALLY DISCLAIMS IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Use, copying, and distribution of any EMC software described in this publication requires an applicable software license. EMC 2, EMC, and EMC Documentum product names are trademarks of EMC Corporation. All other trademarks used herein are the property of their respective owners. All other brand names are trademarks or registered trademarks of their respective owners. XML Applications 2

3 What is XML? The following is the web definition for XML: XML (Extensible Markup Language) is a standard for creating markup languages which describe the structure of data. It is not a fixed set of elements like HTML, but rather, it is like SGML (Standard Generalized Markup Language) in that it is a meta-language, or a language for describing languages. XML enables authors to define their own tags. XML is a formal specification of the World Wide Web Consortium XML Defines content structure - how content is stored and categorized. Typically XML does not define formatting. One XML file might have a number of different formatting requirements, depending on where the content is needed. XML can be transformed into a number of desired formats like HTML, WML and News-ML. Transformation can be done using XSLT or software programs. XSLT stands for extensible Stylesheet Language Transformation. It is a language that allows Developers to take an XML source file and transform it into another text-based output format. CSS stands for Cascading Style Sheets. It can also be used to turn XML into HTML. Some common terms used with XML DTD: (Document Type Definition) A DTD is the formal definition of the elements, structures, and rules for marking up a given type of SGML document. You can store a DTD at the beginning of a document or externally in a separate file. DTD was the first means of specifying XML syntax. DTD is written in SGML which is a precursor to XML. DTD is still frequently used today. Schemas: A schema is a description of the structure and rules a document must satisfy for an XML document type. It also includes the formal declaration of the elements that make up a document. If and XML file does not obey the syntax of its associated DTD or Schema, it is not valid. XSLT: Extensible stylesheet language transformation (XSLT) is a language for transforming XML documents into other XML documents. XSLT is designed for use as part of XSL, which is a stylesheet language for XML. XPath: A language that describes a way to locate and process items in XML documents by using an addressing syntax based on a path through the document's logical structure or hierarchy DOM: Document Object Model (DOM) is a form of representation of structured documents as an objectoriented model. DOM is the official World Wide Web Consortium (W3C) standard for representing structured documents in a platform- and language-neutral manner. The DOM is also the basis for a wide range of application programming interfaces, some of which are standardized by the W3C. SAX: Simple API for XML. SAX is an Event-driven programmatic access to the XML file. It provides a simple Java interface useable by many Java parsers. SAX parsers and interfaces are included in the java API org.xml.sax.* What is a Documentum XML Application? An XML Application is a repository folder (dm_xml_application) containing the following: - XML ApplicationConfiguration File o XML File named MyXMLApp in System/Applications/MyXMLApp o Defines how XML documents are divided into smaller chunks upon import or checkin o Sets properties on those chunks (object type, location, other) XML Applications 3

4 o Defines how links and entity references are handled - Document Type Definition o Located in System/Applications/MyXMLApp o Used to calidate the XML files being imported or checked in - XSL style sheets o Located in System/Applications/MyXMLApp o Used for transforming the XML document - Application Support Documents o Contains supporting documents (E.g. Cascading Style Sheets used by XML Editors) o Located in a folder within System/Applications/MyXMLApp XML documents in the repository are managed through Documentum XML Application. A documentum XML Application contains the rules for validating an XML document and managing it during repository operation. You can also store style sheets and other supporting documents along with and XML application. XML applications are user-defined, to reflect the needs and rules of your enterprise. A repository can have multiple XML applications. An XML application folder contains and identifies through its properties the documents that define a particular XML application. XML application folders are a subtype of dm_folder. Properties defined for the application folders are used to determine which application is used to process a particular document. XML application folders are stored in the repository in System/Applications There are two main ways to validate XML documents: DTD or Schema. In Documentum, XML Applications are used to automate rules for importing, storing and organizing content. The simplest XML Application only needs to have a XML Configuration file (of type dm_xml_config) and a dtd file (of type dm_document). Both of these objects need to be in a XML Application folder (type dm_xml_application) in the \System\Applications folder. More complex XML Applications can have multiple dtd files, stylesheets, html files, and entity files. These will usually be stored in the Application Support Documents folder under the XML Application folder. These files are optional and are only used for viewing and checkout operations. They aren t necessary for proper validation. Until WebTop was introduced, DTC was the only client that supported XML processing. Documentum also integrates with two third party XML editing applications: Arbortext Epic and Corel (SoftQuad) XMetal. The integrations are maintained and supported by the third party vendors directly. You can download them from our Download Center, but the most recent versions are available directly from the third party vendors. An XML application can control how XML documents are stored, imported, checked in, exported, and checked out of the repository. It can set permissions, set a binding rule, or attach a lifecycle to the XML content. It can assign metadata to repository objects based on information extracted from the XML, external variables, or expressions set by custom Java code. This saves the user from doing these things manually. In a prototypical XML application that chunks XML content, the following is the behavior that a repository user might expect to see when checking documents in and out of a repository: After importing or checking in a single XML document, a user sees the document represented in the repository as a virtual document, with a treelike structure showing the XML container as the root and any objects that were chunked by the XML application as child components. When a user checks out this document, the document is reassembled into a single document in the user s checkout directory. Upon checkin, the document is once again chunked (accounting for any changes to the document) and appears again as a virtual document in the repository. XML Applications 4

5 If the DTD or W3C Schema is managed by the XML application, the user does not have to worry about associating a checked-out document with a DTD or W3C Schema, since it will download to the user s system along with the document, and the document s declaration will be patched to point to that location. Users can share XML content by viewing or checking out the chunks or linked files (such as a graphic) they want to share and copying them into their documents, or by using one of the Documentum integrations with Arbortext Epic or Corel XMetal. Upon import or checkin of the document, the content is automatically shared. Why should you use XML Applications? Following is a list of benefits of using Documentum XML Applications for Content Management: You want separate groups in the company to manage separate chunks of content, with different permissions assigned to each chunk. You want to share chunks of content with other authors or departments in a non-proprietary file format. You want to reuse chunks of content in more than one document or publish it to more than one location. You want to automate processing of XML content chunks using features available in the standard EMC Documentum content management system, such as source control, metadata, document lifecycles, workflows, and security. You use XML as a wrapper for non-xml documents in order to assign metadata to those documents in the repository. You want to create XML files that can be used to create folders, assign properties, and so on, without creating any content chunks. You want to construct Web pages dynamically with XML content chunks. Default XML Application The Default XML Application is a simple application that handles XML documents if there is not a matching XML Application. The Default XML Application is located in the folder System/Applications/Default XML Application and has only one rule: How to recognize and process externally parsed entities. You can modify the Default XML Application Configuration file for this default to add you own general processing rules. An XML Application Configuration file MUST include a DTD reference to config.dtd or config.5.x.dtd Defining a Chunk Two advantages of managing XML content in Documentum are the ability to retain XML content in configurable chunks for reuse and the enforcement of distinct business processes on specific parts of the XML content. Documentum XML applications can be configured to chunk on any element tag in the document. You can also define a context for the elements that will trigger a chunking rule: only in a particular hierarchical structure, only with a particular attribute value, or only when it is the nth occurrence of a parent element. The configuration file is used to determine which elements in the XML file will be defined as Chunks in the repository. If several chunks are created for a single XML document, each of those chunks will be repository objects organized as a Virtual Document. Properties, such as object type, location, lifecycle, permissions set and other metadata for the chunks are also defined in the Configuration file. Documentum creates a separate repository object for content within the opening and closing tag of any element designated in the configuration file as a chunking element. For example, suppose you want the XML application to chunk all <Head1> elements in an XML document. This means that all content in the document occurring within any matched set of opening and closing <Head1> tags (<Head1> - </Head1>) is XML Applications 5

6 saved in the repository as a single object. Chunks are nested in the virtual document just as they are nested in the original XML document. For example, if <sect2> elements are nested under <sect1> element in the XML document, and you chunk both <sect1> and <sect2> elements, then the <sect2> chunks will be nested under the <sect1> chunks in the virtual document in the repository. The appropriate level of chunking for a particular kind of XML document depends on your manageability and reuse requirements. Smaller chunks may increase the opportunity for reuse but will also lead to slower performance when working with documents. You can also decide not to create any chunks but use the XML application to perform other automated tasks, such as assigning repository properties to a document. Benefits of Virtual Documents XML applications store chunked XML documents as virtual documents in the repository, which offer the following advantages: Both the entire virtual document and each separate component can be handled as individual documents in the repository. With a client that displays virtual documents, users can view the structure of the virtual document in the repository, the location of a particular chunk, and the other documents in which that chunk is used. Users can check out either an entire XML document or individual virtual document components (corresponding to chunked XML objects). Individual components of virtual documents can be linked to other locations or shared by other virtual documents. Content updated once appears everywhere. Components in the same virtual document can have different permissions and metadata.. You can attach a document lifecycle to a virtual document or any of its components. An entire virtual document or any individual component can be inserted as a package in a workflow. If you do not want content of a component to be updated in a particular virtual document, you can set a binding rule, which controls the version of the component that is used within that virtual document. You can also assign meaningful version labels and set the view to fix the display of all components to that version. You can create an assembly of a virtual document, which is useful for creating a snapshot of the structure and content of the XML document at any point in time. These assemblies can be stored in the repository and retrieved at any time while the current document continues to be updated. When assemblies are created for XML documents, they are always created as frozen, since editing virtual document structure directly in the repository is not allowed for XML documents. All structural changes should be made by editing the document itself. XML Applications 6

7 XML Application Architecture A folder of object type dm_xml_application, which can be created in any location in a repository, but usually is installed into the System\Applications folder. (XML applications created by Documentum Application Builder are always installed to this folder.) A configuration file of type dm_xml_config. The functionality available through the XML application configuration file is controlled by the version of the Documentum configuration DTD that you use. A folder called Application Support Documents, which can contain any documents intended for download to local systems along with the DTD or W3C Schema. This can include files such as CSS, FOSI, and stylesheets. A folder called XML Sample Documents, which will open in the XML Configuration Editor that is supplied with Documentum Application Builder. Any other folders that you choose to create manually in order to store associated files that will not be downloaded to local system. How an XML Application is detected When a document is imported or checked in to the Repository, there is an algorithm used to determine which XML application to apply to the document. The XML Application is specified in the processing instruction in the prolog of the XML document of the following type: <?dctm xml_app="application_name"?> If only a single XML application matches, that application is used. If multiple applications match the user is presented with a dialog listing the choices. If the user fails to make a choice or if the choice is being made programmatically and no choice is specified in the application, the first match returned by the query is used. The following processing instruction will halt the algorithm: <?dctm xml_app="ignore"?> XML Applications 7

8 Add this line if you do not want XML processing to occur for a particular file. This effectively turns XML processing off. This is the only way currently to turn XML processing off. The dtd System ID, dtd Public ID and root element are obtained from the XML document itself. We query for XML applications that match. If none of the above apply, then the Default XML Application is used. Checklist for creating XML Applications through DAB Information or File XML application name XML application configuration file DTD file name (system identifier) Public identifier Supporting files DTD member files Schema file name Schema members Root element names XML sample documents Required or Optional Required Required Required if your DTD is managed by an XML application. Required if public identifier is used in XML documents and DTD is managed by XML application Required for DTD or schema members if managed by the XML application; otherwise optional Required if declared in the DTD and DTD is managed by XML application. Required if your schema is managed by XML application. Required if referenced from the schema Required to determine which XML applications will apply Optional Where to find Same name as XML application folder. Specified in <!DOCTYPE> declaration of XML documents to be processed by the application. Specified in <!DOCTYPE> declaration of XML documents to be processed by the application. External parameter entities or schema members for a managed DTD or schema (required); any other files such as CSS, FOSI, XSL stylesheets (optional) Declared in DTD as external parameter entities Name of W3C schema, if used in XML documents. Specified by the <import> element in the schema. All elements that can serve as the root element of the XML document. XML documents in the /System/Applications/ docapp_name/xml_app_name/ XML Sample Documents folder in the repository. docapp_name is the name of the DocApp in which the XML Applications 8

9 XML application resides and xml_app_name is the name of the XML application. Tasks to perform before creating an XML Application Before creating your XML application, perform these tasks so that you will have a valid XML application and all objects will be correctly installed into the target Repositories (if you create a DocApp archive to install on other Repositories). To make sure that your XML application is valid and all objects will be correctly installed into the target Repositories: 1. Insert all objects specified in the XML application configuration file into the DocApp. Performing this step makes your DocApp portable. 2. Make sure that all initial states specified in the XML application configuration file exist in the corresponding document lifecycles. 3. Make sure that no document lifecycles that are specified in the XML application configuration file with the same names exist in the same location. Performing this step ensures that the XML application uses the correct document lifecycle; otherwise, if you have duplicate document lifecycles, the XML application might not use the correct one. 4. You can also specify the object ID of the appropriate document lifecycle in the XML application configuration file, but when you install it to another Repository, you will need to change its object ID to the new one. 5. Make sure that the document lifecycles specified in the XML application configuration file are the originals or copies--do not link them (links might not be installed in target Repositories). 6. Make sure that the alias set name and the alias names specified in the XML application configuration file are the same names as those included in the DocApp; alias names are not validated. How to: Create an XML Application using DAB For D6, Documentum Composer has to be used for XML application. Please refer to the Composer documentation for details. You can create and XML Application using Documentum Application Builder or you can create it Manually using Documentum Desktop. Here is a list of steps you need to take to build an XML Application through DAB: 1) Open Documentum Application Builder and select a new DocApp. 2) Choose Insert XML Application. 3) In the Create XML Application dialog box s General tab, specify a name for the XML application in the Name field. The XML application name must be unique in the Repository. The name of the application must be the same as the XML application configuration and the value of the <name> element (which is a child of the <application> element) in the XML application configuration file. 4) Create an XML application configuration file for the XML application by selecting one of these options: Create a new configuration file from template Use an existing An XML application configuration file with minimal configuration information and based on the standard Documentum XML application configuration template will be created. The XML application configuration file name and value of the <name> element (which is a child of the <application> element) in the XML application configuration file must be the same as the XML application name. In the XML application configuration file you will need to develop the rules for processing your XML documents. Click the Browse button to find and select an XML application XML Applications 9

10 configuration file from the Repository Use an existing configuration file from the local file system configuration file in the Repository. The XML application configuration file will be copied into the DocApp folder and renamed to the name of the XML application. If you have not already done so, you must change the value of the <name> element (which is a child of the <application> element) in the XML application configuration file to the name of the XML application. In the XML application configuration file you might need to modify the rules for processing your XML documents. Click the Browse button to find and select an XML application configuration file on your local file system. The XML application configuration file will be checked in to the DocApp folder and renamed to the name of the XML application. If you have not already done so, you must change the value of the <name> element (which is a child of the application> element) in the XML application configuration file to the name of the XML application. In the XML application configuration file you might need to modify the rules for processing your XML documents. 5) Check or uncheck the Validate the DocApp before checking in the XML application option. Checking this option specifies that your XML application will be validated against its XML application configuration file before it is checked in; otherwise, it will not be validated before it is checked in. However, you can manually validate it at a later time by selecting the XML application and choosing Tools XML Application Validate. You might not want to check this option when you know that the XML application configuration file is invalid (for example, when you choose to use an existing configuration file and the <application><name> element is not the same name as the XML application) and you will be updating it later. 6) Specify values and select options on the Validation, XML App Detection, and Supporting Folder tabs. 7) To validate (if you chose to validate it) and check in the XML application, click OK. Tip: To make sure that you have entered a unique XML application name and selected an XML application configuration file before validating and checking in the XML application, click Apply. 8) Confirm your XML application specifications. Before creating the XML application, Application Builder displays a dialog box that describes the options you have specified for the XML application. To confirm the options and create the XML application files and folders, click OK. To cancel the creation of the XML application files and folders, click Cancel. For More details on Creating XML Applications through DAB Please refer to DAB User Guide. Cellphone XML Application In this section we will discuss the cell phone Sample XML application that is available for download from After installing the cell phone application we can review the directory structure in the Repository as demonstrated in the following screenshot: XML Applications 10

11 As you can see, all XML application are installed in the System Cabinet under the Applications folder. The Application Support Documents folder exists under a Folder with the same name as the XML application name. Here is what your XML content will look like after importing an XML document and chunking: In this case we have imported an XML document that contains descriptions of various cell phone models. The chunking rules have been set up to create a new object for each cell phone instance as you can see in the screenshot above. For complete source code of cell phone application, please refer to XML Application Developers Guide. For detailed steps for creating and XML Application using Documentum Application Builder, please refer to the Documentum Application Builder User Guide. It may be worth mentioning that you can use the IDfValidate Operation in DFC to validate and XML document against a DTD. It is also possible to explicitly specify the name of an XML application in a DFC Import operation using the following method call: IDfImportNode.setXMLApplicationName( "XML Application Name" ); You can turn off XML processing on the node and all its descendants by calling nodeimport.setxmlapplicationname("ignore"); XML Applications 11

12 For more details please refer to DFC Developers Guide. How To: Troubleshoot XML Applications Remember that you do not need to be an XML expert to troubleshoot XML apps. It certainly helps though. We don t write XML Config files or create XML Applications for customer. Refer to Consulting if they need assistance. XML Application problems usually happen during import or check in. Keep in mind that the DFC does almost all the work with XML Application processing. Following are some questions you should ask when troubleshooting XML Applications: What XML Application are being used? If it s a custom XML application, can the same content be imported against the Default XML Application? The Default XML Application: - Takes care of external parsed entities. - It does no chunking. - It creates no virtual document structure. - We do not support changing the Default XML Application. Make sure the correct types are used if the application was created manually. The folder needs to be of type dm_xml_application, not dm_folder. The XML config file needs to be of the type dm_xml_config. Is the XML application configuration file located in the XML application folder? Does it have the same name as the XML application folder? Can the XML be validated outside the Repository? For example, by opening it up in Internet Explorer. If you are using a DTD to validate against the XML document, does the DTD file appear in the XML application folder? Does the XML Application folder correctly reference the DTD file on the system_id attribute. Verify that the DTD file shows as filename.dtd in the Repository. This may be a likely cause of the problem if the file was created manually. Is the name of the XML application folder unique in the Repository? The most frequent problem is that the XML application has not been set up to manage the dtd correctly. Even if an XML application is not requiring that the XML document be valid, the dtd still needs to be accessible. In order to have the dtd file path patched in the exported/checked out document, the DTD system ID attribute must be set on the XML application folder. The object name of the DTD stored in the XML application folder must be the DTD file name. - <!DOCTYPE book SYSTEM book.dtd > - DTD object must be named book.dtd and the dtd system ID property on the XML application folder must be book.dtd Find out if it had ever worked in the past. If so, were any changes made to the XML config file or DTD recently? XML Spy is not a supported XML Editor. It s known to add hidden characters to the content of the file that we have problems with. You can assign an ACL to an object as part of XML processing. XML Applications support public and private ACL s. Most of the XML processing is done on the local client machine by the DFC. XML processing is very memory hungry, so make sure the machine has plenty of free memory.. Large XML documents can take over 30 minutes to import depending on the amount of processing/chunking the customer is doing. The only recommendation is to do less chunking. Useful Support Notes: Support Note What can be the cause of XML docs not getting processed by XML applications? XML Applications 12

13 Support Note Why does my xml not get chunked when I try to perform a checkin though DFC? Support Note Is it possible in an XML application to restrict or to check the encoding of the XML document that is being imported? Support Note How does Documentum determine which XML Application is applicable? Support Note How can I check the xalan parser version used? Support Note Why can I only import an XML document once without error? Support Note Why do I get a hexadecimal value of text arguments when importing an xml file? Support Note Does the XML Application feature use SAX, DOM or both? Support Note What are the new classes in DFC for XML? Support Note How can I import XML documents that are not well formed without receiving an error? Support Note How do I install Default XML Application manually? Support Note Why do I get an error saying that it cannot find my DTD file when I import an XML file against my custom XML Application? Questionnaire 1) What are some of the required components and properties of an XML Application 2) Describe some of the advantages of using XML Application 3) What is a DTD? What is a Schema? 4) Under which folder path in the Repository do XML Applications exist? References Definition of XML: XML Development Guide DAB User Guide DFC Advanced Training Guide XML Applications 13

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Web Publisher Administration Guide

Web Publisher Administration Guide Web Publisher Administration Guide Version 5.3 SP4 December 2006 Copyright 1994-2006 EMC Corporation. All rights reserved. Table of Contents Preface... 13 Chapter 1 Introduction... 15 Chapter 2 Sequence

More information

EMC Documentum Content Services for SAP iviews for Related Content

EMC Documentum Content Services for SAP iviews for Related Content EMC Documentum Content Services for SAP iviews for Related Content Version 6.0 Administration Guide P/N 300 005 446 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000

More information

EMC Documentum Repository Services for Microsoft SharePoint

EMC Documentum Repository Services for Microsoft SharePoint EMC Documentum Repository Services for Microsoft SharePoint Version 6.5 SP2 Installation Guide P/N 300 009 829 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

EMC Documentum Business Process Suite

EMC Documentum Business Process Suite EMC Documentum Business Process Suite Version 6.5 SP1 Sample Application Tutorial P/N 300-008-170 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Audit Management for EMC Documentum Web Development Kit 6.7-based Applications

Audit Management for EMC Documentum Web Development Kit 6.7-based Applications White Paper Audit Management for EMC Documentum Abstract This white paper explains the process of enabling, searching, and purging audit on specific types of objects in Web Development Kit-based applications.

More information

Terms and Definitions for CMS Administrators, Architects, and Developers

Terms and Definitions for CMS Administrators, Architects, and Developers Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page

More information

Getting Started in Arbortext and Documentum. Created by Michelle Partridge Doerr April 21, 2009

Getting Started in Arbortext and Documentum. Created by Michelle Partridge Doerr April 21, 2009 Getting Started in Arbortext and Documentum Created by Michelle Partridge Doerr April 21, 2009 Table of Contents 1.0 Introduction to the CMS... 4 1.1 Introduction to Arbortext... 4 1.2 Introduction to

More information

Common Questions and Concerns About Documentum at NEF

Common Questions and Concerns About Documentum at NEF LES/NEF 220 W Broadway Suite B Hobbs, NM 88240 Documentum FAQ Common Questions and Concerns About Documentum at NEF Introduction...2 What is Documentum?...2 How does Documentum work?...2 How do I access

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

Advanced XML Seminar. Objective. Personal Introductions Jeff Rosler. Agenda. XML Application Architecture Core Documentum/XML Features:

Advanced XML Seminar. Objective. Personal Introductions Jeff Rosler. Agenda. XML Application Architecture Core Documentum/XML Features: 1 Objective Advanced XML Seminar Jeff Rosler Flatirons Solutions Describe tools and methods to handle common problems found in consulting projects implementing XML Solutions with Documentum DevCon 2004

More information

Working with the ERP Integration Service of EMC Documentum Process Services for SAP

Working with the ERP Integration Service of EMC Documentum Process Services for SAP Working with the ERP Integration Service of EMC Documentum Process Services for SAP Applied Technology Abstract EMC Documentum Process Services for SAP is a new product that integrates with EMC Documentum

More information

Documentum Content Management Foundations EMC Proven Professional Certification Exam E20-120 Study Guide

Documentum Content Management Foundations EMC Proven Professional Certification Exam E20-120 Study Guide Documentum Content Management Foundations EMC Proven Professional Certification Exam E20-120 Study Guide Pawan Kumar Chapter 3. "Objects and Types" In this package, you will find: A Biography of the author

More information

Using EMC Documentum with Adobe LiveCycle ES

Using EMC Documentum with Adobe LiveCycle ES Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

EMC Documentum Content Services for SAP Document Controllers

EMC Documentum Content Services for SAP Document Controllers EMC Documentum Content Services for SAP Document Controllers Version 6.0 User Guide P/N 300 005 439 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright

More information

Data Integration through XML/XSLT. Presenter: Xin Gu

Data Integration through XML/XSLT. Presenter: Xin Gu Data Integration through XML/XSLT Presenter: Xin Gu q7.jar op.xsl goalmodel.q7 goalmodel.xml q7.xsl help, hurt GUI +, -, ++, -- goalmodel.op.xml merge.xsl goalmodel.input.xml profile.xml Goal model configurator

More information

XSLT Mapping in SAP PI 7.1

XSLT Mapping in SAP PI 7.1 Applies to: SAP NetWeaver Process Integration 7.1 (SAP PI 7.1) Summary This document explains about using XSLT mapping in SAP Process Integration for converting a simple input to a relatively complex output.

More information

EMC Documentum Documentum Foundation Classes

EMC Documentum Documentum Foundation Classes EMC Documentum Documentum Foundation Classes Version 6.7 SP1 Release Notes EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com EMC believes the information in this

More information

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide White Paper EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide A Detailed Review Abstract This white paper is a step-by-step setup guide for users who would like to utilize

More information

Agents and Web Services

Agents and Web Services Agents and Web Services ------SENG609.22 Tutorial 1 Dong Liu Abstract: The basics of web services are reviewed in this tutorial. Agents are compared to web services in many aspects, and the impacts of

More information

EMC Documentum Content Services for SAP Repository Manager

EMC Documentum Content Services for SAP Repository Manager EMC Documentum Content Services for SAP Repository Manager Version 6.0 Installation Guide P/N 300 005 500 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com

More information

EMC Documentum Connector for Microsoft SharePoint

EMC Documentum Connector for Microsoft SharePoint EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

EMC Documentum Interactive Delivery Services Accelerated Overview

EMC Documentum Interactive Delivery Services Accelerated Overview White Paper EMC Documentum Interactive Delivery Services Accelerated A Detailed Review Abstract This white paper presents an overview of EMC Documentum Interactive Delivery Services Accelerated (IDSx).

More information

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS White Paper TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS Abstract This white paper explains how to diagnose and troubleshoot issues in the RSA Access Manager single sign-on

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

Developing Web Views for VMware vcenter Orchestrator

Developing Web Views for VMware vcenter Orchestrator Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Developers Guide. Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB. Version: 1.3 2013.10.04 English

Developers Guide. Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB. Version: 1.3 2013.10.04 English Developers Guide Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB Version: 1.3 2013.10.04 English Designs and Layouts, How to implement website designs in Dynamicweb LEGAL INFORMATION

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Exchanger XML Editor - Canonicalization and XML Digital Signatures

Exchanger XML Editor - Canonicalization and XML Digital Signatures Exchanger XML Editor - Canonicalization and XML Digital Signatures Copyright 2005 Cladonia Ltd Table of Contents XML Canonicalization... 2 Inclusive Canonicalization... 2 Inclusive Canonicalization Example...

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Copyright 2013 EMC Corporation. All Rights Reserved.

Copyright 2013 EMC Corporation. All Rights Reserved. White Paper INSTALLING AND CONFIGURING AN EMC DOCUMENTUM CONTENT TRANSFORMATION SERVICES 7.0 CLUSTER TO WORK WITH A DOCUMENTUM CONTENT SERVER 7.0 CLUSTER IN SECURE SOCKETS LAYER Abstract This white paper

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

XML WEB TECHNOLOGIES

XML WEB TECHNOLOGIES XML WEB TECHNOLOGIES Chakib Chraibi, Barry University, cchraibi@mail.barry.edu ABSTRACT The Extensible Markup Language (XML) provides a simple, extendable, well-structured, platform independent and easily

More information

Content Management Implementation Guide 5.3 SP1

Content Management Implementation Guide 5.3 SP1 SDL Tridion R5 Content Management Implementation Guide 5.3 SP1 Read this document to implement and learn about the following Content Manager features: Publications Blueprint Publication structure Users

More information

TIBCO Hawk SNMP Adapter Installation

TIBCO Hawk SNMP Adapter Installation TIBCO Hawk SNMP Adapter Installation Software Release 4.9.0 November 2012 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR

More information

Last Week. XML (extensible Markup Language) HTML Deficiencies. XML Advantages. Syntax of XML DHTML. Applets. Modifying DOM Event bubbling

Last Week. XML (extensible Markup Language) HTML Deficiencies. XML Advantages. Syntax of XML DHTML. Applets. Modifying DOM Event bubbling XML (extensible Markup Language) Nan Niu (nn@cs.toronto.edu) CSC309 -- Fall 2008 DHTML Modifying DOM Event bubbling Applets Last Week 2 HTML Deficiencies Fixed set of tags No standard way to create new

More information

DCA. Document Control & Archiving USER S GUIDE

DCA. Document Control & Archiving USER S GUIDE DCA Document Control & Archiving USER S GUIDE Decision Management International, Inc. 1111 Third Street West Suite 250 Bradenton, FL 34205 Phone 800-530-0803 FAX 941-744-0314 www.dmius.com Copyright 2002,

More information

Document Management User Guide

Document Management User Guide IBM TRIRIGA Version 10.3.2 Document Management User Guide Copyright IBM Corp. 2011 i Note Before using this information and the product it supports, read the information in Notices on page 37. This edition

More information

Extensible Markup Language (XML): Essentials for Climatologists

Extensible Markup Language (XML): Essentials for Climatologists Extensible Markup Language (XML): Essentials for Climatologists Alexander V. Besprozvannykh CCl OPAG 1 Implementation/Coordination Team The purpose of this material is to give basic knowledge about XML

More information

Sage CRM. Sage CRM 2016 R1 Mobile Guide

Sage CRM. Sage CRM 2016 R1 Mobile Guide Sage CRM Sage CRM 2016 R1 Mobile Guide Contents Chapter 1: Introduction to Sage CRM Mobile Solutions 1 Chapter 2: Setting up Sage CRM Mobile Apps 2 Prerequisites for Sage CRM mobile apps 3 Enabling users

More information

StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization

StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization Version 1.1 2/10/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted

More information

Novell ZENworks 10 Configuration Management SP3

Novell ZENworks 10 Configuration Management SP3 AUTHORIZED DOCUMENTATION Software Distribution Reference Novell ZENworks 10 Configuration Management SP3 10.3 November 17, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties

More information

EMC DOCUMENTUM BUSINESS OBJECT FRAMEWORK

EMC DOCUMENTUM BUSINESS OBJECT FRAMEWORK White Paper EMC DOCUMENTUM BUSINESS OBJECT FRAMEWORK Abstract This white paper provides a general overview of the Business Object Framework (BOF). It broadly outlines the fundamentals of BOF, types of

More information

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

IBM Rational Rhapsody Gateway Add On. CaliberRM Coupling Notes

IBM Rational Rhapsody Gateway Add On. CaliberRM Coupling Notes CaliberRM Coupling Notes Rhapsody IBM Rational Rhapsody Gateway Add On CaliberRM Coupling Notes License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system,

More information

An XML Based Data Exchange Model for Power System Studies

An XML Based Data Exchange Model for Power System Studies ARI The Bulletin of the Istanbul Technical University VOLUME 54, NUMBER 2 Communicated by Sondan Durukanoğlu Feyiz An XML Based Data Exchange Model for Power System Studies Hasan Dağ Department of Electrical

More information

FileMaker Server 9. Custom Web Publishing with PHP

FileMaker Server 9. Custom Web Publishing with PHP FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,

More information

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data Microsoft Business Contact Manager Version 2.0 New to Product Module 4: Importing and Exporting Data Terms of Use 2005 Microsoft Corporation. All rights reserved. No part of this content may be reproduced

More information

Overview of DatadiagramML

Overview of DatadiagramML Overview of DatadiagramML Microsoft Corporation March 2004 Applies to: Microsoft Office Visio 2003 Summary: This document describes the elements in the DatadiagramML Schema that are important to document

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

Drupal CMS for marketing sites

Drupal CMS for marketing sites Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit

More information

Managing XML Documents Versions and Upgrades with XSLT

Managing XML Documents Versions and Upgrades with XSLT Managing XML Documents Versions and Upgrades with XSLT Vadim Zaliva, lord@crocodile.org 2001 Abstract This paper describes mechanism for versioning and upgrding XML configuration files used in FWBuilder

More information

User Application: Design Guide

User Application: Design Guide www.novell.com/documentation User Application: Design Guide Designer for Identity Manager Roles Based Provisioning Tools 4.0.2 June 15, 2012 Legal Notices Novell, Inc. makes no representations or warranties

More information

EMC Documentum Content Services for SAP CRM Usage and Future Prospects

EMC Documentum Content Services for SAP CRM Usage and Future Prospects EMC Documentum Content Services for SAP CRM Usage and Future Prospects A Detailed Review Abstract The EMC Documentum Content Services for SAP (CSSAP) application integrates the Documentum content management

More information

Chapter 19: XML. Working with XML. About XML

Chapter 19: XML. Working with XML. About XML 504 Chapter 19: XML Adobe InDesign CS3 is one of many applications that can produce and use XML. After you tag content in an InDesign file, you save and export the file as XML so that it can be repurposed

More information

Documentum Content Distribution Services TM Administration Guide

Documentum Content Distribution Services TM Administration Guide Documentum Content Distribution Services TM Administration Guide Version 5.3 SP5 August 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introducing

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

ecopy Connector for EMC Documentum

ecopy Connector for EMC Documentum ecopy Connector for EMC Documentum Version 4.0 for ecopy ShareScan OP Administrator s Guide Part Number: 73-00218 (4/2007) Licensing, Copyright, and Trademark Information The information in this document

More information

SELF SERVICE RESET PASSWORD MANAGEMENT CREATING CUSTOM REPORTS GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT CREATING CUSTOM REPORTS GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT CREATING CUSTOM REPORTS GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted

More information

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore

More information

XML: extensible Markup Language. Anabel Fraga

XML: extensible Markup Language. Anabel Fraga XML: extensible Markup Language Anabel Fraga Table of Contents Historic Introduction XML vs. HTML XML Characteristics HTML Document XML Document XML General Rules Well Formed and Valid Documents Elements

More information

Developing XML Solutions with JavaServer Pages Technology

Developing XML Solutions with JavaServer Pages Technology Developing XML Solutions with JavaServer Pages Technology XML (extensible Markup Language) is a set of syntax rules and guidelines for defining text-based markup languages. XML languages have a number

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

Developing a Documentum Web Application. Developing a Documentum Web Application Featuring Documentum Web Development Kit 4.2

Developing a Documentum Web Application. Developing a Documentum Web Application Featuring Documentum Web Development Kit 4.2 Developing a Documentum Web Application Featuring Documentum Web Development Kit 4.2 1 Table of Contents OVERVIEW...4 USER INTERFACE DEVELOPMENT...4 1.0 WEB DEVELOPMENT KIT (WDK)...4 1.1 PRODUCT GOALS...

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX White Paper ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX Abstract This white paper explains how you can use the IBM Tivoli Access Manager for e-business WebSEAL

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

Novell Identity Manager

Novell Identity Manager Password Management Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 Password Management Guide Legal Notices Novell, Inc. makes no representations

More information

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager Rational Reporting Module 3: IBM Rational Insight and IBM Cognos Data Manager 1 Copyright IBM Corporation 2012 What s next? Module 1: RRDI and IBM Rational Insight Introduction Module 2: IBM Rational Insight

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

EMC Documentum xcelerated Composition Platform

EMC Documentum xcelerated Composition Platform EMC Documentum xcelerated Composition Platform Version 6.5 SP2 Grants Management Sample Application Technical Reference Guide P/N 300-009-604 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103

More information

Semistructured data and XML. Institutt for Informatikk INF3100 09.04.2013 Ahmet Soylu

Semistructured data and XML. Institutt for Informatikk INF3100 09.04.2013 Ahmet Soylu Semistructured data and XML Institutt for Informatikk 1 Unstructured, Structured and Semistructured data Unstructured data e.g., text documents Structured data: data with a rigid and fixed data format

More information

Help Desk Email Templates User s Manual

Help Desk Email Templates User s Manual Help Desk Email Templates User s Manual Welcome... 2 Configuring the Add-in... 3 Help Desk Email Templates Settings... 3 Troubleshooting... 4 Help Desk Email Templates Copyright 2012 Sperry Software Inc.

More information

Rational Team Concert. Quick Start Tutorial

Rational Team Concert. Quick Start Tutorial Rational Team Concert Quick Start Tutorial 1 Contents 1. Introduction... 3 2. Terminology... 4 3. Project Area Preparation... 5 3.1 Defining Timelines and Iterations... 5 3.2 Creating Team Areas... 8 3.3

More information

Adeptia Suite 6.2. Application Services Guide. Release Date October 16, 2014

Adeptia Suite 6.2. Application Services Guide. Release Date October 16, 2014 Adeptia Suite 6.2 Application Services Guide Release Date October 16, 2014 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 Document Information DOCUMENT INFORMATION

More information

Process Integrator Deployment on IBM Webspher Application Server Cluster

Process Integrator Deployment on IBM Webspher Application Server Cluster White Paper Process Integrator Deployment on IBM Webspher Application Server Cluster A user guide for deploying Process integrator on websphere application server 7.0.0.9 cluster Abstract This paper describes

More information

Arbortext 6.1. Curriculum Guide

Arbortext 6.1. Curriculum Guide Arbortext 6.1 Curriculum Guide Live Classroom Curriculum Guide Authoring using Arbortext Editor 6.1 Authoring for DITA using Arbortext Editor 6.1 Using Arbortext Styler 6.1 Authoring using Arbortext Editor

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Concrete uses of XML in software development and data analysis.

Concrete uses of XML in software development and data analysis. Concrete uses of XML in software development and data analysis. S. Patton LBNL, Berkeley, CA 94720, USA XML is now becoming an industry standard for data description and exchange. Despite this there are

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1 Contents Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1 Time for action - Viewing the mobile sample site 2 What just happened 4 Time for Action - Mobile device redirection

More information

Teamcenter s manufacturing process management 8.3. Report Generator Guide. Publication Number PLM00064 E

Teamcenter s manufacturing process management 8.3. Report Generator Guide. Publication Number PLM00064 E Teamcenter s manufacturing process management 8.3 Report Generator Guide Publication Number PLM00064 E Proprietary and restricted rights notice This software and related documentation are proprietary to

More information

EMC Smarts Network Configuration Manager

EMC Smarts Network Configuration Manager EMC Smarts Network Configuration Manager Version 9.4.1 Advisors User Guide P/N 302-002-279 REV 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in the USA. Published October, 2015

More information

Administration Guide. Novell Storage Manager 3.1.1 for Active Directory. Novell Storage Manager 3.1.1 for Active Directory Administration Guide

Administration Guide. Novell Storage Manager 3.1.1 for Active Directory. Novell Storage Manager 3.1.1 for Active Directory Administration Guide Novell Storage Manager 3.1.1 for Active Directory Administration Guide www.novell.com/documentation Administration Guide Novell Storage Manager 3.1.1 for Active Directory October 17, 2013 Legal Notices

More information

Building A Very Simple Website

Building A Very Simple Website Sitecore CMS 6.5 Building A Very Simple Web Site Rev 110715 Sitecore CMS 6.5 Building A Very Simple Website A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating

More information

Subversion Server for Windows

Subversion Server for Windows Subversion Server for Windows VisualSVN Team VisualSVN Server: Subversion Server for Windows VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft Corporation.

More information

Technical Notes. EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution

Technical Notes. EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution Release number 9.0 TECHNICAL NOTES 302-001-760 REV 01 September, 2015 These technical

More information

PingFederate. Identity Menu Builder. User Guide. Version 1.0

PingFederate. Identity Menu Builder. User Guide. Version 1.0 Identity Menu Builder Version 1.0 User Guide 2011 Ping Identity Corporation. All rights reserved. Identity Menu Builder User Guide Version 1.0 April, 2011 Ping Identity Corporation 1099 18th Street, Suite

More information

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program Working With Templates in Web Publisher Contributed by Paul O Mahony Developer Program Overview... 3 Template Options... 3 Web Publisher Editor Templates... 3 Advanced Content Editor... 3 ewebeditpro +

More information

Setting Up Person Accounts

Setting Up Person Accounts Setting Up Person Accounts Salesforce, Summer 15 @salesforcedocs Last updated: June 30, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

More information

Content Server Installation Guide

Content Server Installation Guide Content Server Installation Guide Version 5.3 SP3 July 2006 Copyright 1994-2006 EMC Corporation. All rights reserved. Table of Contents Preface... 11 Chapter 1 Server Installation Quick Start... 13 Installing

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information