1631 Build Hybrid Multichannel Apps Using IBM Worklight, WebSphere Portal and Web Experience Factory

Size: px
Start display at page:

Download "1631 Build Hybrid Multichannel Apps Using IBM Worklight, WebSphere Portal and Web Experience Factory"

Transcription

1 1631 Build Hybrid Multichannel Apps Using IBM Worklight, WebSphere Portal and Web Experience Factory Jonathan Booth Lead Architect for IBM Web Experience Factory and WebSphere Portal Tooling Sam Alexander IBM Senior Managing Specialist, IBM Software Services for Collaboration

2 Agenda Multichannel web applications and web sites Hybrid mobile applications 2 Building and customizing a multichannel application using Web Experience Factory Building a hybrid application with camera access using Worklight and Web Experience Factory

3 Why multichannel web sites? 3 Users expect access to your web content and applications from any device Users increasingly expect an optimized experience on smartphones and tablets You can build and maintain one site for all devices, not multiple sites Your pages and applications have the same URL for any device

4 What does it take to build and deliver a multichannel site? A web site framework Tools for building and managing a complete site that includes content and applications Site rendering and navigation UI for any device An application development framework Render application UI optimized for any device without maintaining multiple code bases Support for mobile-specific features such as geolocation A content creation and delivery framework Create, approve, publish content Render content with UI optimized for any device 4

5 What does it take to build and deliver a multichannel site? A web site framework WebSphere Portal Tools for building and managing a complete site that includes content and applications The premier web site management framework Site rendering and navigation UI for any device responsive theme provides multichannel site rendering and navigation An application development framework Web Experience Factory Render application UI optimized for any device without maintaining multiple code bases Multichannel Feature Pack includes OOTB multichannel UI Support for mobile-specific features such as geolocation Dynamic Profiling can generate different code for different device classes A content creation and delivery framework Create, approve, publish content Render content with UI optimized for any device 5 WCM and Content Template Catalog (CTC) CTC 4.0 provides OOTB multichannel content rendering

6 Multichannel Web Site Desktop Web Browser Tablet Web Browser Smartphone Web Browser Firewall HTML/JS/CSS, Ajax REST services WebSphere Portal Server Personalization, access control, customization, navigation, etc. Portlets Web Experience Factory portlets, RAD portlets, social portlets, etc. Enterprise applications and services Content IBM Connections and social services

7 Demo multichannel web site

8 New Responsive Portal Theme Out of the box responsive support in Build sites faster that automatically adapt site navigation, layout and look and feel to screen size and device Out of the box support for leading phones and tablets (Apple, Android) Sample/patterns showing how a customers to make their own responsive themes, layouts, styles, and content responsive 8 IBM Web Experiences IBM

9 Key techniques for multichannel UI support Responsive Web Design (RWD) techniques Use CSS techniques in the client such as media queries and container classes in order to style elements for specific devices and contexts Both techniques are used extensively in CTC4 styles See following slides for examples Generate markup based on device user agent On the server, look at device user agent of incoming request Deliver markup and code that's tailored for the type of device 9

