TopBraid Application Development Quickstart Guide. Version 3.3

Size: px
Start display at page:

Download "TopBraid Application Development Quickstart Guide. Version 3.3"

Transcription

1 TopBraid Application Development Quickstart Guide Version 3.3 October 27, 2010

2 2 TopBraid Application Development Quickstart Guide Introduction

3 TopBraid Application Development Quickstart Guide TOC 3 Contents Chapter 1: Introduction Documentation conventions Note for Macintosh users...6 Chapter 2: Using TopBraid Composer Basic layout Navigating and editing a graph Adding instances Querying the data with the SPARQL query language Prefixes, preferences, and online help...16 Chapter 3: Writing new SPARQL functions with SPIN Calling built-in functions Defining your own functions...20 Chapter 4: Creating and running a SPARQLMotion script Creating the script Running it Chapter 5: Creating and running a semantic web service Creating your script Defining the function to call Creating the SPARQLMotion script Registering and calling your web service...35 Chapter 6: Creating a TopBraid Ensemble application TopBraid Ensemble: the basics Creating the sample application Chapter 7: Getting data from SPARQL endpoints and saving data in a spreadsheet Retrieving data from a SPARQL endpoint Saving data in a spreadsheet...46 Chapter 8: Calling a SPARQLMotion script from TopBraid Ensemble Defining the function to call Creating the SPARQLMotion script Testing it Taking it further...52

4 4 TopBraid Application Development Quickstart Guide TOC Chapter 9: Reading triples from a relational database Getting the database driver Configuring TopBraid to read a MySQL database Reading the data with a SPARQLMotion script Chapter 10: Using XSLT in a semantic web application Creating XML Creating an XML version of SPARQL query results in a SPARQLMotion script Applying an XSLT stylesheet in a SPARQLMotion script Taking it further...66 Chapter 11: Deploying your TopBraid applications on a TopBraid Live Enterprise server Referencing your server Deploying apps to the server Installing TopBraid Ensemble Apps on the Enterprise Server...70

5 Chapter 1 Introduction Topics: Documentation conventions Note for Macintosh users TopBraid Composer (TBC) is the leading tool for creating and editing semantic web models and applications. Creating a model can be as simple as adding one or two customizations to a standard ontology such as SKOS or GoodRelations, and it can be simple to create and deploy applications that read from and write to a variety of local and remote data sources and perform simple or sophisticated manipulation of the data in between. This book, which is based on the How to postings on the TopQuadrant weblog, will get you started writing those applications. The premier version of TopBraid Composer, the Maestro Edition (TBC-ME), gives you all the application development power of TopBraid Suite. You can download the 30-day evaluation version of TBC-ME from the download page on TopQuadrant's website and try every example in this book except for the one in the last chapter, which describes How to deploy your TopBraid applications on a TopBraid Live Enterprise server so that other people on your network can use your applications. For that, you'll need access to a TopBraid Live Enterprise server. The TopBraid Suite builds on the W3C RDF, SPARQL, and OWL standards. The examples in this book assume that you know the basics of RDF for example, that the primary unit of information is a triple, which consists of a subject, a predicate, and an object, and that subjects and predicates must be URIs while an object can be a URI or a literal value (typically a string, but sometimes of a different data type such as an integer, date, or boolean value). You don't have to know any SPARQL to work through the examples in this book, because the exercises provide you with all the SPARQL queries you need to copy and paste into your sample applications, but the more SPARQL you know the more you'll be able to appreciate and build on those examples. These examples use none of the advanced features of the RDF Schema (RDFS) or OWL standards other than the occasional declaration of some classes and properties associated with those classes. Most of the examples build on each other in order, so if you skip ahead you may find a brief treatment of a series of steps that are covered in more detail in an earlier chapter. Usually, a link will point you to the more detailed coverage, but it's best to work through the exercises in order. (Exceptions are the chapters on reading relational data and using XSLT, which may not be as useful to people who are new to those tools.) When you're finished, you'll probably have lots of ideas for your own things to build with the SPARQLMotion building blocks. Let us know what you come up with!

6 6 TopBraid Application Development Quickstart Guide Introduction 1.1 Documentation conventions Class, property and individual names are written in a sans serif font like this. Names for user interface widgets and menu options are presented in a style like this. Information to be entered by the user is shown in a monospaced font like this. Exercises and required tutorial steps are presented like this: 1. Execute the first step. 2. Then, execute the second step. 3. Here is the third step to carry out. Tips and suggestions for using TBC ontologies are presented with this icon. Potential pitfalls and warnings are presented next to this icon. General notes use this icon. 1.2 Note for Macintosh users This book and its screen shots were prepared with TopBraid Composer running under Windows. Mac users will find two small differences in the user interface: Under Windows, tree-like screen widgets showing the structure of directories and files, classes and subclasses, or properties and subproperties have little plus signs next to nodes that can be expanded to see their child nodes. The Mac uses a small gray triangle instead of a plus sign to show which nodes can be expanded. The Preferences menu selection is found on the Window menu in the Windows version of TopBraid Composer and on the TopBraid Composer menu in the upper-left of a Mac screen. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

7 Chapter 2 Using TopBraid Composer Topics: Basic layout Navigating and editing a graph Adding instances Querying the data with the SPARQL query language Prefixes, preferences, and online help TopBraid Composer is a semantic web modeling and application development environment available for Windows, Mac, and Linux. It's built on top of Eclipse, an open source Integrated Development Environment popular with software developers. Eclipse is particularly popular for Java development, but built-in features and free and commercial plugins can turn it into a sophisticated editor for XML files, UML models, and many popular programming languages besides Java. TBC adds features that let you edit and navigate OWL and RDFS models and data associated with those models, as well as features to let you visually assemble scripts that can read RDF from and write to a variety of sources. These include many sources that you might not associate with RDF, such as Excel spreadsheets and relational databases. You can specify complex manipulations of data for your application to perform by clicking, dragging, and filling out dialog boxes. The TopBraid Live Personal Server included with TBC builds on Eclipse's Jetty web server to let you build and test web-based applications around these models. You can then deploy your applications on the TopBraid Live Enterprise Server for use by anyone with a web browser, whether they have TBC or not. This chapter will tell you just enough about TBC to help you navigate around it and use its features as you work through the remaining chapters of the book. For a more detailed introduction with a good introduction, to the creation of ontologies, see TopBraid Composer Getting Started Guide.

