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

Size: px
Start display at page:

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

Transcription

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

2 Agenda Multi-channel applications and web sites Rapid development with the model-based tools of Web Experience Factory Description of the sample application Build and deploy a multi-channel responsive application Build and test a service provider model for accessing a relational database Next steps and additional resources

3 Multi-channel applications and web sites 3

4 Why multi-channel web sites? 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

5 What does it take to build and deliver a multi-channel site? A web site framework WebSphere Portal Tools for building and managing a complete site that includes content and applications The premier web site 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 WCM and Content Template Catalog (CTC) Create, approve, publish content CTC 4.1 provides OOTB multi-channel content rendering Render content with UI optimized for any device

6 Multichannel Web Site Desktop Web Browser Tablet Web Browser Smartphone Web Browser 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 multi-channel web site

8 Portal responsive theme Build sites 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 Samples/patterns showing how to make your own responsive themes, layouts, styles, and content 8 IBM Web Experiences IBM Corporation

9 Key techniques for multi-channel UI support Responsive Web Design (RWD) techniques In the client, use CSS techniques 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 techniques: 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 or look Etc. Single WEF Source Model

13 Rapid development with the model-based tools of Web Experience Factory 13

14 What is Web Experience Factory? Model-based development framework for creating web applications and portlets Easier and faster than traditional coding Generate code the way you want it 14 Out of the box capabilities simplify and speed development Supports multi-channel web sites and applications Includes 150+ out-of-the-box builders that accelerate development Dynamic profiling and responsive web design allow you to write once, deploy to many devices

15 Web Experience Factory automation of design patterns WEF features a model-based development approach using builders A builder is a tool with a wizard-like configuration UI that automates a design pattern, generating all the necessary application code and artifacts Builders are combined in a model and edited using the Web Experience Factory graphical Designer IDE Web Experience Factory code generation engine Model Builder 1 Builder 2 Etc. Libraries and templates 15 Application code

16 Benefits of the model-based code generation approach 1) Rapid development Quickly generate fully-functional applications using a data-driven approach based on a service or data source Use complex technologies with no coding or learning curve, such as Ajax, back end data integration, mobile UI construction Customize the generated applications using provided tools and by integrating your code and your UI designs where desired 2) Flexibility and runtime variability using Dynamic Profiling Support mobile and multi-channel delivery from a single source model Generate multiple variations from single source model for user role, geography, customer/partner, etc. Allow runtime customization of applications 3) Automate and enforce your development standards and practices 16 Tailor the code generation framework for your standards and practices and design patterns

17 Tour of the Designer IDE Project files and folders Run Model icon Application Tree and Pages views browse generated artifacts Design View WYSIWYG view of generated pages Icons for Add Builder, Regen Model Builder list for this model Open Design View Palette Problems view (ignore at your peril) Tabs for other views such as Properties Tabs to switch between Source, Design, Model XML, and Builder Call Editor views

18 Description of the sample application 18

19 View and update a database of parks information From database to responsive UI Our sample application lets users view and update a database of park information The application is implemented with two models: A data provider that accesses the data source A user interface or consumer model that generates the UI Database Data Service Provider Model WSDL/SOAP WSDL/SOAP Web Service Web Service User Interface Model (Service Consumer)

20 Database and web service data providers We ll show two implementations of a data service provider: SQL database: we ll create and populate a table using the SQL Table Create builder WSDL/SOAP web service: we ll invoke a WSDL-based web service Here s the schema for the data:

21 UI-first development We ll be taking a UI-first development approach First, we ll use data from an XML file and build an initial implementation of our application The XML File Data Service builder on the WEF wiki is used for this We ll publish the model and deploy it on a portal page Then we ll build a service provider that connects to real relational database Finally we ll switch our UI layer to use the real back end provider When would you use this UI-first approach? This approach lets you build your UI before you have access to your final data source Some of the team can be working on UI while others work on data access It is useful for quick UI prototyping