10 Responsive techniques: CSS media query With CSS media query, CSS styles can be different for different device sizes In this example layout, on a narrow phone screen the picture is above the text; on a wide/landscape screen the picture is at the left of text.fp80_ctclist.ctclistitem.itemimage img { height: 100px; width: screen and (max-width:435px) {.fp80_ctclist.ctclistitem.itemimage { float: none;width:97%;}.fp80_ctclist.ctclistitem.itemimage img { height: auto;width: 100%;} } 10

11 Responsive techni ques: container classes By using multiple CSS class selectors, styling is different based on what container an element is within For example, portlet styles can adjust based on whether the portlet is in a wide or narrow column on a portal page.wpthemeframe.wpthemelayoutcontainers.blockheading { font-size: 1.8em; color: #115D94;....wpthemeFrame.wpthemeLayoutContainers.wpthemeNarrow.blockHeading { font-size: 1.1em; color: #222222; text-transform: uppercase;... 11

12 Generating markup based on device user agent: Web Experience Factory device type profiling With device type profiling, a single WEF model can generate different code and markup based on the requesting device type Device types can be managed using Portal's device classification database, a properties file, or other mechanisms Any aspect of application can be controlled by device type: Turn features on/off Change layout Etc. Smartphones Desktop Sales Orders Application Model Smartphone Tablet

13 About design approaches for mobile and multichannel There are two general design style approaches you might consider for mobile UI: 1)You may want a web site that has a seamless look across all devices UI adapts for each device for a nice user experience but has a consistent look across devices This is the approach we're showing in most of this presentation 2)You may want very mobile-specific design styles on smartphones and tablets, while using a more traditional design on desktops UI for mobile devices may use the UX style guidelines for the specific device (e.g., ios, Android), or you can have a more generic smartphone UI Both approaches are well supported by WebSphere Portal and Web Experience Factory

14 Agenda Multichannel web applications and web sites Hybrid mobile applications 14 Building and customizing a multichannel application using Web Experience Factory Building a hybrid application with camera access using Worklight and Web Experience Factory

15 Three types of Mobile Applications Mobile web applications and multi-channel web sites Accessible over the internet without installing software Use device browsers to provide native-looking applications Built with standard web technologies (HTML5, CSS, JS) Hybrid applications Installed applications that use web rendering components on the device with a native application shell Leverage standard web technologies (HTML5, CSS, JS) Provide the ability to use native device features Native applications Installed applications built using each device's native SDK

16 Three types of Mobile Applications Mobile web applications and multi-channel web sites Accessible over the internet without installing software Use device browsers to provide native-looking applications Built with standard web technologies (HTML5, CSS, JS) Hybrid applications Installed applications that use web rendering components on the device with a native application shell Leverage standard web technologies (HTML5, CSS, JS) Provide the ability to use native device features Native applications Installed applications built using each device's native SDK Use WebSphere Portal and Web Experience Factory for rapid development of mobile web apps Combine Portal and Web Experience Factory with Worklight to provide hybrid features

17 Using IBM WebSphere Portal with Worklight WebSphere Portal provides a complete framework for building and managing multichannel web sites Sites can include dozens of applications and services, managed content, targeted and personalized delivery Sites can be accessed from any mobile or desktop device With Worklight, you can create an application that's installed on a mobile device and displays a complete Portal-managed web site that includes hybrid device functions Multichannel Portal-based web site Camera, local storage, contact list, notifications, etc. Hybrid features (camera) in Portal-based web site, viewed within an installed Worklight app

18 Multichannel Site with IBM Worklight Desktop Web Browser Smartphone Web Browser Tablet Web Browser Worklight Hybrid Shell Installed App Firewall & Proxy Security check, notification registration, etc. HTML/JS/CSS, Ajax REST services WebSphere Portal Server Personalization, access control, customization, navigation, etc. Portlets Web Experience Factory portlets, RAD portlets, social portlets, etc. Content Enterprise applications and services Worklight Server Notifications, application authorization, app validity, update service, etc. IBM Connections and social services

19 Demo hybrid application displaying multichannel web site

20 IBM Worklight and server-hosted hybrid applications A Worklight application installed on a device can include a browser view of a server-hosted application This is what allows applications running on Portal or WebSphere Application Server to be displayed in a Worklight application The server-hosted application can include Javascript calls to Worklight's Cordova API for access to device features such as camera, contacts, local storage, etc. The server-hosted application can be built using all the rapid development tools of IBM Web Experience Factory In the Worklight documentation, see for example Module 45.1 Integrate Existing Web Content

21 Agenda Multichannel web applications and web sites Hybrid mobile applications 21 Building and customizing a multichannel application using Web Experience Factory Building a hybrid application with camera access using Worklight, Web Experience Factory, and the new Camera builder

22 What is Web Experience Factory? Model-based development framework for creating web applications and portlets Out of the box capabilities simplify and speed development Supports multi-channel web sites and applications Easier and faster than traditional coding to develop exceptional web experiences Includes 150+ out-of-the-box builders that accelerate development Dynamic profiling allows you to write once, deploy to many devices 2012 IBM Corporation 22 Exceptional Web Experience Conference Europe

23 About the new Multichannel Feature Pack for Web Experience Factory 8.0 Available now as a download from Solutions Catalog Key features: Multichannel and Responsive UI support: New Layouts for the Data Layout builder New Responsive Web Design (RWD) themes including compatibility with CTC4 and WebSphere Portal Mobile themes New wizard making it easy to include this new support IBM Worklight Camera Builder Easily add hybrid camera capabilities to a model

24 About our sample application Lets users view citizen reports on issues such as potholes, graffiti, vandalism, streetlights out, etc. Later, we'll add the ability for users to post new reports that include a picture from a mobile device camera Uses key multichannel techniques: Responsive design Device type profiling

25 Service provider/consumer model architecture Web Experience Factory DB or other back end data source Provider builders SQL Data Services, Web services, REST services, SAP, Domino, PeopleSoft, Siebel, etc. Data transforms and schemas References to Java classes/libraries Service Interface operations and schemas Service (provider) model Presentation (consumer) model Presentation builders Service Consumer UI Themes View & Form, Data Services UI, Input Form, Data Page Data Field Settings Data Layout UI customization builders Desktop Tablet Phone 2012 IBM Corporation 25

26 Adding the Feature Pack archives to a project Download and unzip the Feature Pack it contains two WEF archive ZIP files and a readme file Import both of the archive ZIP files into your project, by right-clicking the project and selecting Import, Web Experience Factory Archive Your project must also have the Mobile feature set enabled 2012 IBM Corporation 26

27 The service provider model Contains just a single SQL Table Create builder This builder creates and populates a database table report_demo Initial data can be taken from an XML file, report_data.xml Running the generated test harness for the provider model 2012 IBM Corporation 27

28 Creating the consumer model To build the consumer or portlet model, we'll use the new Multichannel List and Detail (Feature Pack for 8.0) wizard from Feature Pack Then we'll add a few builders to enable create support and to customize the application a little Detailed steps are on following slides 2012 IBM Corporation 28

29 Creating the consumer model, continued Select File, New, Web Experience Factory Model Select your project (which must have the Feature Pack archives imported already) Select Multichannel List and Detail (Feature Pack for 8.0) for Model Type 2012 IBM Corporation 29

30 Creating the consumer model, continued Enter reports as the name, and select the provider model Enter Demo Reports as the portlet title 2012 IBM Corporation 30

31 Creating the consumer model, continued For View Data Operation, select listreports Create a link to details and select the REPORTDATE column, and select retrievereports as the operation for retrieving details data 2012 IBM Corporation 31

32 Creating the consumer model, continued As the input value for retrieving details data, select the ID field of the Row data in the reportsview_selectedrow Data variable The SelectedRowData variable is created by builders to hold data when you click on a record in a table or list 2012 IBM Corporation 32

33 Creating the consumer model, continued In the Data Field Settings screen, make the following changes Hide the ID field Set the IMGFILE field type to Image Display Set the REPORTTYPE field type to Select, and for Choices specify Graffiti, Pothole, Vandalism, Sign Damage, Streetlight, Other Enter Demo Reports as the page header text 2012 IBM Corporation 33

34 Creating the consumer model, continued In the Data Layout screen, you'll specify the layout you want to use for your list of data Select the Layout Template Thumbnail Multi-Line List (Feature Pack for 8.0) Set the values and styles as shown 2012 IBM Corporation 34

35 Creating the consumer model, continued On the last screen of the wizard, enter your desired model name and press Finish to complete the wizard 2012 IBM Corporation 35

36 OK, we finished the wizard now what do we have in the generated model? The wizard creates a model with 10 builders, generating two pages You don't have to use this wizard you could add the same builders from the builder picker one at a time (but that's more work) Next, we'll run the model, then walk through the builders to see what they do Two generated pages Ten builders 2012 IBM Corporation 36

37 Running the model View and details pages on desktop browser View and details pages on phone browser 2012 IBM Corporation 37

38 Walk-through of builders generated by wizard 1 - Comment builder includes some comments about potential next steps for this model Comment builders are also used to group builders together, such as grouping all the builders for one part of a portlet's functionality 2012 IBM Corporation 38

39 Walk-through of builders, continued 2, 3, 4 - Theme builders for desktop, phone, and tablet UI Themes in WEF let you control all the look and feel aspects of an entire set of applications in a central place: CSS styles Smart refresh and page loading progress indicators Page layouts Table and form layout rules (HTML templates) Table highlighting and paging controls Profiled to device type 2012 IBM Corporation UI Theme for desktop profile The three themes in this model are automatically profiled by device type, so that only one is enabled at a time depending on client device 39

40 Walk-through of builders, continued 5 - Portlet Adapter This builder makes a model available to run as a portlet In the builder you specify the portlet's name, title, and other settings After adding a Portlet Adapter builder to a model, you need to publish your project once in order to make the portlet available to Portal 2012 IBM Corporation 40

41 Walk-through of builders, continued 6 - Service Consumer This builder allows the model to access all the operations of a service provider It generates a Data Service that you can use to select operations In the case, the wizard has automatically populated the ID input for the retrievereports operation 2012 IBM Corporation 41

42 Walk-through of builders, continued 7 - View and Form This builder can generate List, Details, Update, and Search screens based on Data Service operations In this case the List and Details pages are enabled 2012 IBM Corporation 42