8 8 TopBraid Application Development Quickstart Guide Using TopBraid Composer 2.1 Basic layout When you start up TBC, you'll see a collection of specialized panes known in Eclipse as views. A collection of views grouped together for a specific task, such as editing programs in a particular language or, in TBC's case, editing semantic web models and applications, is known as a perspective. The Navigator view, shown in the lower-left of the following illustration, lets you navigate among projects, folders, and files in your workspace. Because this is such a common need in nearly any use of Eclipse, you'll find the Navigator view in almost all perspectives and Eclipse-based products. On the other hand, the Classes view in the upper-left and the Properties view in the upper-right of the same picture are very specific to the needs of semantic web application development, because they let you view, add, and edit class and property definitions. As you learn to use TBC, you'll become very familiar with these views. The middle of the lower part of the image shows the Imports view and tabs for several other views behind it such as Instances and Domain. Clicking one of these tabs will bring its view to the front, and dragging a tab moves its view to another place on the screen. If you're doing a lot of work in a particular view and it doesn't have enough room to see what you're doing, double-click its tab to maximize its view within the TBC window, and double-click the tab again when you're ready to return the view to its original size. If you only want to make it a little bigger, drag the view's edges to resize it. The "X" on the right side of a selected view's tab lets you close that view if you want to reduce the clutter. If you want to re-open a view you closed or hear about a useful view and don't see it, select Show View from the Window menu. This displays a cascade menu with a list of additional views that you can add. An Other choice at the TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

9 TopBraid Application Development Quickstart Guide Using TopBraid Composer 9 bottom of that menu leads you to an even more extensive list to choose from. If you don't see an Error Log view in the currently displayed perspective, that would be a good one to select on the cascade list to add to the current views, because it shows both error and warning messages that can be useful during application development. 2.2 Navigating and editing a graph A collection of RDF data is often called a graph. It can store class and property information about data being stored, or the data itself, or both. Many of the graphs distributed with TBC are there for you to import into the ontologies you create to give you a head start on the structure of your ontologies if you want to build on a standard such as SKOS or FOAF, and also to provide you with hooks that invoke application development features such as user-defined functions and SPARQL Inferencing Notation (SPIN) rules. When you first start up TBC, you'll see that a single project in the Navigator view called "TopBraid" has several folders with commonly used models, example data, and other ontologies that will speed your ontology and application development. (If you don't see these folders, click the plus sign next the TopBraid project.) If the kennedys.rdf model is not already selected, as shown in the screen shot above, double-click the kennedys.rdf model in the TopBraid project's Examples folder to open it. When you double-click a file in the Navigator view to open it, Eclipse automatically calls the appropriate editor program for that file. If you double-clicked a file named hello.java, Eclipse would open the file in a Java programming editor. To use an editor other than the default for example, if you want to open an XML file or an Excel spreadsheet as RDF triples instead of with a more traditional editor for those file types right-click the file's icon in the Navigator and select from the choices (in this case, Open With->TopBraid) from the cascade menu. If you edit and save a file in one of your projects with a non-eclipse editor, Eclipse may not know about the changes. Tell it to refresh its view of the file or files by right-clicking the file or its containing folder in the Navigator and picking Refresh. Let's create a new project. 1. Pick New from the File menu and you'll see that the cascade menu offers Project... as one of the choices. (It also offers choices of file types that you can create with TopQuadrant to put in your project, so we'll be coming back to this menu shortly.) Select Project... TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

10 10 TopBraid Application Development Quickstart Guide Using TopBraid Composer 2. Click the plus sign next to General on the New Project dialog box, click on Project under that, and click the Next button. 3. Enter TestProject in the Project name field and click the Finish button. Your new project will appear in the Navigator view above the TopBraid project. We're going to add an ontology and some instance data to that project, but instead of creating an ontology from scratch, we'll reduce our work by taking advantage of an existing standard: SKOS, the W3C standard Simple Knowledge Organization System ontology used for controlled vocabularies and thesaurii. SKOS is defined using the OWL standard to describe classes of vocabulary terms and their possible relationships, and taxonomy and thesaurus vocabularies that use these classes and relationships can interoperate with each other much more easily than vocabularies defined using the proprietary formats commonly used by vocabulary editing tools. (To draw an analogy to XML, OWL is like the DTD or schema language, SKOS is like the schema itself for example, Docbook or DITA and a taxonomy of animals described using SKOS is like a document conforming to the Docbook schema.) With your TestProject selected in the Navigator view, select New from the File menu, and then instead of picking Project... like before, pick RDF/OWL File. On the Create RDF/OWL File dialog box, replace "unnamed0" in the Base URI field with SKOSTest. You'll see this added automatically to the File name field as you do so. In the Initial imports field, check SKOS. We'll see the effect this has shortly. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

11 TopBraid Application Development Quickstart Guide Using TopBraid Composer 11 Click the Finish button, and TBC will create the file in the TestProject project and open it for you: You can close the file by clicking the X on the SKOSTest.n3 tab or by picking Close from the File menu. After closing it, you can reopen it using the File menu or by double-clicking the file in the Navigator view. With your SKOSTest.n3 file open, click the Imports tab in the bottom middle of the screen if it's not in the front of that group of views. It shows that the SKOS core ontology has been imported into the ontology you've created TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