22 Prerequisites what you ll need to build these samples Portal this includes the responsive theme with support for mobile devices Multichannel Feature Pack 2 for Web Experience Factory 8.0 The latest fixpack for WEF 8.0, as described on the Feature Pack documentation site After installing the fixpack, create a WEF project and publish it to the Portal server In your project you will need to enable the Mobile and Dojo features

23 Build and deploy a multi-channel responsive application 23

24 Import the Feature Pack and sample archives to your project Download and unzip the Feature Pack it contains two WEF archive ZIP files and a readme file Import the MultichannelResponsiveUI.zip archive into your project, by right-clicking the project and selecting Import, Web Experience Factory Archive Your project must also have the Mobile and Dojo feature sets enabled Import the sample parks_multichannel.zip available on the WEF wiki here: Import the xml_file_data_service_builder.zip archive available here:

25 Test the XML file service provider model Open the model samples/parks/parksxmlprovider This uses the XML File Data Service builder to access data from an XML file, so that we can develop UI without our final back-end data source Run the model and use the generated service test harness to confirm the data is available

26 Use the Multichannel List & Detail wizard Create a new Web Experience Factory model and select your project Click Next

27 Use the Multichannel List & Detail wizard, continued Select Multichannel List and Detail as the model type Click Next

28 Use the Multichannel List & Detail wizard, continued Provide a name (we re using parks1 ), then select ParksXmlProvider as the Provider Model Enable Deploy as Portlet and Enable Device Type Profiling Click Next

29 Use the Multichannel List & Detail wizard, continued Provide a portlet title Click Next

30 Use the Multichannel List & Detail wizard, continued For the main view Data Service Operation, select getparks Click Next

31 Use the Multichannel List & Detail wizard, continued On the Details screen, enable Create Link To Details and select the options shown Click Next

32 Use the Multichannel List & Detail wizard, continued On this screen you need to select the runtime value used to retrieve a single record from the Data Service Set the value to: $ {Variables/parks1View_SelectedRowData/ParksServiceRow/ID} The <name>_selectedrowdata variable is generated by the View & Form builder, and it holds all the values when the user clicks on a row Note: in the generated model, this setting is in the Override Inputs section of the Service Consumer builder Click Next

33 Use the Multichannel List & Detail wizard, continued On this screen you need to change settings for four fields: Hide the ID field ( Hide Always ) Set the IMGFILENAME field type to Image Display Set the COUNTRY field type to Select (drop down) and the Lookup Table to Country Codes Set the DESCRIPTION field type to Rich Text Editor Set the Page Header Text as shown Click Next

34 Use the Multichannel List & Detail wizard, continued In this screen we ll specify the Data Layout to use for the list display We ll use the layout that s based on a CTC (Content Template Catalog) layout Set the Layout Template, Style Sheet File, and Data Layout Fields as shown Once you select a Layout Template, the Data Layout Fields section shows all the placeholder locations for the selected layout In the Value column you select your data fields Click Next

35 Use the Multichannel List & Detail wizard, continued Provide a name for your model and select Finish

36 The generated model after completing the wizard Here's the Designer after creating the model You can click between the two pages in the Application Tree view or Pages view to see them in the WYSIWYG Design view Application Design Tree and Pages WYSIWYG Views View You can double-click any builders in the Outline view to view or change settings We recommend leaving the main window of Designer on Design view so that you can see pages easily Outline View showing Builders

37 Run the model The list is displayed using the layout you selected

38 See some of the responsive web design behavior Middle By resizing your browser to a narrow size you can see some of the responsive behavior section of paging UI is hidden Items are laid out with photo at top and text fields underneath

39 View details screen After clicking anywhere on one of the park listings you ll see the details for that park

40 Publish and run the model as a portlet Publish the project to your server You need to publish since you ve just added a new portlet model Note that most other editing of models can be tested in portal without republishing Then go to the portal page where you want to display the portlet (or create a new page if you want) and add the portlet to the page

41 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

42 Walk-through of builders, continued Profiled to device type UI Theme for desktop profile 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 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

43 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 to make the portlet available to Portal

44 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 invoke operations In the case, the wizard has automatically populated the ID input for the getpark operation in the Override Inputs section

45 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