43 Walk-through of builders, continued 8 - Data Field Settings This builder lets you easily control the appearance and behavior of all the fields in an application Automatically reference a shared library of Rich Data Definitions For each field, you can control labels, visibility, column sorting, validation, field type (drop-down, checkbox, rich text editor, date picker, etc.), and more 2012 IBM Corporation 43

44 Walk-through of builders, continued 9 - Data Layout This builder generates a wide variety of layouts for lists and repeating data You select a layout, then select the stylesheet file, then assign data fields into placeholder locations in the layout 2012 IBM Corporation 44

45 Walk-through of builders, continued 10 - Text This builder simply adds some text to one or more pages In this case, all the pages have a placeholder location for page_header_text, so the text will appear on all pages 2012 IBM Corporation 45

46 Customizing and enhancing the model WEF has a very rich set of builders and other tools for customizing and enhancing your models A large set of builders is available to add or modify functionality Dojo widgets, data charts, events and actions, formatting, navigation, data transform, etc., etc. Use the WYSIWYG Design view to move fields, hide, group, change layout When you need complete control of page layout, use the right-click commands to Export HTML for Customization Pages can be iteratively edited with any external tools or by design team 2012 IBM Corporation 46

47 Enable and configure File Upload support for the project File Upload (for uploading pictures) must be enabled by setting properties in the WEB-INF/config/override.properties file Add the properties shown below # This enables upload for the project bowstreet.upload.enabled=true # This sets the directory where uploaded files will be stored upon successful upload. bowstreet.upload.destinationpath=${bowstreet.rootdirectory}/../demo # This determines the maximum file size that can be uploaded at one time in KiloBytes. bowstreet.upload.maxfilesizek= IBM Corporation 47

48 Add the new portlet to a Portal test page Publish the project to your Portal test server Add the portlet to a page Note: if you want anonymous access to your portlets, you need to set Resource Permissions using Portal Administration, and edit the User role to add All Anonymous Users to the role 2012 IBM Corporation 48

49 Agenda Multichannel web applications and web sites Hybrid mobile applications 49 Building and customizing a multichannel application using Web Experience Factory Building a hybrid application with camera access using Worklight, Web Experience Factory, and the new Camera builder

50 New in Feature Pack: Camera Builder 50 Adds all the Cordova Javascript needed to invoke device camera and upload photos Optionally enables geolocation support IBM Web Experiences IBM

51 Camera builder samples on wiki CameraTest A very simple model using Camera builder, with no external dependencies This is a good model for verifying your configuration for using the Camera builder CitizenReports Lets users report issues such as graffiti, similar to what we're building in this presentation Stores report data in a database table CheckDeposit Shows how to use the Camera builder to let users take pictures of the front and back of a check Uses a stub service provider with no persistent storage of data

52 Configuring your development environment To build hybrid applications using the combination of Worklight and Web Experience Factory, you will need: A Worklight development environment with the device SDKs you'll be using (we're showing Android) The WEF Designer and a Portal or WAS server for testing Worklight/Cordova JavaScript files must be available on your server (see articles on wiki and developerworks for how to do this) These slides assume that you have those pieces in place, and that you can, for example, build and run a Hello, world Worklight Android application

53 Building a Worklight hybrid shell that points to Portal server Create a new Worklight Project of type Hybrid Application, and then give a name to the application Click Finish

54 Building a Worklight hybrid shell, continued Find your app within the project (under apps ), and select the right-click command New, Worklight Environment

55 Building a Worklight hybrid shell, continued Select Android phones and tablets and click Finish

56 Building a Worklight hybrid shell, continued Adding the Android environment will automatically create a new Android project called <projectname><app-name>android You won't edit the Android project directly since it's automatically generated and updated from your Worklight project You will use it to run the Android application

57 Building a Worklight hybrid shell, continued Now we'll edit three pieces of the default Worklight app: The app's Java class The app's config.xml file The app's Android Manifest file First, locate the Java file for the app and open it for editing It's in the app's folder, in android/native/src/com/<appname>

58 Building a Worklight hybrid shell, continued Edit the Java file to be similar to the following, by adding two imports and updating the method code This example IP address is for using the Android emulator; for a real device you would use the Portal's host name instead package com.reportsdemoapp; import import import import android.os.bundle; android.webkit.cookiemanager; android.webkit.cookiesyncmanager; com.worklight.androidgap.wldroidgap; public class ReportsDemoApp extends WLDroidGap public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); CookieSyncManager.createInstance(appView.getContext()); CookieManager.getInstance().removeSessionCookie(); // URL to Portal, using the host machine IP address used by Android emulator super.loadurl(" } public void loadurl(string url) { loadurl(url,false); } }

59 Building a Worklight hybrid shell, continued Locate the config.xml file in the app's android/native/res/xml folder and open it for editing Add a line similar to the following, to add your server to the Android whitelist Again, this is for the emulator; use the address of your server if you're running from a real device <access origin="

60 Building a Worklight hybrid shell, continued Locate the AndroidManifest.xml in the app's android/native folder and open it for editing Add these lines to the manifest in order to enable the permissions we'll be needing <uses-permission <uses-permission <uses-permission <uses-permission android:name="android.permission.camera" /> android:name="android.permission.access_coarse_location" /> android:name="android.permission.access_fine_location" /> android:name="android.permission.write_external_storage" />

61 Building a Worklight hybrid shell, continued Now right-click on the app folder and select Run As, Build All and Deploy This will update the Android native app with your changes

62 Building a Worklight hybrid shell, continued Now we're ready to run the hybrid application Right-click the Android application and select Run As, Android Application

63 Building a Worklight hybrid shell, continued Portal is now visible within the hybrid app shell Now we're ready to add the camera support

64 Adding a Create form to the WEF application Add an Input Form builder, setting the values as shown Additionally, in the Advanced section, disable the Generate main input

65 Adding a Create form, continued In the Outline view, drag the new Input Form builder so it's just above the Data Field Settings builder

66 Adding a Create form, continued Add a Button for navigating from the View page to the new Create Page

67 Adding a Create form, continued Next we'll hide some of the inputs on the Create page Add a Data Field Settings builder that references just that page Set the IMGFILE, REPORTDATE, LAT, and LON fields to Hide Always

68 Adding camera support Add a Camera builder Set the name as camera Select the Create page as the page Leave the Camera Layout HTML at the default, which displays a button for taking a picture and a placeholder for a thumbnail Leave Picture Source set to Camera and use the default setting for Thumbnail Display Enable Capture Geolocation Data

69 Adding camera support, continued Fill out the Target Field values in the Captured Picture Information table as shown This lets you save values related to a picture into the variable that's associated with the Create page This is what lets you easily pass information about a picture into a service operation

70 Adding camera support In the Advanced section, set the Subfolder For Uploaded Picture to reports Leave other inputs at their defaults Click OK