12 12 TopBraid Application Development Quickstart Guide Using TopBraid Composer because you clicked the SKOS checkbox in the Initial imports field when you first created your file. If you hadn't checked that, you could import the file by opening up the TopBraid project's Common folder in the Navigator view and then dragging the skos-core.rdf file from there to the SKOSTest.n3 Imports tab. Other files that you'll be importing in this book's exercises do more than define ontology classes and properties, like skos-core.rdf does. Many define functions and script modules whose availability will make your application development go much more quickly. Let's look more closely at what gets imported with skos-core.rdf. Click the Classes tab in the upper-left of your screen if it's not the front view in that section, and then click the plus signs next to owl:thing and skos:collection to expand the class tree. Feel free to resize the Classes view. This shows that the SKOS ontology that you imported declares Collection, Concept, and ConceptScheme classes as subclasses of owl:thing and an OrderedCollection class as a subclass of Collection. The little icons in the view's upper-right let you add and delete classes; mouse over them for descriptions of what they do. Like many other views, the Classes view also has a little icon of a white triangle pointing down which displays the context menu of relevant actions when you click it. The Properties view in the upper-right of the TBC screen lists properties declared for this ontology. Click the plus sign next to skos:semanticrelation and you'll see its subproperties, and then click their plus signs to see their subproperties. If you're familiar with how SKOS organizes vocabulary terms, you'll see the properties it uses to define relationships between concepts, such as "broader" to show that the concept "mammal" is a broader term for "dog" (because the class of all dogs is a subset of the class of all mammals) or the "related" property, which can show that the concept "doghouse" is related to the concept "dog" without having a broader or narrower relationship to the term. Let's say that your business wants to use the SKOS standard to store controlled vocabularies, but along with the standard properties that get assigned to each concept, you want to add a Control Number property that is unique to your business's operations. Click the Properties view's white triangle to display its menu and note the choices there, along with the icons next to the triangle that provide shortcuts to these functions. If you picked Create rdf:property, you could add a controlnumber property for use in your ontology. With that one simple addition, you would turn SKOSTest.n3 into a customized version of the SKOS standard. (The other three "Create" menu choices let you define more specialized kinds of properties.) You can also add brand-new classes, or subclasses of existing SKOS classes, all by clicking, dragging, and filling out dialog boxes. Note that common naming style is to begin class names such as Concept with upper-case letters and property names such as controlnumber with lower-case letters. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

13 TopBraid Application Development Quickstart Guide Using TopBraid Composer Adding instances Click the Instances view's tab to bring it to the front of the views in the lower-middle of your screen, and then click the yellowish-brown circle next to skos:concept in the Classes window. If your graph had any instances of this class, they would then be listed in the Instances view, but so far you don't have any. To create one, click this view's white triangle to display its menu and pick Create Instance. (Note also how this menu shows which icons next to the triangle are shortcuts to the menu's choices.) In the Create skos:concept dialog box, enter Mammal in the Name of new instance field. Click the OK button, and you'll see it appear in the Instances view. You'll also see a Resource Form appear for your new instance with various properties that you could set for it. Before looking closely at this form, create another Concept instance called Dog, and then your screen should look like this: While watching the Resource Form in the middle of the screen, click the yellowish-brown circle next to skos:concept in the Classes view, and then click the purple diamond next to Dog in the Instances view. Each time you select a class or an instance, you'll see that the form changes to let you edit properties of the resource that you selected. You don't have to view a form representation other tabs at the bottom of that area let you view the resource in other ways, and we'll see with SPARQLMotion scripts how a graph representation can be especially useful but for now we'll stay with the Form tab. With the Dog instance selected at the bottom, let's add some property values. First, we'll indicate that Dog has a broader value of Mammal. Click the white context menu triangle next to skos:broader on the Dog resource's form to display the property's context menu and pick Add empty row. A blank appears for you to fill out. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

14 14 TopBraid Application Development Quickstart Guide Using TopBraid Composer In the SKOS ontology, the skos:broader property (and others) are defined with a domain and range of Concept. This means that if resource X has a skos:broader value of Y, then both X and Y are concepts (that is, instances of the Concept class). To put this in taxonomy terms, a given node's "broader" relationship can't refer to just anything; it must refer to another defined concept. Built-in features of TBC and the applications you build with it make it easier to ensure that domain and range specifications are enforced, which means that your application's end users will have an easier time entering appropriate values. To see this in action, enter the letters Mam in the blank that appeared when you picked skos:broader. A red border will appear around the field, showing that "Mam" is not a valid value. Now press Ctrl+space, and TBC's completion feature fills in the rest for you, because it knows that "Mammal" is the only valid value that begins with the letters that you typed, and the red border becomes a black border. The black border and the little Ok that appears to the right show that you're not done yet perhaps several valid values begin with the letters "Mammal", so you need to show that you're done entering data in this field by either clicking on Ok or pressing the Enter key. Do one of these and you'll see the black border become a gray border. (To save your work, pick Save from the File menu at the top of the screen.) It's a common mistake when using an Eclipse application to type a value into a field but not to finish the text entry by pressing the Enter key or clicking Ok, and then the system doesn't really know about the new value. When things don't behave the way you expected, check whether any fields are waiting for you to finish some data entry with this step. Let's look at another way to add a value. Click the context menu triangle to the right of the Mammal value that you entered and pick Delete to remove it. Next, click the white triangle to the right of the skos:broader property name again, but this time, instead of picking Add empty row like before, pick Add existing, which tells TBC that you want to pick an appropriate existing value from a dialog box. That dialog box appears, showing all the defined Concept instances: Pick Mammal on the right, click the OK button, and you'll see it appear as the skos:broader value. While some properties such as skos:broader are connected to specific classes using domain specifications, others can be used with a wide variety of classes, especially the rdfs:label and rdfs:comment properties. To add an rdfs:comment value to the Dog Concept, drag rdfs:comment from the Properties view on the right onto the Dog Resource form, and a blank will appear for you to fill out. Enter any comment you like and press Enter or click Ok next to the field. 2.4 Querying the data with the SPARQL query language TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