46 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 Uses a shared library of Rich Data Definitions For each field, you can control labels, visibility, sorting, validation, field type (drop-down, checkbox, rich text editor, date picker, etc.), and more

47 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

48 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 with a tag using that name

49 View the portlet on a portal page Save the page and go to View mode

50 View the portlet on multiple devices

51 Add Update support Next we ll add Update support to our application In Designer, double-click the View & Form builder Go to the Update Page Support section and change three inputs: Enable Create Update Page Set Update Method as shown Set Update Next Action to parksdemo1view_showresults, in order to refresh the list after making an update Click OK

52 View the Update screen in Design view Notice that a third application page has now been generated Select the Update page by clicking in the Application Tree or Pages view Here you can see the default layout for the fields on the Update page

53 Hide the IMGFILENAME field on the Update Page We will hide the IMGFILENAME field on the update page since we're not building support for uploading/updating image files Right-click the IMGFILENAME field in Design view and select Data Field Settings / Hide as shown This adds a Data Field Settings builder that hides the IMGFILENAME field and is scoped just to the Update page Confirm that the IMGFILENAME field is no longer visible in Design view

54 Test the Update support Save and Run the model From the Details screen, click Edit to go to the Update screen Change a value and click Submit to see your updates in the main list view

55 Try the Update support on mobile devices Note that the Update screen is laid out differently on smartphone The field labels are above the inputs instead of side-by-side This is controlled by the UI Theme for the device type Note: to see your model updates on device, clear cookies or logout/login

56 Customizing and enhancing the UI model WEF has a very rich set of builders and other tools for customizing and enhancing your user interface models A large set of builders is available to add or modify functionality Dojo widgets, events and actions, formatting, navigation, data transform, etc., etc. Use the WYSIWYG Design view to move fields, hide, group, or 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

57 Build and test a service provider model for accessing a relational database 57

58 Overview of database provider In this section we ll create a Data Service Provider model for accessing a table from a database The database table will be created and populated using the SQL Table Create builder That builder will create the table and generate a Data Service with operations for complete CRUD (Create/Read/Update/Delete) support We ll also enable testing support, which will generate a complete test harness for testing all the operations To provide similar functionality for an existing DB table, use the SQL Data Services builder If you need more control over your DB access, use other SQL builders such as SQL Call (which lets you invoke any SQL statement)

59 Create a new empty model Create a new model in the same project Select Empty for the model type (under Factory Starter Models) Name the model and select Finish to save it

60 Add SQL Table Create builder Click the Add a Builder Call icon at the top of the Outline view Select SQL Table Create, in the SQL category Click OK

61 Add SQL Table Create builder, continued In the builder, specify the Name Parks Click Fetch DataSource Names and then select jdbc/cloudscapeforwef from the drop-down list For Table Name, enter my_parks_table For Import Data, select the same XML file used in our XML file implementation: /WEB-INF/samples/parks/ParkLocations.xml Click Scan Import Data and select No in the popup that appears The builder should look similar to the screenshot at right, with column names filled in from the XML file

62 Add SQL Table Create builder, continued In the Table Columns input, set the PHONE and ID fields to String Make sure that all the columns are String except for LATITUDE and LONGITUDE

63 Add SQL Table Create builder, continued Near the bottom of the builder, open the Sample Data Formats and Advanced sections Set Maximum String Size to 4096 Select Enable Testing Support Then click Create Table You should see a popup message The table was created. Click OK to save and close the builder

64 Testing the SQL provider service Save and Run the model You will see the test harness for this service, with links for testing each operation Click on listparks to view the database table data

65 Update the UI model to use the new SQL provider Now we want to update our UI model to switch from the XML file provider to the SQL database provider we just created A few of the builders in the UI model will need to be updated This is because some operation names are different between the two providers

66 Update the UI model to use the new SQL provider, continued Open the Service Consumer builder by double-clicking it in the Outline view Change the Provider Model to use the SQL provider you created In the Problems view you ll now see some errors displayed that we ll need to fix, with corresponding red X in the Outline view Later (after updating View & Form builder) we ll need to update the Overridden Inputs