71 Run the model as a web application Click Run to run the model standalone Click New Report No camera options are shown, since the application is running as a pure web application, not a hybrid application Your submitted report will not have an accompanying image

72 Run as part of a hybrid application Run the Android application again, navigate to the page with the new portlet, and try the camera support

73 Run as part of a hybrid application, continued Click the Take Picture button to put the device or emulator into camera mode Take a picture, and approve it A thumbnail is displayed

74 Run as part of a hybrid application, continued Fill out the report type and comments fields, then click Submit The new report is added to the database table

75 Summary With the latest versions of WEF and Portal, you have state-of-the-art tools for building mobile and multi-channel web applications and web sites Build and manage a single site that renders on any device By combining IBM Worklight with WEF and Portal, you can create a hybrid application that's installed on a mobile device and displays a complete Portalmanaged web site with native device functions Use features such as camera where you need them Download these latest tools and get started! IBM Portal with the new responsive theme Multichannel Feature Pack for Web Experience Factory 8.0 IBM Worklight 5.0.5

76 Key resources for Web Experience Factory Web Experience Factory Community on developerworks Web Experience Factory wiki Includes samples and articles, best practices documents, and links to resources Learning Roadmap from the Web Experience Factory wiki Covers topics from your first installation to advanced topics such as creating builders Web Experience Factory forums on developerworks These are very active and are monitored closely by the Web Experience Factory team

77 Questions?

78 Legal disclaimer IBM Corporation All Rights Reserved. The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. If the text contains performance statistics or references to benchmarks, insert the following language; otherwise delete: Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. If the text includes any customer examples, please confirm we have prior written approval from such customer and insert the following language; otherwise delete: All customer examples described are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual environmental costs and performance characteristics may vary by customer. Please review text for proper trademark attribution of IBM products. At first use, each product name must be the full name and include appropriate trademark symbols (e.g., IBM Lotus Sametime Unyte ). Subsequent references can drop IBM but should include the proper branding (e.g., Lotus Sametime Gateway, or WebSphere Application Server). Please refer to for guidance on which trademarks require the or symbol. Do not use abbreviations for IBM product names in your presentation. All product names must be used as adjectives rather than nouns. Please list all of the trademarks that you use in your presentation as follows; delete any not included in your presentation.please review text for proper trademark attribution of IBM products. At first use, each product name must be the full name and include appropriate trademark symbols (e.g., IBM Lotus Sametime Unyte ). Subsequent references can drop IBM but should include the proper branding (e.g., Lotus Sametime Gateway, or WebSphere Application Server). Please refer to for guidance on which trademarks require the or symbol. Do not use abbreviations for IBM product names in your presentation. All product names must be used as adjectives rather than nouns. Please list all of the trademarks that you use in your presentation as follows; delete any not included in your presentation. If you reference Adobe in the text, please mark the first use and include the following; otherwise delete: Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States, and/or other countries. If you reference Java in the text, please mark the first use and include the following; otherwise delete: Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. If you reference Microsoft and/or Windows in the text, please mark the first use and include the following, as applicable; otherwise delete: Microsoft and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both. If you reference Intel and/or any of the following Intel products in the text, please mark the first use and include those that you use as follows; otherwise delete: Intel, Intel Centrino, Celeron, Intel Xeon, Intel SpeedStep, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. If you reference UNIX in the text, please mark the first use and include the following; otherwise delete: UNIX is a registered trademark of The Open Group in the United States and other countries. If you reference Linux in your presentation, please mark the first use and include the following; otherwise delete: Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of others. If the text/graphics include screenshots, no actual IBM employee names may be used (even your own), if your screenshots include fictitious company names (e.g., Renovations, Zeta Bank, Acme) please update and insert the following; otherwise delete: All references to [insert fictitious company name] refer to a fictitious company and are used for illustration purposes only. 78

JMP305: JumpStart Your Multi-Channel Digital Experience Development with Web Experience Factory IBM Corporation

JMP305: JumpStart Your Multi-Channel Digital Experience Development with Web Experience Factory IBM Corporation JMP305: JumpStart Your Multi-Channel Digital Experience Development with Web Experience Factory 2014 IBM Corporation Agenda Multi-channel applications and web sites Rapid development with the model-based

More information

Effective PMR Submission Best Practice. IBM Learn Customer Support

Effective PMR Submission Best Practice. IBM Learn Customer Support Effective PMR Submission Best Practice IBM Learn Customer Support PMR Best Practices When submitting a PMR, please make sure you provide as much information as you have. This allows the team to troubleshoot,

More information

AD406: What s New in Digital Experience Development with IBM Web Experience Factory

AD406: What s New in Digital Experience Development with IBM Web Experience Factory AD406: What s New in Digital Experience Development with IBM Web Experience Factory Jonathan Booth, Senior Architect, Digital Experience Tooling, IBM Adam Ginsburg, Product Manager, Digital Experience

More information

2010 Exceptional Web Experience

2010 Exceptional Web Experience 2010 Exceptional Web Experience Session Code: TECH-D07 Session Title: What's New In IBM WebSphere Portlet Factory Jonathan Booth, Senior Architect, WebSphere Portlet Factory, IBM Chicago, Illinois 2010

More information

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory IBM Corporation 2011 Who am I? 2 Agenda Mobile web applications and Web Experience Factory Tour of Web Experience

More information

IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply IBM Corporation

IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply IBM Corporation IBM InfoSphere Data Replication s Change Data Capture (CDC) Fast Apply Agenda - Overview of Fast Apply - When to use Fast Apply - The available strategies & when to use - Common concepts - How to configure

More information

Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0

Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0 Developing Web Applications for Smartphones with IBM WebSphere Portlet Factory 7.0 WebSphere Portlet Factory Development Team 6 September 2010 Copyright International Business Machines Corporation 2010.

More information

What s New IBM Multi-Channel Feature Pack 2 for IBM Web Experience Factory 8.0.x IBM Corporation

What s New IBM Multi-Channel Feature Pack 2 for IBM Web Experience Factory 8.0.x IBM Corporation What s New IBM Multi-Channel Feature Pack 2 for IBM Web Experience Factory 8.0.x 2013 IBM Corporation Leaders leverage social business for a competitive advantage IBM MobileFirst As a mobile enterprise,

More information

What's New in IBM WebSphere Portlet Factory and Introducing IBM Lotus Connections 2.5 Portlets

What's New in IBM WebSphere Portlet Factory and Introducing IBM Lotus Connections 2.5 Portlets What's New in IBM WebSphere Portlet Factory 6.1.5 and Introducing IBM Lotus Connections 2.5 Portlets Jason Cornell, Product Manager WebSphere Portlet Factory and Dashboard Accelerator 2009 IBM Corporation

More information

IBM Social Rendering Templates for Digital Data Connector