15 TopBraid Application Development Quickstart Guide Using TopBraid Composer 15 Click the SPARQL view's tab in the lower-middle of the screen to bring it to the front. It has two sections: a Query Editor tab on the left and a results pane. There's already a default query in the query editor, so click the green "Execute SPARQL" arrow above the result section and TBC will run that query. In a SPARQL query, a term beginning with a question mark is a variable. In this query, the position of the two variables in the triple pattern show that they represent the subject and object of a triple. (The names used for the variables make this even clearer, but you can use any variable names you like.) This query says to list all the? subject and?object values where?subject is a subclass of?object, and with the SKOS library that you've imported, there are a lot of subclass/class relationships. There are so many, in fact, that they're jammed pretty tightly into that small space, so double-click the SPARQL tab to expand its view to the whole TBC window: (When you're ready to use other TBC views, double-click the SPARQL tab again to return its view to its original size.) Replace the default query with the following one, which uses shorter variable names to ask for the subject, predicate, and object of any triples where the subject has an rdf:type of skos:concept: SELECT?s?p?o WHERE {?s?p?o.?s rdf:type skos:concept. } Click the green arrow (or press Ctrl+Enter while your cursor is still in the SPARQL editor window) and you'll see all the information about the two SKOS concepts that you defined earlier. In much of your TopBraid development, you'll add SPARQL queries to class definitions, SPARQLMotion modules, and other places. The SPARQL view for querying the currently displayed graph is especially handy for trying out queries before you add them somewhere in your application. And remember, TBC supports all the Jena extensions to the W3C SPARQL standard and adds a few of its own. In the next chapter, in addition to learning about some of these functions, you'll learn how you can define and call your own SPARQL functions. If you misspell rdf:type or skos:concept when you enter the query above, you'll see a red squiggly line under it. Like the dynamic spell checking feature in many word processors, TBC does this for terms that it doesn't recognize (in this case, for properties or classes not defined in the ontology currently being viewed) to help you avoid typos. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

16 16 TopBraid Application Development Quickstart Guide Using TopBraid Composer 2.5 Prefixes, preferences, and online help If you've used SPARQL before, you'll know that namespace prefixes must be declared before they're used. How did TBC know which namespaces rdf: and skos: referred to in the query above? You can see which prefixes are defined for a given ontology in the overview information about the ontology. To display this overview information, click the little house icon at the top of the screen. The resource form will show you information about the SKOSTest ontology that you've defined, and a new Overview tab will appear at the bottom of the form. Click that tab and you'll see a table of all the namespace prefixes defined for this ontology: These are the prefixes that you can use in the SPARQL view and in all components of applications built with this ontology. You can click on a prefix or namespace URL on the table to edit it, and the buttons to the right of the table let you add, delete, and do more with these mappings of namespace prefixes to URLs. Prefix assignments shown in gray on the table are from ontologies imported into this one, so you can't edit them from within the currently open ontology. Much of Eclipse and TBC can be customized. Pick Preferences from the Window menu (or, on a Macintosh, from the TopBraid Composer menu in the upper-left of your screen) and you'll see this dialog box: TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

17 TopBraid Application Development Quickstart Guide Using TopBraid Composer 17 It lets you pick different categories of things to set, and some of the categories have subcategories. In the illustration, the TopBraid Composer Forms category is selected, and the right side of the dialog box shows some of the Formrelated settings that you can modify. Try exploring other categories, especially the General one, to see the kinds of things that you can customize. TopBraid Composer includes extensive online help. Pick Help Contents from the Help menu and you'll see a new window showing the main categories of help for your copy of Eclipse: TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

18 18 TopBraid Application Development Quickstart Guide Using TopBraid Composer Expand the TopBraid Composer section of the help panel's table of contents and you'll find plenty of places to learn more about various aspects TBC. Remember that this help is always here as you continue on in this book to learn more about developing semantic web applications. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

19 Chapter 3 Writing new SPARQL functions with SPIN Topics: Calling built-in functions Defining your own functions This chapter shows how you can define your own functions using the SPARQL Inferencing Notation, which is an important building block for many of the techniques that we'll learn about in later chapters. This material is excerpted from the "Getting Started with SPIN" (pdf) document, which is available for you to download. The complete "Getting Started with SPIN" document also covers inferencing, constructors, constraints, and more. Before we cover the definition of new functions, let's review the calling of functions in TopBraid, because there are so many useful ones available to you.

20 20 TopBraid Application Development Quickstart Guide Writing new SPARQL functions with SPIN 3.1 Calling built-in functions The "TopBraid SPARQLMotion Functions Library" page of TopBraid Composer's online help lists over 70 functions available for you to call from your applications, including string, mathematical, logical, and ontology functions. Because TopBraid Composer uses the Jena SPARQL engine, it supports the LET keyword for assignment of variables, which gives you a way to experiment with built-in variables using a short, simple SPARQL query. For example, to try the mathematical function smf:random() (a TopBraid Composer extension to the Jena function library), enter the following query in the SPARQL view's Query Editor tab: SELECT?x WHERE { LET (?x := smf:random()). } To execute it, either click the "Execute SPARQL" green triangle button or press Ctrl+Enter, and you'll see a random number between 0 and 1 appear in the [x] column of the SPARQL query result. Because this function returns a different value each time you call it, go ahead and execute it a few more times. Another built-in extension function is smf:parsedate(), which converts a string in a semi-structured date format into an xsd:date, xsd:datetime, or xsd:time value. (To learn more about smf:random(), smf:parsedate(), and other available functions, select Help Contents from the Help menu and then TopBraid Composer -> Reference -> SPARQLMotion Functions Reference.) This function takes two parameters: a date string and a template showing which pieces of the date are where in that string. Try pasting the following query into the SPARQL view's Query Editor tab and executing it: SELECT?x WHERE { LET (?x := smf:parsedate("7/30/10","mm/dd/yy")). } The value displayed under [x] is " ". The TopBraid Composer online help for this function includes the URL of a web page with greater detail about options for the format string in the smf:parsedate() function's second parameter. We're going build on this function to create a simpler function to convert dates from the MM/dd/yy format to ISO 8601 format. 3.2 Defining your own functions TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

21 TopBraid Application Development Quickstart Guide Writing new SPARQL functions with SPIN 21 Before creating anything you'll need a file to store it in. Select the TestProject project created in the last chapter, pick New from the File menu and pick RDF/OWL/SPIN File. In the wizard dialog box that appears, replace unnamed0 with FunctionDemo in the Base URI field and click the Finish button. TBC will create your file for you. The Import view will show you that the spin.rdf file has been imported from the SPIN folder of your Navigator view's TopBraid project. If you had selected RDF/OWL File instead of RDF/OWL/SPIN File from the File -> New menu, you could later drag that spin.rdf onto your new file's Import view for the same effect. With the spin.rdf graph imported into yours, you'll see see several nodes in the Properties view that wouldn't have been there otherwise. Each has an sp: or spin: prefix and a plus sign next to it that expands the node to show more SPIN properties. For now, you won't need to use these properties from this view, because TopBraid Composer gives you forms to fill out to specify everything you need to define a new function. The Classes view also shows a few new classes. Click the plus sign next to spin:modules to expand it, and you'll see that one of the subclasses is spin:functions. To create your new function, 1. Right-click on spin:functions and pick Create subclass from the context menu. 2. On the Create Classes dialog box, click on the default new function name of "Functions_1", replace it with the name mmddyy2iso8601, and press Enter. 3. Click the OK button. You'll see that your new subclass of spin:functions is currently selected in the Classes view, and the class form will have the Name and rdfs:subclassof values already filled out. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

22 22 TopBraid Application Development Quickstart Guide Writing new SPARQL functions with SPIN Your new function will have an argument passed to it: the date string to convert. The body of the function must reference this argument, so let's define the argument before creating the function body. Like everything else in SPIN, this definition will ultimately be stored with a series of triples, but because argument definition is so common in application development, SPIN includes a template to make it easier. 1. SPIN models arguments to functions as constraints on those functions. On the mmddyy2iso8601 class form, click the context menu white triangle next to the spin:constraint property name and pick Create from SPIN template. 2. Select spl:argument from the Available Ask/Construct Templates list, and then fill in the following two fields in the Arguments panel on the right of the Create from SPIN template... dialog box: In the comment field, enter Convert mm/dd/yy formatted date to xsd:date type and format. (Remember to press the Enter key after entering a value on one of these forms. If you tab to another field and the comment field has a heavier border around it and and the Create from SPIN template dialog box's OK button is grayed out so that you can't click it, go back to the comment field and press the Enter key.) Instead of typing a value directly into the predicate field (which has a red outline because an empty value for this property is not valid), click the plus sign to the right of it. This displays a Select Resource... dialog box; because we're defining our first (and only) argument to pass to the new mmddyy2iso8601 function, click sp:arg1 on the right panel and then the OK button. 3. Click the OK button to finish with the Create from SPIN template dialog box, and you'll see that the spin:constraint field of the class form for your new mmddyy2iso8601 function has been filled out. 4. All that remains is to define the function body. Click the spin:body widget on the class form and select Add empty row. 5. Enter the following as the body: SELECT?x WHERE { LET (?x := smf:parsedate(?arg1, "MM/dd/yy")). } The body of this function uses?x as the variable name, but you can use any name you want. If you have more than one variable, and they bind to more than one value, the function will return the first value of the first variable, so there's no point in putting more than one variable after the SELECT keyword. In this SPARQL query, the first argument to the smf:parsedate() function is arg1, which we defined on the spin:constraint part of the form earlier. Your new function should be ready to use. Test it by entering and executing the following in the SPARQL view: SELECT?x WHERE { LET (?x := :mmddyy2iso8601("9/6/10")). } Like any other classes, functions belong to a particular namespace. For example, parsedate() is in the namespace represented by the smf prefix. The colon at the beginning of your :mmddyy2iso8601("9/6/10") function call shows that it's in the default namespace. For production application development, it's better to define a specific prefix for this file's namespace, as described in the previous chapter, and to then reference functions defined in this file with that prefix. This will make it easier to import the code into another file without confusion. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

23 TopBraid Application Development Quickstart Guide Writing new SPARQL functions with SPIN 23 mmddyy2iso8601() is now a function that you can call anywhere when using or importing this file, including from the body of new functions that you create. Test it further in the SPARQL view by passing other dates as a parameter. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

24 24 TopBraid Application Development Quickstart Guide Writing new SPARQL functions with SPIN TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

25 Chapter 4 Creating and running a SPARQLMotion script Topics: Creating the script Running it SPARQLMotion is a visual scripting language that lets you tie together triples from diverse data sources (whether they're natively stored as triples or not), process them using SPARQL, and then save the results in a wide choice of output formats. You can run one of these scripts from TopBraid Composer, as a semantic web service, or as the back end to a user interface created with TopBraid Ensemble. You create a SPARQLMotion script by dragging icons representing different kinds of processing modules from a palette onto a workspace and then filling out a dialog box for each to configure it. In this chapter, we're going to look at the creation of a simple script, and in future chapters we'll learn about more modules and what they can add to your application development: reading and writing spreadsheet data, reading from relational databases and SPARQL endpoints, HTML and XML processing, and more. Our sample script will import the triples from the FOAF ("Friend of a Friend") files of some well-known semantic web advocates, extract the names and nicknames of their friends who are listed there, and save the results in a new RDF file. Much more complex scripts are possible, but the creation of those scripts will always follow the basic steps described here.

26 26 TopBraid Application Development Quickstart Guide Creating and running a SPARQLMotion script 4.1 Creating the script To create a SPARQLMotion file, create a new file in TopBraid Composer the same way you would create any other file. When you indicate that you want to create a file, you'll see that SPARQLMotion File is one of the options. Picking it creates a file that already has the sparqlmotionfunctions and sparqlmotionlib libraries imported; these have what you need to add a script to your new file. Assign the file any Base URI and File name you like (for example, and sm1) and click the Finish button to indicate that you're done with the Create SPARQLMotion File dialog box. Next, select Create SPARQLMotion Script from TopBraid Composer's Scripts menu. Starting with TopBraid 3.4, when you create a new script, instead of asking you to specify an initial module right away, TopBraid Composer will take you right to the SPARQLMotion palette, where you can select your first module the same way that you select the others, as described below. A Select initial module type dialog box will ask you about the first module to add to your script. Because the script will import RDF files from the web, start with an ImportRDFFromURL module and name it GetTimBLData: After filling out the dialog box as shown and clicking the OK button, the script appears with its single module: TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

27 TopBraid Application Development Quickstart Guide Creating and running a SPARQLMotion script 27 Starting with TopBraid 3.4, the SPARQLMotion palette looks a little different: the choice of modules to add is in a tree on the left, as shown here, instead of being in an accordion list on the right, as shown in the other illustrations in this chapter. You will find ImportRDFFromURL under the the Import from Remote branch of the tree on the left; drag it onto the workspace and continue as described below. Double-click the icon representing the module to configure it. The only information you must add to an ImportRDFFromURL module is the URL of the RDF to import. To set the value of a property such as sml:url on one of these dialog boxes when there is no existing value, display its context menu by clicking the white triangle next to it and select Add Empty Row. To to set the property value to retrieve Tim Berners-Lee's FOAF file, enter the value as shown below. Note from the Ok to the right of the sm:url that the data entry of this field is not complete TopBraid Composer will not know about this new value until you either press the Enter key with the cursor in that field or click on Ok to make it go away. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

28 28 TopBraid Application Development Quickstart Guide Creating and running a SPARQLMotion script We'll see shortly why you don't have to add a value for the sm:next property on this dialog box. Click the Close button to return to the script workspace. At this point, your script only has one module, but you can still run it. Mouse over the small green triangle icon at the top of the SPARQLMotion workspace to display its title: "Run SPARQLMotion script (up to selected module)"). Click the GetTimBLData module icon to select it and then click the green triangle. After it retrieves the triples from the designated URL, TopBraid Composer displays a message box offering to display the result triples in TopBraid Composer's SPARQLMotion Results view. Click the SPARQLMotion Script Executed message dialog box's Display result triples checkbox and click the Close button to do so. As with so many semantic web applications, this one becomes more interesting when you add more data sources and then select a subset of the combined data that meets your needs. If you don't see the module palette on the right side of the script workspace, click the small white triangle in the upper-right of the workspace to display it. Remember that you can resize the views if your SPARQLMotion workspace isn't very big. To add a second module, click Import from Remote on the palette and click the tiny darker triangle to scroll through the choices there. When you see Import RDF from URL, add a new one of these modules to your workspace by dragging it there and name it GetJimHendlerData. Enter as the data's location. Then, add a third Import RDF from URL module named GetDanBrickleyData and set danbri.org/foaf.rdf as the sml:url value. (At any point in the creation and editing of your script modules, you can rearrange the icons by selecting and dragging them.) Now we'll create a module that gathers data from these three sources and only passes along the triples that identify the name and nickname values found the source data. Drag an Apply Construct module from the RDF Processing section of the palette onto the workspace and name it ExtractData. After this module appears, double-click it and set the sml:constructquery property's value to the following: CONSTRUCT {?s a < < < } WHERE {?s < < TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

29 TopBraid Application Development Quickstart Guide Creating and running a SPARQLMotion script 29 } SPARQL SELECT queries pick specific pieces of information to pass along. CONSTRUCT passes along entire triples, which may be copies of input triples or new triples created by rearranging and cross-referencing input data to infer and create new information based on the input. Our simple query here merely finds and passes along triples that match two patterns. It also uses the a abbreviation of the rdfs:type property name to declare that the subject that has these properties is a Person as defined by the FOAF vocabulary. After entering this CONSTRUCT query, set the same dialog box's sml:replace value to True so that only the constructed triples get passed along to the output without the input data. Now you're finished with this dialog box, so click its Close button. We haven't identified the input of this CONSTRUCT module yet. Instead of writing code, we can do it by just pointing and clicking. To make your first connection, select the Add connection icon on the Palette, click on the GetTimBLData module, and then click the ExtractData module. An arrow will appear to show that data will flow from one to the other when the script is run: Follow the same steps to connect the other two data retrieval modules to ExtractData. Instead of waiting until the application is finished to test it, we can do more incremental testing here. Select the ExtractData module, click the green arrow at the top, and you should end up with a list of names, nicknames, and foaf:person type declarations in the SPARQLMotion Results view. Our final step has two parts: 1. Tell the script to save the results of the ExtractData module to an RDF disk file. From the Export to Local section of the Palette, drag an Export to RDF file module onto the workspace and call it SaveOutput. Double-click the new module and set the sml:baseuri property to (or any URI you like; it will be used as the base URI of the saved file) and set sml:targetfilepath to sm1out.rdf. If you don't specify a path for this file, the SPARQLMotion script will save the file in the same directory as the script itself. After setting these two values, click the Close button. 2. By including the FOAF ontology in your output, applications that read the file created by your script will have more context about the meaning of the data. You can import this ontology from the web, but the TopBraid Composer distribution includes many popular ontologies so that importing them will happen more quickly. From the Import from Local section of the SPARQLMotion palette, drag an Import RDF from workspace module onto the workspace and name it FOAFOntology. Double-click it and set its sml:sourcefilepath property to / TopBraid/Common/foaf.owl to pull the foaf.owl file from the Common folder of the Navigator view's TopBraid project. Press Enter, and then click the dialog box's Close button. TopQuadrant, Inc Corporate Office Alexandria, VA 330 John Carlyle Street Suite 180 Alexandria, VA Phone: Fax: Development Office Mountain View, CA 201 San Antonio Circle Building B, Suite 230 Mountain View, CA