67 Update the UI model to use the new SQL provider, continued Open the View & Form builder and make the following changes: Change the View Data Operation to DataServices/parksDemo1/listParks Change the Details Method to DataServices/parksDemo1/retrieveParks Change the Update Method to DataServices/parksDemo1/updateParks Change the Details Link Column to PARKNAME Click OK

68 Update the UI model to use the new SQL provider, continued Now we ll update the input that s used to retrieve a single record retrieveparks gets a single record from ID Open the Service Consumer builder again by double-clicking it in the Outline view In Overridden Inputs, select retrieveparks and set the ID input value to ${Variables/parksDemo1View_SelectedRowData/ParksServiceRow/ID}

69 Update the UI model to use the new SQL provider, continued Open the Data Layout builder and make the following change Change the Container Field to [parksdemo1view_viewpage] parksdemo1view_viewpage/parksrowset/parksrow Select Move Details Link to Row if necessary Click OK

70 Update the UI model to use the new SQL provider, continued Save and Run the model It should look and function exactly as before Now it s using a real SQL database instead of an XML file

71 Using a WSDL-based web service For WSDL-based web services there are two builders available in WEF: Web Service Call provides access to a single operation defined in a WSDL document Web Service Multiple Operations provides access to any/all operations defined in WSDL In our example, we ll use a single Web Service Multiple Operations builder to access all the operations The operation names and fields are the same as our DB example

72 Service provider just a single Web Service Multiple Operations builder WSDL URL All operations enabled

73 Service Consumer UI model same as others The differences for different back ends or services are only in the Service Provider layer model The UI layer doesn t know or care which back end builders are used in the provider

74 Working with service providers and data access The service provider models in our examples were very simple, but there are a large number of builders and techniques available for building providers: Connect to other data sources using some of the other data access builders REST services, Domino, SAP, WCM, etc. Create and use schemas and map/transform data between schemas Use the Service Operation builder, the Transform builders, or LJO code with the IXml API Use the IXml API for Java working with XML data in Java code Use the caching options for cross-user caching where appropriate, in the Service Operation and Cache Control builders 74

75 Next steps and additional resources 75

76 Adding builders to enhance or customize the user interface Once you have an application working, there s a large set of builders you can use to modify or enhance the application, for example: Use the Design View palette to drag new elements or layouts Use the right-click command Export HTML for Customization to customize the HTML for a page Use the mobile or Worklight builders such as Geolocation or Camera to add advanced mobile capabilities Use the Application Page builder to add more pages to your application Use Link or Button builders to add navigation and actions Use the Model Container builder to include another model on a page, with complete interaction support in the contained model

77 Using IBM Worklight to build Camera support for creating new park listings By combining Portal and Web Experience Factory with IBM Worklight, you can: Provide an installed app that accesses your whole web site Use native device features within any portlets on the site Quickly add camera support using WEF s Camera builder With just four builders you can enhance our sample model to add a form for creating new park listings with Camera support Input Form adds a new input form page, using the createparks operation Camera adds complete camera support, using Worklight s JS APIs Link adds a link to access the new page Data Field Settings just hides the IMGFILENAME field on the create page

78 Adding Camera support configuration prerequisites To use Worklight features such as Camera support in a WEF portlet, you need to have the following in place: 1. A Worklight app that points to your Portal site installed on your test device or emulator 2. A WEF project with the Worklight Camera builder imported and with Worklight JavaScript files available See the WEF wiki and developerworks articles for setting this up

79 Adding Camera support, step 1 Input Form builder

80 Adding Camera support, step 2 Camera builder

81 Adding Camera support, step 3 Link builder

82 Adding Camera support, step 4 Data Field Settings builder

83 Creating a new park listing from Android emulator

84 Building multiple application variations with dynamic profiling Dynamic profiling is used to generate multiple application variations from a single source model In our example, profiling was used to generate different variations for desktop/tablet/smartphone devices Variations can be tied to user groups or other attributes For different customers, partners, roles, regions, etc. For different device types desktop vs. smartphone, for example Profiling also supports customization by administrators or end users Enables business users to customize the application without requiring additional coding by developers Any aspect of application can be varied by profile: look and feel, level of functionality, services, logic, etc.