IBM Social Rendering Templates for Digital Data Connector IBM Social Rendering Templates for Digital Data Dr. Dieter Buehler Software Architect WebSphere Portal / IBM Web Content Manager Social Rendering Templates for DDC- Overview This package demonstrates how

More information

Application Integration with WebSphere Portal V7

Application Integration with WebSphere Portal V7 Application Integration with WebSphere Portal V7 Rapid Portlet Development with WebSphere Portlet Factory IBM Innovation Center Dallas, TX 2010 IBM Corporation Objectives WebSphere Portal IBM Innovation

More information

IBM Db2 Warehouse on Cloud

IBM Db2 Warehouse on Cloud IBM Db2 Warehouse on Cloud February 01, 2018 Ben Hudson, Offering Manager Noah Kuttler, Product Marketing CALL LOGISTICS Data Warehouse Community Share. Solve. Do More. There are 2 options to listen to

More information

How to Develop Responsive Applications with IBM MQ Light (beta) Matthew Whitehead WebSphere MQ Development 1st July 2014

How to Develop Responsive Applications with IBM MQ Light (beta) Matthew Whitehead WebSphere MQ Development 1st July 2014 How to Develop Responsive Applications with IBM MQ Light (beta) Matthew Whitehead WebSphere MQ Development 1st July 2014 (Also see Mark Phillips' session at 3.25pm this afternoon) 2014 IBM Corporation

More information

Technical Deep Dive Session

Technical Deep Dive Session Technical Deep Dive Session Today s agenda Planning your Lotus Notes & Domino 8 Rollout: Why Everyone Will Want Lotus Notes 8 Hardware and Software Requirements Install and Upgrade Options Pre-upgrade

More information

Innovate 2013 Automated Mobile Testing

Innovate 2013 Automated Mobile Testing Innovate 2013 Automated Mobile Testing Marc van Lint IBM Netherlands 2013 IBM Corporation Please note the following IBM s statements regarding its plans, directions, and intent are subject to change or

More information

What s New in the IBM Lotus Notes Client. Kevin O Connell, Consulting Manager, IBM Asia Pacific

What s New in the IBM Lotus Notes Client. Kevin O Connell, Consulting Manager, IBM Asia Pacific Technical Track What s New in the IBM Lotus Notes Client Kevin O Connell, Consulting Manager, IBM Asia Pacific ID101 What's New in the IBM Lotus Notes Client Kevin O'Connell Asia Pacific Consulting Manager

More information

Getting started with WebSphere Portlet Factory V7.0.0

Getting started with WebSphere Portlet Factory V7.0.0 Getting started with WebSphere Portlet Factory V7.0.0 WebSphere Portlet Factory Development Team 29 September 2010 Copyright International Business Machines Corporation 2010. All rights reserved. Abstract

More information

What's New in IBM Notes 9.0 Social Edition IBM Corporation

What's New in IBM Notes 9.0 Social Edition IBM Corporation What's New in IBM Notes 9.0 Social Edition IBM Client Strategy The flexible and comprehensive collaboration solution the client the server Universal access Remain productive regardless of location Browser

More information

Getting started with WebSphere Portlet Factory V6.1

Getting started with WebSphere Portlet Factory V6.1 Getting started with WebSphere Portlet Factory V6.1 WebSphere Portlet Factory Development Team 29 July 2008 Copyright International Business Machines Corporation 2008. All rights reserved. Abstract Discover

More information

InfoSphere Data Replication CDC Troubleshooting

InfoSphere Data Replication CDC Troubleshooting InfoSphere Data Replication CDC Troubleshooting 1 Agenda How to approach a problem Collecting error information Troubleshooting Resources Questions 2 2 How to approach a problem 3 3 Understanding CDC Architecture

More information

20 years of Lotus Notes and a look into the next 20 years Lotusphere Comes To You

20 years of Lotus Notes and a look into the next 20 years Lotusphere Comes To You 20 years of Lotus Notes and a look into the next 20 years Lotusphere Comes To You Kevin Cavanaugh, Vice President, Messaging and Collaboration Lotus Software and WebSphere Portal email@us.ibm.com Organizations

More information

IBM Rational Application Developer for WebSphere Software, Version 7.0

IBM Rational Application Developer for WebSphere Software, Version 7.0 Visual application development for J2EE, Web, Web services and portal applications IBM Rational Application Developer for WebSphere Software, Version 7.0 Enables installation of only the features you need

More information

Lotus Symphony. Siew Chen Way Lotus Technical Consultant

Lotus Symphony. Siew Chen Way Lotus Technical Consultant Lotus Symphony Siew Chen Way Lotus Technical Consultant What is Lotus Symphony? A set of office productivity applications Create, edit, share documents, spreadsheets, and presentations Can handle the majority

More information

Extending the value of your current collaboration investments now and in the future

Extending the value of your current collaboration investments now and in the future Extending the value of your current collaboration investments now and in the future Simon Lee ASEAN Lotus Technical Manager 2007 IBM Corporation IBM Lotus collaboration product strategy Rich client Microsoft

More information

What's New in IBM Notes 9.0 Social Edition

What's New in IBM Notes 9.0 Social Edition What's New in IBM Notes 9.0 Social Edition Jaitirth V. Shirole Advisory Software Engineer, IBM http://www.ibm.com/developerworks/mydeveloperworks/profiles/user/jaitirth Snehal Devasthali System Software

More information

Using Smartphone devices with IBM WebSphere Portlet Factory

Using Smartphone devices with IBM WebSphere Portlet Factory Using Smartphone devices with IBM WebSphere Portlet Factory January 2010 Copyright International Business Machines Corporation 2010. All rights reserved. This article with the accompanying sample shows

More information

Optimize Your Heterogeneous SOA Infrastructure

Optimize Your Heterogeneous SOA Infrastructure Optimize Your Heterogeneous SOA Infrastructure SHARE Boston 2010 Walter Falk IBM, Executive Director Cloud Business Development wfalk@us.ibm.com The world is getting smarter more instrumented, interconnected,

More information

Lotus Technical Night School XPages and RDBMS

Lotus Technical Night School XPages and RDBMS Lotus Technical Night School XPages and RDBMS Note: Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing

More information

What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012

What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012 What's New in IBM WebSphere Portal Version 8? Open Mic November 6, 2012 Stefan Liesche Web Experience Solution and Platform Chief Architect, STSM Stefan Koch Chief Programmer - WebSphere Portal IBM Collaboration

More information

WebSphere Commerce Developer Professional

WebSphere Commerce Developer Professional Software Product Compatibility Reports Product WebSphere Commerce Developer Professional 8.0.1+ Contents Included in this report Operating systems Glossary Disclaimers Report data as of 2018-03-15 02:04:22

More information

Getting started with WebSphere Portlet Factory V6

Getting started with WebSphere Portlet Factory V6 Getting started with WebSphere Portlet Factory V6 WebSphere Portlet Factory Development Team 03 Jan 07 Copyright International Business Machines Corporation 2007. All rights reserved. Abstract Discover

More information

What's Coming in IBM WebSphere Portlet Factory 7.0

What's Coming in IBM WebSphere Portlet Factory 7.0 What's Coming in IBM WebSphere Portlet Factory 7.0 IBM Corporation Legal Disclaimer The information on the new product is intended to outline our general product direction and it should not be relied on

More information

Portail : WebSphere Portlet Factory RIA et Web 2.0 autour de WebSphere Portal

Portail : WebSphere Portlet Factory RIA et Web 2.0 autour de WebSphere Portal LOT02P5 Portail : WebSphere Portlet Factory RIA et Web 2.0 autour de WebSphere Portal Arjen Moermans arjen.moermans@nl.ibm.com IT Specialist Lotus Techworks SWIOT 2009 IBM Corporation Legal Disclaimer

More information

Active Energy Manager. Image Management. TPMfOSD BOFM. Automation Status Virtualization Discovery

Active Energy Manager. Image Management. TPMfOSD BOFM. Automation Status Virtualization Discovery Agenda Key: Session Number: 53CG 550502 Compare and Contrast IBM ~ ~ Navigator for IBM i Tim Rowe timmr@us.ibm.com 8 Copyright IBM Corporation, 2009. All Rights Reserved. This publication may refer to

More information

IBM Unified Communications and Collaboration. Get Social with UCC...

IBM Unified Communications and Collaboration. Get Social with UCC... IBM Unified Communications and Collaboration Get Social with UCC... Rick Schonbrun Business Unit Executive, Worldwide Sales Unified Communications and Collaboration IBM Collaboration Solutions Group The

More information

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Stuart Duguid Portal & Workplace Specialist TechWorks, IBM Asia-Pacific Overview / Scope The aim of

More information

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller REST APIs on z/os How to use z/os Connect RESTful APIs with Modern Cloud Native Applications Bill Keller bill.keller@us.ibm.com Important Disclaimer IBM s statements regarding its plans, directions and

More information

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation IBM Lotus Notes 8.5 Version to Version Comparison Overview This presentation highlights the evolutionary value provided across selected releases of IBM Lotus Notes software by outlining selected enhancements

More information

Lotus Quickr 8.0: Technical Architecture

Lotus Quickr 8.0: Technical Architecture Lotus Quickr 8.0: Technical Architecture Chai Shong Phua 2007 IBM Corporation Agenda 1 2 Functional Overview Architecture 3 Customization 3 Lotus Quickr: Power to the People Lotus Quickr self-service workspaces

More information

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise IBM Forms V8.0 Forms Experience Builder - Portal Integration Lab Exercise Catalog Number Copyright IBM Corporation, 2012 US Government Users Restricted Rights - Use, duplication or disclosure restricted

More information

IBM Exam C Developing Enterprise Mobile Applications with IBM Worklight and IBM WebSphere Portal Version: 6.0 [ Total Questions: 122 ]

IBM Exam C Developing Enterprise Mobile Applications with IBM Worklight and IBM WebSphere Portal Version: 6.0 [ Total Questions: 122 ] s@lm@n IBM Exam C2040-404 Developing Enterprise Mobile Applications with IBM Worklight and IBM WebSphere Portal Version: 6.0 [ Total Questions: 122 ] Topic 1, Volume A Question No : 1 - (Topic 1) What

More information

IBM Worklight An Overview

IBM Worklight An Overview IBM Worklight 6.0 - An Overview Gal Shachor IBM Distinguished Engineer, Chief Architect Worklight Greg Truty IBM Distinguished Engineer, Chief Architect IBM MobileFirst Amit Ben-Sheffer Head of Product

More information

IBM Application Runtime Expert for i

IBM Application Runtime Expert for i IBM Application Runtime Expert for i Tim Rowe timmr@us.ibm.com Problem Application not working/starting How do you check everything that can affect your application? Backup File Owner & file size User

More information

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux

IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux IBM Infrastructure Suite for z/vm and Linux: Introduction IBM Tivoli OMEGAMON XE on z/vm and Linux August/September 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject

More information

Track 3 Session 5. IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser. Stefan Neth

Track 3 Session 5. IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser. Stefan Neth Track 3 Session 5 IBM Notes Browser Plug-in:Leverage your IBM Notes Application investment in a Browser Stefan Neth stefan.neth@de.ibm.com IBM Collaboration Solutions Client Technical Specialist 1 Please

More information

Lotusphere IBM Collaboration Solutions Development Lab

Lotusphere IBM Collaboration Solutions Development Lab Lotusphere 2012 IBM Collaboration Solutions Development Lab Lab 01 Building Custom Install Kits for IBM Lotus Notes Clients 1 Introduction: Beginning with IBM Lotus Notes Client version 8.0, customizing

More information

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database Creating a SQL Service with IBM WebSphere Portlet Factory May, 2009 Copyright International Business Machines Corporation 2009. All rights reserved. This article with the accompanying sample shows you

More information

BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications

BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications BP115 Deploying and Managing Your IBM Lotus Domino XPages Applications Warren Elsmore Consultant Bluewave Matt White Consultant London Developer Co-op Warren Elsmore Senior Architect with Organiser of

More information

IBM Lotus Notes in XenApp Environments

IBM Lotus Notes in XenApp Environments IBM Lotus Notes in XenApp Environments Open Mic Webcast September 28, 2011 11:00 AM EDT 2011 IBM Corporation Open Mic Webcast: IBM Lotus Notes in XenApp environments September 28 th @ 11:00 AM EDT (15:00

More information

Terminal Applications Scalability testing using Rational Performance Tester version 8.1

Terminal Applications Scalability testing using Rational Performance Tester version 8.1 Terminal Applications Scalability testing using Rational Performance Tester version 8.1 A practical guide on 5250 Green Screen applications Version: 1.0 Date: 12/05/2009 Author: Benoit Marolleau Product

More information

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs

Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs IBM Software Group Using Question/Answer Wizards and Process Slots to configure an RMC process/wbs Bruce MacIsaac Rational Method Composer Product Manager bmacisaa@us.ibm.com Agenda Process builder Process

More information

Digital Experience Overview and WCM What's New

Digital Experience Overview and WCM What's New Digital Experience Overview and WCM What's New IBM Digital Experience Version 8.5 Web Content Management IBM Ecosystem Development 2014 IBM Corporation Please Note IBM s statements regarding its plans,

More information

WebSphere Commerce Professional

WebSphere Commerce Professional Software Product Compatibility Reports Product WebSphere Commerce Professional 8.0.1+ Contents Included in this report Operating systems Glossary Disclaimers Report data as of 2018-03-15 02:04:22 CDT 1

More information

Uffe Sorensen. Lotus Messaging & Collaboration Director. IBM Software Group Northeast Europe, Middle-East & Central / South Africa. dk.ibm.

Uffe Sorensen. Lotus Messaging & Collaboration Director. IBM Software Group Northeast Europe, Middle-East & Central / South Africa. dk.ibm. Uffe Sorensen Lotus Messaging & Collaboration Director IBM Software Group Northeast Europe, Middle-East & Central / South Africa Uffe @ dk.ibm.com 2007 IBM Corporation Today s agenda: All about real business

More information

Mobile Portal Accelerator 7.0 Developing Mobile Portal Content with MPA WebSphere User Group

Mobile Portal Accelerator 7.0 Developing Mobile Portal Content with MPA WebSphere User Group Mobile Portal Accelerator 7.0 Developing Mobile Portal Content with MPA WebSphere User Group Soheel Chughtai Early Program Manager Agenda Business Perspective Web Content Management Mobile Portal Solutions

More information

V6R1 System i Navigator: What s New

V6R1 System i Navigator: What s New Agenda Key: Session Number: V6R1 System i Navigator: What s New Tim Kramer - timkram@us.ibm.com System i Navigator web enablement 8 Copyright IBM Corporation, 2008. All Rights Reserved. This publication

More information

IBM Corporation

IBM Corporation 1 Fernando Cortés Responsable de ventas de IBM Big Data. 16 Junio 2014 Big Data Analytics en Telco Analytics NOW Crecimiento de los datos 3 Fuentes de Datos Normalización Explotación y casos Datos Transaccionales

More information

IBM Forms Experience Builder

IBM Forms Experience Builder IBM Forms Experience Builder Bernd Beilke Digital Experience Solutions Architect Introduction Web forms are part of an engaging experience Natural part of the page no plug-ins required Highly dynamic and

More information

IBM Rational Host Access Transformation Services, Version 7.1

IBM Rational Host Access Transformation Services, Version 7.1 Extend and reuse your host assets IBM Rational Host Access Transformation Services, Version 7.1 Highlights Enhances 3270 and 5250 green screens with a user-friendly GUI Enables you to quickly extend host

More information

Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight

Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight Developing Enterprise Services for Mobile Devices using Rational Software Architect / Worklight Sandeep Katoch Architect, Rational Software Architect Development sakatoch@in.ibm.com Agenda Introduction

More information

InfoSphere Guardium 9.1 TechTalk Reporting 101

InfoSphere Guardium 9.1 TechTalk Reporting 101 InfoSphere Guardium 9.1 TechTalk Reporting 101 Click to add text Dario Kramer, Senior System Architect dariokramer@us.ibm.com 2013 IBM Corporation Acknowledgements and Disclaimers Availability. References

More information

Ensuring a smooth upgrade to Sametime and IFR 1

Ensuring a smooth upgrade to Sametime and IFR 1 Ensuring a smooth upgrade to Sametime 8.5.2 and 8.5.2 IFR 1 Tony Payne, Sametime L3 February 29,2012 2011 IBM Corporation Agenda Plan Prepare Execute Troubleshoot Validate Known Fixes 2011 IBM Corporation

More information

WebCenter Interaction 10gR3 Overview

WebCenter Interaction 10gR3 Overview WebCenter Interaction 10gR3 Overview Brian C. Harrison Product Management WebCenter Interaction and Related Products Summary of Key Points AquaLogic Interaction portal has been renamed

More information

Collaboration for a Greener World. Kevin O' Connell Consulting Manager, Lotus Software, IBM Asia Pacific

Collaboration for a Greener World. Kevin O' Connell Consulting Manager, Lotus Software, IBM Asia Pacific Collaboration for a Greener World Kevin O' Connell Consulting Manager, Lotus Software, IBM Asia Pacific Legal disclaimer IBM Corporation 2008. All Rights Reserved. The information contained in this publication

More information

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM

IBM TRIRIGA Application Platform Version 3 Release 5.3. User Experience User Guide IBM IBM TRIRIGA Application Platform Version 3 Release 5.3 User Experience User Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 19. This edition

More information

IBM SPSS Text Analytics for Surveys

IBM SPSS Text Analytics for Surveys Software Product Compatibility Reports Product IBM SPSS Text Analytics for Surveys 4.0.1.0 Contents Included in this report Operating systems Hypervisors (No hypervisors specified for this product) Prerequisites

More information

IBM Lotus Sametime and Unified Communications and Collaboration. Strategy and Technical Roadmap

IBM Lotus Sametime and Unified Communications and Collaboration. Strategy and Technical Roadmap IBM Lotus Sametime and Unified Communications and Collaboration Strategy and Technical Roadmap stephen_londergan@us.ibm.com March 2007 A new reason to look at Lotus Sametime 2006: the year of Lotus Sametime.

More information

IBM i 7.3 Features for SAP clients A sortiment of enhancements

IBM i 7.3 Features for SAP clients A sortiment of enhancements IBM i 7.3 Features for SAP clients A sortiment of enhancements Scott Forstie DB2 for i Business Architect Eric Kass SAP on IBM i Database Driver and Kernel Engineer Agenda Independent ASP Vary on improvements

More information

Part 2: Notes Plug-in Development

Part 2: Notes Plug-in Development Working smarter with collaborative applications built on IBM Lotus Notes and Domino 8.5 Part 2: Notes Plug-in Development July 1st, 2009 Pierre Carlson Sr. Software Engineer Expeditor Development Michael

More information

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps Experience SAP HANA Cloud Portal Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps TABLE OF CONTENTS TUTORIAL AGENDA... 3 PREREQUISITES... 3 EXERCISE 1: CREATE AND CONFIGURE A NEW

More information

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

Lab 1: Getting Started with IBM Worklight Lab Exercise

Lab 1: Getting Started with IBM Worklight Lab Exercise Lab 1: Getting Started with IBM Worklight Lab Exercise Table of Contents 1. Getting Started with IBM Worklight... 3 1.1 Start Worklight Studio... 5 1.1.1 Start Worklight Studio... 6 1.2 Create new MyMemories

More information

Unified Task List Developer Pack

Unified Task List Developer Pack Unified Task List Developer Pack About the Developer Pack The developer pack is provided to allow customization of the UTL set of portlets and deliver an easy mechanism of developing task processing portlets

More information

IBM Worklight V5.0.6 Getting Started

IBM Worklight V5.0.6 Getting Started IBM Worklight V5.0.6 Getting Started Creating your first Worklight application 17 January 2014 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

Server for IBM i. Dawn May Presentation created by Tim Rowe, 2008 IBM Corporation

Server for IBM i. Dawn May Presentation created by Tim Rowe, 2008 IBM Corporation Integrated Web Application Server for IBM i Dawn May dmmay@us.ibm.com Presentation created by Tim Rowe, timmr@us.ibm.com IBM i integrated Web application server the on-ramp to the Web 2 Agenda Integrated

More information

Featuring: Call Hierarchy and Program Structure diagrams,

Featuring: Call Hierarchy and Program Structure diagrams, IBM Software Group Rational Developer for IBM i (RDi) Application Diagram Viewer Featuring: Call Hierarchy and Program Structure diagrams, Last Update: 9/10/2009 2009 IBM Corporation Agenda Application

More information

Get Started on SOA. People Entry Point Interaction and Collaboration Services. Case for an SOA Portal

Get Started on SOA. People Entry Point Interaction and Collaboration Services. Case for an SOA Portal Get Started on SOA People Entry Point Interaction and Collaboration Services Case for an SOA Our customers are our highest priorities; our employees are our highest cost We need to make our employees more

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Lotus Learning Management System R1

Lotus Learning Management System R1 Lotus Learning Management System R1 Version 1.0.4 March 2004 Quick Install Guide G210-1793-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE

More information

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0

WP710 Language: English Additional languages: None specified Product: WebSphere Portal Release: 6.0 General information (in English): Code: WP710 Language: English Additional languages: Brand: Lotus Additional brands: None specified Product: WebSphere Portal Release: 6.0 WW region: WorldWide Target audience:

More information

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps WebSphere Puts Business In Motion Put People In Motion With Mobile Apps Use Mobile Apps To Create New Revenue Opportunities A clothing store increases sales through personalized offers Customers can scan

More information

How To Customize the SAP User Interface Using Theme Editor

How To Customize the SAP User Interface Using Theme Editor SAP NetWeaver How-To Guide How To Customize the SAP User Interface Using Theme Editor Applicable Releases: SAP NetWeaver 7.0 and 7.11 Version 1.0 June 2010 Copyright 2010 SAP AG. All rights reserved. No

More information

Extended Search Administration

Extended Search Administration IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 Note! Before using

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : C9520-927 Title : Developing Portlets and Web Applications with IBM Web Experience Factory 8.0 Vendors

More information

The Now Platform Reference Guide

The Now Platform Reference Guide The Now Platform Reference Guide A tour of key features and functionality START Introducing the Now Platform Digitize your business with intelligent apps The Now Platform is an application Platform-as-a-Service

More information

IBM Lotus Domino WebMail

IBM Lotus Domino WebMail Help increase business efficiency by extending easy-to-use, cost-effective Lotus Domino e-mail to more of your organization IBM Lotus Domino WebMail Highlights Provides basic browser-based Supports multiple

More information

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management

Lab DSE Designing User Experience Concepts in Multi-Stream Configuration Management Lab DSE-5063 Designing User Experience Concepts in Multi-Stream Configuration Management February 2015 Please Note IBM s statements regarding its plans, directions, and intent are subject to change or

More information

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle WebCenter Portal and ADF Development Richard Maldonado Principal Product Manager 2 Copyright 2012, Oracle and/or its affiliates.

More information

Lawson M3 7.1 Large User Scaling on System i

Lawson M3 7.1 Large User Scaling on System i Lawson M3 7.1 Large User Scaling on System i IBM System i Paul Swenson paulswen@us.ibm.com System i ERP, Lawson Team Version Date: November 15 2007 Statement of Approval... 3 Introduction... 4 Benchmark

More information

Oracle. Engagement Cloud Implementing Digital Customer Service in Engagement Cloud. Release 13 (update 18A)

Oracle. Engagement Cloud Implementing Digital Customer Service in Engagement Cloud. Release 13 (update 18A) Oracle Engagement Cloud Implementing Digital Customer Service in Engagement Cloud Release 13 (update 18A) Release 13 (update 18A) Part Number E92370-02 Copyright 2011-2018, Oracle and/or its affiliates.

More information

BlackBerry Integration With IBM WebSphere Everyplace Access 4.3

BlackBerry Integration With IBM WebSphere Everyplace Access 4.3 BlackBerry Integration With IBM WebSphere Everyplace Access 4.3 Integration Note Research In Motion 2003 Research In Motion Limited. All Rights Reserved. Contents Integration overview... 3 Related resources...

More information

An Oracle White Paper April Oracle Application Express 5.0 Overview

An Oracle White Paper April Oracle Application Express 5.0 Overview An Oracle White Paper April 2015 Oracle Application Express 5.0 Overview Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Rational Asset Manager V7.5.1 packaging October, IBM Corporation

Rational Asset Manager V7.5.1 packaging October, IBM Corporation https://jazz.net/projects/rational-asset-manager/ Rational Asset Manager V7.5.1 packaging October, 2011 IBM Corporation 2011 The information contained in this presentation is provided for informational

More information

IBM Systems for Cognitive Solutions IBM Machine Learning for z/os

IBM Systems for Cognitive Solutions IBM Machine Learning for z/os IBM Systems for Cognitive Solutions IBM Machine Learning for z/os Khadija Souissi IBM Client Center Boeblingen Machine Learning takes center stage Gartner identifies Machine Learning as the Top Trend in

More information

z/osmf 2.1 Advanced Programming

z/osmf 2.1 Advanced Programming z/osmf 2.1 Advanced Programming Joey Zhu (zhuxiaoz@cn.ibm.com) IBM Corporation March 4, 2015 Session Number 16935 Permission is granted to SHARE Inc. to publish this presentation paper in the SHARE Inc.

More information

Deploying Siebel Open UI Siebel Innovation Pack 2017, Rev. A

Deploying Siebel Open UI Siebel Innovation Pack 2017, Rev. A [1]Siebel CRM Deploying Siebel Open UI Siebel Innovation Pack 2017, Rev. A E54321_01 December 2017 Siebel CRM Deploying Siebel Open UI, Siebel Innovation Pack 2017, Rev. A E54321_01 Copyright 2005, 2017

More information

Extending the liberty profile

Extending the liberty profile Extending the liberty profile Dr Alex Mulholland, Senior Technical Staff Member IBM 1644 2013 IBM Corporation Content Overview of product extensions what, where, why? Features What they are Creating a

More information

WebSphere Commerce Developer Professional 9.0

WebSphere Commerce Developer Professional 9.0 Software Product Compatibility Reports Continuous Delivery Product - Long Term Support Release WebSphere Commerce Developer Professional 9.0 Contents Included in this report Operating systems Hypervisors

More information

Getting Started What?? Plan of Action Features and Function Short demo

Getting Started What?? Plan of Action Features and Function Short demo System & Technology Group WebSphere Development Studio Client for iseries WDSc - An Overview for iseries Developers Daniel Hiebert dhiebert@us.ibm.com St. Louis User Group - Gateway 400 February 9, 2005

More information

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

More information