Creating a Semantic Web Service in 5 Easy Steps. Using SPARQLMotion in TopBraid Composer Maestro Edition

Creating a Semantic Web Service in 5 Easy Steps. Using SPARQLMotion in TopBraid Composer Maestro Edition Creating a Semantic Web Service in 5 Easy Steps Using SPARQLMotion in TopBraid Composer Maestro Edition Step 1: Create a SPARQLMotion file In the Navigator View, select project or project folder where

More information

Getting Started Guide

Getting Started Guide TopBraid Composer Getting Started Guide Version 2.0 July 21, 2007 TopBraid Composer, Copyright 2006 TopQuadrant, Inc. 1 of 58 Revision History Date Version Revision August 1, 2006 1.0 Initial version September

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

SPARQL UniProt.RDF. Get these slides! Tutorial plan. Everyone has had some introduction slash knowledge of RDF.

SPARQL UniProt.RDF. Get these slides! Tutorial plan. Everyone has had some introduction slash knowledge of RDF. SPARQL UniProt.RDF Everyone has had some introduction slash knowledge of RDF. Jerven Bolleman Developer Swiss-Prot Group Swiss Institute of Bioinformatics Get these slides! https://sites.google.com/a/jerven.eu/jerven/home/

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

SiteBuilder 2.1 Manual