85 Use the resources available on the wiki and forum Samples and articles There are a large number of downloadable samples that illustrate a wide variety of techniques See the Samples Directory page for a categorized list Reusable tools There are a number of tools such as builders and reporting tools that you can download and use in your projects Videos There are several videos for getting started using Experience Factory Web Experience Factory Best Practices forum on developerworks Go here to post questions and to search for previously-answered questions See this slide deck: Tips For Teams Adopting the Web Experience Factory Framework Experience_Factory

86 For more information Join our community: Latest news/blog Access to experts Links to valuable info including forums, wiki, samples etc. The WEF wiki: New RedWiki: IBM Redbooks: Developing Exceptional Multi-Channel Web Experiences: Youtube channel:

87 Growing Your IBM Skills Access to training in more cities local to you, where and when you need it, and in the format you want Global Skills Initiative Use IBM Training Search to locate training classes near to you Demanding a high standard of quality / see the paths to success Academic Initiative Learn about the New IBM Training Model and see how IBM is driving quality Check Training Paths and Certifications to find the course that is right for you Academic Initiative works with colleges and universities to introduce real-world technology into the classroom, giving students the hands-on experience valued by employers in today s marketplace Kenexa is making companies better through HR see how Kenexa can help your company Discover how you can leverage the IBM Analytics Talent Assessment 87 Learning Solutions Analytics Talent Assessment

88 Engage Online SocialBiz User Group socialbizug.org Join the epicenter of Notes and Collaboration user groups Follow us on LinkedIn Participate in the IBM Social Business group on LinkedIn: Facebook Like IBM Social Business on Facebook Social Business Insights blog ibm.com/blogs/socialbusiness Read and engage with our bloggers 88

89 Access Connect Online to complete your session surveys using any: Web or mobile browser Connect Online kiosk onsite 89

90 Acknowledgements and Disclaimers Availability. 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. The workshops, sessions and materials have been prepared by IBM or the session speakers and reflect their own views. They are provided for informational purposes only, and are neither intended to, nor shall have the effect of being, legal or other guidance or advice to any participant. While efforts were made to verify the completeness and accuracy of the information contained in this presentation, it is provided AS-IS without warranty of any kind, express or implied. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this presentation or any other materials. Nothing contained in this presentation 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. 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. 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. Copyright IBM Corporation All rights reserved. U.S. Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Please update paragraph below for the particular product or family brand trademarks you mention such as WebSphere, DB2, Maximo, Clearcase, Lotus, etc. IBM, the IBM logo, ibm.com, [IBM Brand, if trademarked], and [IBM Product, if trademarked] are trademarks or registered trademarks of International Business Machines Corporation in the United States, other countries, or both. If these and other IBM trademarked terms are marked on their first occurrence in this information with a trademark symbol ( or ), these symbols indicate U.S. registered or common law trademarks owned by IBM at the time this information was published. Such trademarks may also be registered or common law trademarks in other countries. A current list of IBM trademarks is available on the Web at Copyright and trademark information at If you have mentioned trademarks that are not from IBM, please update and add the following lines: [Insert any special 3rd party trademark names/attributions here] Other company, product, or service names may be trademarks or service marks of others. 90

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

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

1631 Build Hybrid Multichannel Apps Using IBM Worklight, WebSphere Portal and Web Experience Factory 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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

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

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 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

IBM Compliance Offerings For Verse and S1 Cloud. 01 June 2017 Presented by: Chuck Stauber

IBM Compliance Offerings For Verse and S1 Cloud. 01 June 2017 Presented by: Chuck Stauber IBM Compliance Offerings For Verse and S1 Cloud 01 June 2017 Presented by: Chuck Stauber IBM Connections & Verse Email and collaboration platform designed to help you work better Empower people Teams are

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

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

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

Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A. Lloyd Matthews, U.S. Senate

Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A. Lloyd Matthews, U.S. Senate Reducing MIPS Using InfoSphere Optim Query Workload Tuner TDZ-2755A Lloyd Matthews, U.S. Senate 0 Disclaimer Copyright IBM Corporation 2010. All rights reserved. U.S. Government Users Restricted Rights

More information

Active Workspace 3.4 Configuration. David McLaughlin / Oct 2017

Active Workspace 3.4 Configuration. David McLaughlin / Oct 2017 Active Workspace 3.4 Configuration David McLaughlin / Oct 2017 . Active Workspace Configuration Areas that can and should be configured Tips on how they work, and where to find more information New capabilities

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

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

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

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

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

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

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 2010 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

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

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

DB2 REST API and z/os Connect SQL/Stored Procedures Play a Role in Mobile and API Economics

DB2 REST API and z/os Connect SQL/Stored Procedures Play a Role in Mobile and API Economics DB2 REST API and z/os Connect SQL/Stored Procedures Play a Role in Mobile and API Economics Maryela Weihrauch IBM Distinguished Engineer z Systems Analytics WW Technical Sales and Client Champion Please

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

Innovations in Network Management with NetView for z/os

Innovations in Network Management with NetView for z/os Innovations in Network Management with NetView for z/os Larry Green IBM greenl@us.ibm.com Twitter: @lgreenibm Insert Custom Session QR if Desired. Thursday, August 7, 2014 Session 16083 Abstract NetView

More information

Break out of The Box Integrate existing Domino data with modern websites. Karl-Henry Martinsson, Deep South Insurance

Break out of The Box Integrate existing Domino data with modern websites. Karl-Henry Martinsson, Deep South Insurance 1100 - Break out of The Box Integrate existing Domino data with modern websites Karl-Henry Martinsson, Deep South Insurance 1100 - Break out of The Box Integrate existing Domino data with modern websites

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

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE The process for developing a Rational HATS Web application for a mobile device is the same as developing any Rational HATS Web application, with some considerations

More information

Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5

Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5 www.ibm.com.au Prosphero Intranet Sample Websphere Portal / Lotus Web Content Management 6.1.5 User Guide 7th October 2010 Authors: Mark Hampton & Melissa Howarth Introduction This document is a user guide

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

JSN Sun Framework User's Guide

JSN Sun Framework User's Guide JSN Sun Framework User's Guide Getting Started Layout Overview & Key concepts To start with layout configuration, Go to Extension Template JSN_template_default The first tab you see will be the Layout

More information

Optimize your BigFix Deployment via Customization and Integration. Lee Wei

Optimize your BigFix Deployment via Customization and Integration. Lee Wei Optimize your BigFix Deployment via Customization and Integration Lee Wei Topics / Goals Survey of what is available Walkthrough all the BigFix APIs Imagine the possibilities 2 Prerequisite Relevance Relevance

More information

Your Notes and Domino in the Cloud

Your Notes and Domino in the Cloud Your Notes and Domino in the Cloud ibmcloud.com/social m@nl.ibm.com Maurice Teeuwe Tech. Sales Lead, Europe Page 1 Please Note IBM s statements regarding its plans, directions, and intent are subject to

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

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

Lab Exercise: Building your Site with IBM Digital Experience and CTC

Lab Exercise: Building your Site with IBM Digital Experience and CTC Lab Exercise: Building your Site with IBM Digital Experience and CTC Author: Herbert Hilhorst herbert_hilhorst@fr.ibm.com Document History 3 April 2015 First release Name herbert_hilhorst@fr.ibm.com Copyright

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

PEGACUIS71V1 pegasystems

PEGACUIS71V1 pegasystems PEGACUIS71V1 pegasystems Number: PEGACUIS71V1 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 Which of the following rule types does the Localization wizard translate? (Choose Two) A. Field Value

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

WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA

WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA WebSphere Partner Gateway v6.2.x: EDI TO XML Transformation With FA Mike Glenn(v1mikeg@us.ibm.com) WPG L2 Support September 23, 2014 Agenda (1 of 3) Download EDI Standard Create XML Schema Use the DIS

More information

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August PUBLIC Document Version: August 2018 2018-10-26 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Release Highlights....3 1.1 Anonymous access to public communities....4

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

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

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

IBM's Exceptional Web Experience #IBMexperience