SiteBuilder 2.1 Manual SiteBuilder 2.1 Manual Copyright 2004 Yahoo! Inc. All rights reserved. Yahoo! SiteBuilder About This Guide With Yahoo! SiteBuilder, you can build a great web site without even knowing HTML. If you can

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information

Publishing Geoprocessing Services Tutorial

Publishing Geoprocessing Services Tutorial Publishing Geoprocessing Services Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Publishing a geoprocessing service........................ 3 Copyright 1995-2010 ESRI,

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

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

History Explorer. View and Export Logged Print Job Information WHITE PAPER

History Explorer. View and Export Logged Print Job Information WHITE PAPER History Explorer View and Export Logged Print Job Information WHITE PAPER Contents Overview 3 Logging Information to the System Database 4 Logging Print Job Information from BarTender Designer 4 Logging

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

More information

XML Editing with Oxygen. Getting started, tips and tricks

XML Editing with Oxygen. Getting started, tips and tricks XML Editing with Oxygen Getting started, tips and tricks Oxygen is the industry-standard application for XML editing. There are other XML editors available (http://www.xml.com/pub/pt/3 currently lists

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

Google Apps for Education: The Basics

Google Apps for Education: The Basics Google Apps for Education: The Basics You will learn how to get started with Google Drive by uploading and converting documents. You will also learn how to share your documents with others. Plus learn

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

During the process of creating ColorSwitch, you will learn how to do these tasks:

During the process of creating ColorSwitch, you will learn how to do these tasks: GUI Building in NetBeans IDE 3.6 This short tutorial guides you through the process of creating an application called ColorSwitch. You will build a simple program that enables you to switch the color of

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Desktop, Web and Mobile Testing Tutorials

Desktop, Web and Mobile Testing Tutorials Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Working with the Ektron Content Management System

Working with the Ektron Content Management System Working with the Ektron Content Management System Table of Contents Creating Folders Creating Content 3 Entering Text 3 Adding Headings 4 Creating Bullets and numbered lists 4 External Hyperlinks and e

More information

Installing Java 5.0 and Eclipse on Mac OS X

Installing Java 5.0 and Eclipse on Mac OS X Installing Java 5.0 and Eclipse on Mac OS X This page tells you how to download Java 5.0 and Eclipse for Mac OS X. If you need help, Blitz cs5help@cs.dartmouth.edu. You must be running Mac OS 10.4 or later

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

1.5 MONITOR. Schools Accountancy Team INTRODUCTION

1.5 MONITOR. Schools Accountancy Team INTRODUCTION 1.5 MONITOR Schools Accountancy Team INTRODUCTION The Monitor software allows an extract showing the current financial position taken from FMS at any time that the user requires. This extract can be saved

More information

Web Content Management Training Manualv3

Web Content Management Training Manualv3 City & County of San Francisco Powered by Innovation DT City & County of Sa Departme Techno Powered by Innova DEPARTMENT OF TECHNOLOGYDT Web Content Management Training Manualv3 Department of Technology

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. November 2008 Page 1 of 29 Contents Setting Up the

More information

Outlook basics. Identify user interface elements that you can use to accomplish basic tasks.

Outlook basics. Identify user interface elements that you can use to accomplish basic tasks. Outlook basics Outlook is a powerful tool for managing your e-mail, contacts, calendars, and tasks. To use it most effectively, you first have to understand the basics. This tutorial introduces some of

More information

Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example

Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example michael.czapski@oracle.com June 2010 Table of Contents Introduction... 1 Pre-requisites... 1 Prepare HL7 Data... 1 Obtain and Explore the HL7

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Converting to Advisor Workstation from Principia: The Research Module

Converting to Advisor Workstation from Principia: The Research Module Converting to Advisor Workstation from Principia: The Research Module Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -1 Overview of the Research Module in Advisor Workstation

More information

M-Files Gantt View. User Guide. App Version: 1.1.0 Author: Joel Heinrich

M-Files Gantt View. User Guide. App Version: 1.1.0 Author: Joel Heinrich M-Files Gantt View User Guide App Version: 1.1.0 Author: Joel Heinrich Date: 02-Jan-2013 Contents 1 Introduction... 1 1.1 Requirements... 1 2 Basic Use... 1 2.1 Activation... 1 2.2 Layout... 1 2.3 Navigation...

More information

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Outlook Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Composing & Sending Email Reading & Sending Mail Messages Set message options Organizing Items

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 Optional password protection 14 We're not done yet! 15 AutoCompletion

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Creating mobile layout designs in Adobe Muse

Creating mobile layout designs in Adobe Muse Creating mobile layout designs in Adobe Muse Using Adobe Muse, you can create site layouts for web content to be displayed on desktop, smartphones, and tablets. Using the mobile design features, you can

More information

NASA Workflow Tool. User Guide. September 29, 2010

NASA Workflow Tool. User Guide. September 29, 2010 NASA Workflow Tool User Guide September 29, 2010 NASA Workflow Tool User Guide 1. Overview 2. Getting Started Preparing the Environment 3. Using the NED Client Common Terminology Workflow Configuration

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information

Catholic Archdiocese of Atlanta Outlook 2003 Training

Catholic Archdiocese of Atlanta Outlook 2003 Training Catholic Archdiocese of Atlanta Outlook 2003 Training Information Technology Department of the Archdiocese of Atlanta Table of Contents BARRACUDA SPAM FILTER... 3 WHAT IS THE SPAM FILTER MS OUTLOOK PLUG-IN?...

More information

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

How semantic technology can help you do more with production data. Doing more with production data

How semantic technology can help you do more with production data. Doing more with production data How semantic technology can help you do more with production data Doing more with production data EPIM and Digital Energy Journal 2013-04-18 David Price, TopQuadrant London, UK dprice at topquadrant dot

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Google Apps Migration

Google Apps Migration Academic Technology Services Google Apps Migration Getting Started 1 Table of Contents How to Use This Guide... 4 How to Get Help... 4 Login to Google Apps:... 5 Import Data from Microsoft Outlook:...

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This

More information

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X7 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry IMAP Internet Mail Client Versions 3.0 & 3.1 Cyrusoft International, Inc. Suite 780 The Design Center 5001 Baum Blvd. Pittsburgh PA 15213 USA Tel: +1 412 605 0499 Fax: +1

More information

Configuring browser settings (Internet Explorer and Google Chrome) for Bug Club via a Group Policy

Configuring browser settings (Internet Explorer and Google Chrome) for Bug Club via a Group Policy Overview: All of the quotation marks in here are being used to actually quote a phrase or value. Don't actually use them in any names during any of the stages as you may break something. The basic requirements

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

Databases in Microsoft Access David M. Marcovitz, Ph.D.

Databases in Microsoft Access David M. Marcovitz, Ph.D. Databases in Microsoft Access David M. Marcovitz, Ph.D. Introduction Schools have been using integrated programs, such as Microsoft Works and Claris/AppleWorks, for many years to fulfill word processing,

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X8 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

More information

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc.

Timeless Time and Expense Version 3.0. Copyright 1997-2009 MAG Softwrx, Inc. Timeless Time and Expense Version 3.0 Timeless Time and Expense All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Form Management Admin Guide

Form Management Admin Guide Form Management Admin Guide Getting around the navigation Model Management (Admin/Technical). Create, edit and manage the basic template of content models. Form Builder - Lets you create properties in

More information

Data Warehouse Troubleshooting Tips

Data Warehouse Troubleshooting Tips Table of Contents "Can't find the Admin layer "... 1 "Can't locate connection document "... 3 Column Headings are Missing after Copy/Paste... 5 Connection Error: ORA-01017: invalid username/password; logon

More information

Chapter 4: Website Basics

Chapter 4: Website Basics 1 Chapter 4: In its most basic form, a website is a group of files stored in folders on a hard drive that is connected directly to the internet. These files include all of the items that you see on your

More information

Connecting to LUA s webmail

Connecting to LUA s webmail Connecting to LUA s webmail Effective immediately, the Company has enhanced employee remote access to email (Outlook). By utilizing almost any browser you will have access to your Company e-mail as well

More information

Content Management System (CMS) Training

Content Management System (CMS) Training Content Management System (CMS) Training System Requirements Operating System: Mac, PC, Linux and most Internet connected devices Browser: Recent version of Firefox as you cannot use Chrome or Safari Recent

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide State of Nevada Ektron Content Management System (CMS) Basic Training Guide December 8, 2015 Table of Contents Logging In and Navigating to Your Website Folders... 1 Metadata What it is, How it Works...

More information

CourseBuilder Extension ADOBE elearning SUITE 6

CourseBuilder Extension ADOBE elearning SUITE 6 CourseBuilder Extension ADOBE elearning SUITE 6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Getting Started Overview..............................................................................................................

More information

WINDOWS LIVE MAIL FEATURES

WINDOWS LIVE MAIL FEATURES WINDOWS LIVE MAIL Windows Live Mail brings a free, full-featured email program to Windows XP, Windows Vista and Windows 7 users. It combines in one package the best that both Outlook Express and Windows

More information

OWA User Guide. Table of Contents

OWA User Guide. Table of Contents OWA User Guide Table of Contents 1. Basic Functionality of Outlook Web Access... 2 How to Login to Outlook Web Access (OWA)... 2 Change Password... 3 Mail... 3 Composing Mail... 5 Attachments - Web Ready

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

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria.

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria. Using the Finder When you first start up your Mac, you're greeted by the Finder, which allows you to visually access practically everything on your Mac, including applications, hard disks, files, folders,

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Outlook 2007: Managing your mailbox

Outlook 2007: Managing your mailbox Outlook 2007: Managing your mailbox Find its size and trim it down Use Mailbox Cleanup On the Tools menu, click Mailbox Cleanup. You can do any of the following from this one location: View the size of

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING If you currently create forms using Word, Excel, or even Adobe Acrobat, it s time to step up to a best-in-class form designer:

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054

More information

Microsoft Outlook 2011 The Essentials

Microsoft Outlook 2011 The Essentials Microsoft Outlook 2011 The Essentials Training User Guide Sue Pejic Training Coordinator Information Technology Services Email : spejic@swin.edu.au Mobile : 0419 891 113 Table of Contents Overview Outlook

More information

Understanding Files and Folders

Understanding Files and Folders Windows Files and Folders Overview Before I get into Windows XP's method of file management, let's spend a little space on a files and folder refresher course. (Just in case you forgot, of course.) The

More information

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver LESSON 3: ADDING IMAGE MAPS, ANIMATION, AND FORMS CREATING AN IMAGE MAP OBJECTIVES By the end of this part of the lesson you will: understand how image maps can enhance a design and make a site more interactive

More information

Struts Tools Tutorial. Version: 3.3.0.M5

Struts Tools Tutorial. Version: 3.3.0.M5 Struts Tools Tutorial Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features Struts Tools... 1 1.2. Other relevant resources on the topic... 2 2. Creating a Simple Struts Application... 3 2.1. Starting

More information

Outlook Web Access (OWA) User Guide

Outlook Web Access (OWA) User Guide Outlook Web Access (OWA) User Guide September 2010 TABLE OF CONTENTS TABLE OF CONTENTS... 2 1.0 INTRODUCTION... 4 1.1 OUTLOOK WEB ACCESS SECURITY CONSIDERATIONS... 4 2.0 GETTING STARTED... 5 2.1 LOGGING

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2011 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the GNU General

More information

Access 2007 Creating Forms Table of Contents

Access 2007 Creating Forms Table of Contents Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information