IBM's Exceptional Web Experience #IBMexperience IBM's Exceptional Web Experience #IBMexperience by @IBMwebxperience Vidar Svendsen vidar.svendsen@no.ibm.com Client Technical Professional Client Solution Architect IBM Collaboration Solutions Twitter:

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

Going Mobile with IBM Verse

Going Mobile with IBM Verse 1129 - Going Mobile with IBM Verse René Winkelmeyer, midpoints GmbH Stijn Van Herzele, IBM Tue, 02 Feb 2016 #NewWayToWork Agenda Mail Reimagined What is IBM Verse Mobile? Using IBM Verse Mobile - Hands-On

More information

DESIGN TRANSFORMATIONAL IPAD APPS

DESIGN TRANSFORMATIONAL IPAD APPS DESIGN TRANSFORMATIONAL IPAD APPS Thank you for participating in a workshop at MicroStrategy World 2019. If you missed or did not finish an exercise and want to complete it after the conference, use this

More information

PeopleSoft Applications Portal and WorkCenter Pages

PeopleSoft Applications Portal and WorkCenter Pages An Oracle White Paper April, 2011 PeopleSoft Applications Portal and WorkCenter Pages Creating a Compelling User Experience Introduction... 3 Creating a Better User Experience... 4 User Experience Possibilities...

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

Useful Google Apps for Teaching and Learning

Useful Google Apps for Teaching and Learning Useful Google Apps for Teaching and Learning Centre for Development of Teaching and Learning (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop...

More information

How to Modernize the IMS Queries Landscape with IDAA

How to Modernize the IMS Queries Landscape with IDAA How to Modernize the IMS Queries Landscape with IDAA Session C12 Deepak Kohli IBM Senior Software Engineer deepakk@us.ibm.com * IMS Technical Symposium Acknowledgements and Disclaimers Availability. References

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

Act! Marketing Automation

Act! Marketing Automation Act! Marketing Automation A Guide to Getting Started Helping your business grow with marketing automation Act! Marketing Automation Getting Started Guide 2 Contents Page Page 8 Page 10 Page 11 Page 11

More information

WCMS Responsive Design Template Upgrade Training

WCMS Responsive Design Template Upgrade Training WCMS Responsive Design Template Upgrade Training The purpose of this training session is to provide training to site owners, who are upgrading their WCMS content to the new Responsive Design (RD) template.

More information

Enterprise Caching in a Mobile Environment IBM Redbooks Solution Guide

Enterprise Caching in a Mobile Environment IBM Redbooks Solution Guide Enterprise Caching in a Mobile Environment IBM Redbooks Solution Guide In the current global enterprise business environment, with the millions of applications running across Apple ios, Android, Windows

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 Informix xC2 Enhancements IBM Corporation

IBM Informix xC2 Enhancements IBM Corporation IBM Informix 12.10.xC2 Enhancements 2013 IBM Corporation Acknowledgements and Disclaimers Availability. References in this presentation to IBM products, programs, or services do not imply that they will

More information

IBM Workplace Services Express - Technical Overview and Directions. Stuart Duguid Asia Pacific Portal & Workplace Technical Lead

IBM Workplace Services Express - Technical Overview and Directions. Stuart Duguid Asia Pacific Portal & Workplace Technical Lead IBM Workplace Services Express - Technical Overview and Directions Stuart Duguid Asia Pacific Portal & Workplace Technical Lead Disclaimer The following material is directional in nature and does not imply

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

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

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

Page 1. Peers Technologies Pvt. Ltd. Course Brochure. Share Point 2007

Page 1. Peers Technologies Pvt. Ltd. Course Brochure. Share Point 2007 Page 1 Peers Technologies Pvt. Ltd. Course Brochure Page 2 Overview SharePoint is becoming the web development platform of the future. The ability to quickly plan, design, deploy and utilize effective

More information

"Charting the Course... WebSphere Portal 8 Development using Rational Application Developer 8.5. Course Summary

Charting the Course... WebSphere Portal 8 Development using Rational Application Developer 8.5. Course Summary Course Summary Description This course will introduce attendees to Portlet development using Rational Application Developer 8.5 as their development platform. It will cover JSR 286 development, iwidget

More information

Template Builder User Guide. Product Version 1.0 August 11, 2017

Template Builder User Guide. Product Version 1.0 August 11, 2017 Template Builder User Guide Product Version 1.0 August 11, 2017 Copyright 2017 Vizrt. All rights reserved. No part of this software, documentation or publication may be reproduced, transcribed, stored

More information

Getting started with Convertigo Mobilizer

Getting started with Convertigo Mobilizer Getting started with Convertigo Mobilizer First Sencha-based project tutorial CEMS 6.0.0 TABLE OF CONTENTS Convertigo Mobilizer overview...1 Introducing Convertigo Mobilizer... 1-1 Convertigo Mobilizer

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

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

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

08/10/2018. Istanbul Now Platform User Interface

08/10/2018. Istanbul Now Platform User Interface 08/10/2018 Contents Contents...5 UI16... 9 Comparison of UI16 and UI15 styles... 11 Activate UI16... 15 Switch between UI16 and UI15...15 UI16 application navigator... 16 System settings for the user

More information

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS By Derek Law, Esri Product Manager, ArcGIS for Server Do you want to build web mapping applications you can run on desktop,

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS Web logs (blogs blogs) You can create your own personal Web logs (blogs) using IBM Lotus Notes. Using the blog template (dominoblog.ntf), you create a blog application, such as myblog.nsf, which you can

More information

What s New In the Salesforce Winter 15 Release

What s New In the Salesforce Winter 15 Release What s New In the Salesforce Winter 15 Release Salesforce1 Quick Start Wizard allows you to setup the app in five easy steps Step 1: Setup Navigation Step 2: Setup Action Bar Step 3: Setup Compact

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

IBM Rational Developer for System z Version 7.5

IBM Rational Developer for System z Version 7.5 Providing System z developers with tools for building traditional and composite applications in an SOA and Web 2.0 environment IBM Rational Developer for System z Version 7.5 Highlights Helps developers

More information

IBM Connections Customisation and Integration with Lotus Sametime. Brian

IBM Connections Customisation and Integration with Lotus Sametime. Brian IBM Connections 3.0.1 Customisation and Integration with Lotus Sametime Brian Bermingham bberming@ie.ibm.com @brianbermingham Who Am I? Brian Bermingham Social Software Customer Excellence Twitter: @brianbermingham

More information

NETZONE CMS User Guide Copyright Tomahawk

NETZONE CMS User Guide Copyright Tomahawk NETZONE CMS User Guide Copyright 2015. Tomahawk 1 Phone: + 64 9 522 2333 Email: getintouch@tomahawk.co.nz Tomahawk 2015 www.tomahawk.co.nz 2 NETZONE CMS USER GUIDE WHAT YOU LL FIND INSIDE LOGGING IN 4

More information

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator

Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Optimizing Data Transformation with Db2 for z/os and Db2 Analytics Accelerator Maryela Weihrauch, IBM Distinguished Engineer, WW Analytics on System z March, 2017 Please note IBM s statements regarding

More information

This document contains information that will help you to create and send graphically-rich and compelling HTML s through the Create Wizard.

This document contains information that will help you to create and send graphically-rich and compelling HTML  s through the Create  Wizard. This document contains information that will help you to create and send graphically-rich and compelling HTML emails through the Create Email Wizard. or warranty by AT&T and is subject to change. 1 Contents

More information

DISCLAIMER COPYRIGHT List of Trademarks

DISCLAIMER COPYRIGHT List of Trademarks DISCLAIMER This documentation is provided for reference purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this documentation, this documentation

More information

Oracle Learn Cloud. What s New in Release 15B

Oracle Learn Cloud. What s New in Release 15B Oracle Learn Cloud What s New in Release 15B 10 July 2015 TABLE OF CONTENTS OVERVIEW... 3 RELEASE FEATURE SUMMARY... 3 BI REPORTING BETA CUSTOM REPORTING CAPABILITIES... 5 Terminology... 5 New User Permission...

More information