Developing accessible portals and portlets with IBM WebSphere Portal

Size: px
Start display at page:

Download "Developing accessible portals and portlets with IBM WebSphere Portal"

Transcription

1 Developing accessible portals and portlets with IBM WebSphere Portal Level: Introductory IBM Human Ability and Accessibility Center Austin, Texas February, 2006 Copyright International Business Machines Corporation All rights reserved.

2 Contents Introduction 2 Understanding accessibility 3 Understanding disabilities 4 Why accessibility is important 5 Accessibility standards 6 Web portlet development 6 Testing portlets for accessibility 7 Standard practices 7 IBM WebSphere Portal 8 Why IBM? 9 Summary 9 For more information 10 Introduction A portal serves as a user s single point of access to information, applications, processes, and people. By providing targeted, relevant information to users, presenting a consistent user interface, and offering new ways to access applications, portals deliver the business value of improving productivity and lowering the cost of deploying applications to end users. The building blocks of a portal are portlets. Portlets are Java code and possibly Java Server Pages (JSP ) that access data, provide program logic, and generate HTML fragments, which the portal aggregates into a single, cohesive, and complete HTML document. Portlets can be linked so that a user action in one portlet can generate a request that results in an update to another portlet. The layout of the final page is customizable by the user and the portal administrator, including the number of columns and the positioning of the portlets within those columns. A portal Web page is composed of HTML fragments that are generated by the top-level portal page and each portlet placed on that page. The top-level page layout is generated by the portal server after being customized to the site s look and feel. An accessible portal page is one in which all of the generated HTML fragments are accessible. The deployment team s task is to ensure the accessibility of the top-level portal page when customizing the site s look and feel. The portlet developer s task is to make sure that the portlet s Web page fragments are compliant too. Incorporating accessibility for people with disabilities into portlet development need not be difficult or costly. With help from IBM, you can create accessible portlets easier and faster than you thought was possible. IBM has the software, knowledge and industry leadership to help you create and deploy an accessible Web portal. This article addresses Web portlet accessibility, with a focus on IBM WebSphere Portal. It discusses the importance of accessibility and provides you with development and testing approaches to ensure the accessibility of your Web portlets.

3 Understanding accessibility At the highest level, accessibility is the practice of ensuring that people with disabilities have meaningful access to the information and function provided by computer and information technology. An accessible portal page is one that meets accessibility guidelines, including: Lets users navigate by using only the keyboard Lets users select font sizes, colors and color contrast combinations Supports assistive technologies (AT), such as screen readers and closed captioning Assistive technologies are hardware devices and software applications that are used to increase, maintain, or assist the functional capabilities of people with disabilities. They consist of: Alternative output mechanisms that enable users with sensory or perceptual disabilities to perceive computer output that otherwise they would be unable to see or hear. Alternative input devices that enable users with mobility impairments to operate a computer using alternatives to the standard mouse or keyboard. In short, assistive technologies remove or reduce barriers to enhance productivity. Some examples of assistive technologies are: Screen readers that use text-to-speech synthesizers to read the screen s content Screen magnifiers that enlarge the text and objects displayed on the screen Closed captioning of the speech and audio portion of multimedia content On-screen keyboards that provide virtual keyboard input using the mouse or other pointing devices

4 Assistive technologies (AT) are effective only when applications support the facilities that the AT depends on. For example, a screen reader cannot read a Web page unless the developer follows certain standards to generate accessible HTML, such as providing alternative text descriptions for graphics. One specific example is providing an alternative text description of an image icon of a Next button. Without the text description, a screen reader cannot inform the user that the Next image is really a button for accessing the next page. Understanding disabilities Building accessibility into a Web portal requires an understanding of accessibility standards and guidelines, and how the needs of users with visual, hearing, mobility, and learning disabilities are met by accessibility standard practices. Visual disabilities Visual disabilities include blindness, low vision, and color blindness. People who are blind, and some people with low vision, can only use the keyboard for input; they depend on a screen reader to understand the application s screen output. People with low vision need screen magnifiers to enlarge text and graphics, and possibly a high-contrast color scheme. People who are color blind need information conveyed in ways other than through color differences, for example, by changing visual contrast or pattern, or by using textual labels. Hearing disabilities Hearing disabilities range from deafness to less severe forms of hearing impairment. People who are deaf or hard of hearing require visual representations of auditory information. A suitable accommodation for these people is to provide visual alerts in addition to audio alerts. Mobility disabilities Mobility disabilities include physical impairments that substantially limit movement and fine motor control. People with mobility disabilities might have limited use or no use of their hands, or problems with speed or strength. These individuals might have difficulty using a mouse or keyboard. Portlets that provide larger selection targets can assist people with mobility disabilities.

5 Learning disabilities People with learning disabilities, such as dyslexia and short-term memory deficit, have difficulty reading, writing and comprehending information. For these individuals, more general types of solutions that benefit all users are needed, such as the use of consistent, organized design and simple language. Redundant sources of output (hearing text read aloud as well as seeing it displayed on the screen) are also helpful to users with learning disabilities. Portlets enabled for screen readers and those that can be customized by the user can assist people with learning disabilities. Why accessibility is important There are many compelling reasons for making your Web portal accessible. First, there are many regulations in effect that drive accessibility. For example, the United States government has passed the following laws: The Americans with Disabilities Act of 1990, the Telecommunications Act of 1996, and (the most stringent of all) the 1998 amendments to Section 508 of the Rehabilitation Act of Section 508 requires U.S. Federal government agencies to acquire accessible solutions, which means that a provider of accessible solutions, including Web portal solutions, have a competitive advantage. The United Kingdom and Australia have regulations requiring Web sites to be accessible. Most European countries also have regulations requiring government Web sites to be accessible. Outside the U.S., the commonly adopted standard for Web accessibility is the Worldwide Web Consortium (W3C) Web Content Accessibility Guidelines (WCAG). WCAG pre-dates Section 508 and the minimum level of WCAG conformance is similar to the Section 508 standards, but not identical. Furthermore, WCAG defines two additional levels of conformance that go beyond simple accessibility and provide guidance for increasing accessibility and ease of use for users with disabilities. Second, according to the World Health Organization, over 750 million people worldwide have a disability. Furthermore, today people are living longer. As the population grows older, the number of people with changing needs due to aging will increase significantly. From a competitive standpoint, your company simply cannot afford to overlook this growing market segment.

6 Finally, portals are becoming increasingly important within organizations for communicating with company employees. There are increasing numbers of people with disabilities or with changing needs in the work force. Employers must accommodate these employees by providing accessible intranets. Accessibility standards It is very important that you know the accessibility standards set forth by Section 508 and the WCAG and follow these standards throughout the development process. You can learn about these standards at the following Web sites: Section 508 of the Rehabilitation Act: Electronic and Information Technology Accessibility Standards: W3C Web Accessibility Initiative Web site: The IBM Web Accessibility Checklist, which consists of 16 checkpoints, addresses all of the Section 508 requirements and most, but not all, of the WCAG priority 1 requirements. The checklist includes both implementation and testing techniques. For detailed information about each checkpoint, refer to the developer guidelines for Web accessibility page of the IBM Accessibility Center Web site at You can use this checklist to develop your own checklist to ensure that everyone in your organization involved in designing, developing and testing Web portals comply with accessibility standards. Web portlet development Currently, attention to the checklist items, including the implementation and testing techniques, is required to develop accessible portlets. You should work toward the goal of automating the development process to the greatest extent possible. Automating portlet development will reduce development effort and time, and increase efficiency and consistency. Moreover, you should take advantage of testing and debugging tools to help shorten the development cycle and pinpoint any remaining noncompliant HTML fragments and portlets. For example, to verify that any

7 code that you add during development is accessible, you can configure your testing tool to check the code automatically on a daily basis. Remember, if you start testing early in the development process, before accessibility problems multiply as a result of code reuse or interactions, you can save yourself a great deal of time and frustration. This is true for both automated and manual testing. Testing portlets for accessibility Accessibility testing should be incorporated into normal user interface test procedures. Accessibility testing requires the use of both accessibility checking tools and manual procedures. See the IBM Web accessibility guidelines at for details on testing procedures. See the W3C Web site at for a list of some of the accessibility checking tools available today at. Standard practices Conforming to standard practices has several tangible benefits, including: Lower development costs Faster development An increased user base Compliance with accessibility regulations Following are some standard practices for developing accessible Web portlets. Follow the accessibility checklist throughout the entire development lifecycle (concept, plan, develop, test, and qualify phases). This checklist will help make it clear what needs to be done early in each stage of the development cycle. Learn how to use accessibility checking tools and assistive technology tools to aid in developing and testing your portlets.

8 IBM WebSphere Portal WebSphere Portal rationalizes and simplifies IT infrastructure through an enterprise portal platform that provides a unified user experience and a single point of interaction to applications, content, business processes, and people. WebSphere Portal is the industry s leading portal platform and the only solution to deliver a complete set of portal platform services integration services, portal framework services, portal application services and collaboration services. Additional advantages of WebSphere Portal include: A large network of software vendors has developed portlets that have been tested to work with WebSphere Portal and simplify the integration of enterprise applications into your portal infrastructure. These portlets and other portal solutions are available from the WebSphere Portal Catalog. IBM provides a rich development platform for the development of portlets and portal pages with IBM Rational Application Developer for WebSphere Software and IBM Rational Web Developer for WebSphere Software. These tools allow you to quickly add business value to existing WebSphere Portal deployments. WebSphere Portal supports a variety of hardware platforms and operating systems, so your portal deployment has the scalability and availability to meet your changing business requirements. WebSphere Portal supports open standards, such as the Java Specification Request (JSR) 168 Portlet Specification standard that enables interoperability between portlets and portals. This specification defines the contract between portlet and portlet container, and a set of portlet APIs that address personalization, presentation and security.

9 Why IBM? IBM WebSphere Portal is one of the leading enterprise portal solutions in the market and a key component of the IBM Software Group portfolio. IBM provides organizations around the globe with secure, scalable, open, industry-specific software that helps meet the unique challenges of on demand business. At IBM, we define an on demand business as one whose business processes integrated end-to-end across the company and with key partners, suppliers, and customers can respond with speed to any customer demand, market opportunity, or external threat. WebSphere Portal quickly gets you started on the road to becoming an on demand business by integrated your people with your business applications and processes. The result is that they are more productivity and you can react faster to market conditions and changing customer demands. Summary Accessible Web portals and portlets provide your business a clear competitive advantage by giving you the potential to reach many new customers and new markets. Taking accessibility into account during developing and testing should be a normal part of your portlet development activities. IBM WebSphere Portal provides the flexible, open and extensible framework to help you build comprehensive, integrated, accessible portlets and portals.

10 For more information For more information about accessibility, accessibility standards, accessibility testing tools, WebSphere Portal and other IBM Software Group offerings, refer to the following sites: Accessibility IBM Accessibility Center IBM Systems Journal, Vol. 44, No. 3, 2005 "Managing usability for people with disabilities in a large web presence", by M. King, J. W. Thatcher, M. Bronstad, R. Easton Accessibility standards Section W3C Web Accessibility Initiative Accessibility tools IBM Home Page Reader WebKing WebSphere Portal WebSphere Portal product documentation ml developerworks WebSphere Portal zone WebSphere Portal family

11 IBM WebSphere Developer Technical Journal IBM Software Group offerings IBM Software home page

12 Copyright International Business Machines Corporation 2006 IBM Corporation Software Group Route 100 Somers, NY U.S.A. Produced in the United States of America All Rights Reserved IBM, the IBM logo, Rational and WebSphere are trademarks of International Business Machines Corporation in the United States, other countries or both. Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries or both. Other company, product or service names may be trademarks or service marks of others.

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014)

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Contents: Introduction Key Improvements VPAT Section 1194.21: Software Applications and Operating

More information

VPAT. Voluntary Product Accessibility Template. Version 1.5. Summary Table VPAT. Voluntary Product Accessibility Template. Supporting Features

VPAT. Voluntary Product Accessibility Template. Version 1.5. Summary Table VPAT. Voluntary Product Accessibility Template. Supporting Features Version 1.5 Date: Nov 5, 2014 Name of Product: Axway Sentinel Web Dashboard 4.1.0 Contact for more Information (name/phone/email): Axway Federal 877-564-7700 http://www.axwayfederal.com/contact/ Summary

More information

vcenter Operations Manager Administration 5.0 Online Help VPAT

vcenter Operations Manager Administration 5.0 Online Help VPAT Administration 5.0 Online Help VPAT Product Name: Administration 5.0 Online Help VPAT Since the VPAT must be comprehensive, all Section 508 issues on all pages must be corrected to sustain compliance.

More information

How to Develop Accessible Linux Applications

How to Develop Accessible Linux Applications Sharon Snider Copyright 2002 by IBM Corporation v1.1, 2002 05 03 Revision History Revision v1.1 2002 05 03 Revised by: sds Converted to DocBook XML and updated broken links. Revision v1.0 2002 01 28 Revised

More information

Voluntary Product Accessibility Report

Voluntary Product Accessibility Report Voluntary Product Accessibility Report Compliance and Remediation Statement for Section 508 of the US Rehabilitation Act for OpenText Content Server 10.5 October 23, 2013 TOGETHER, WE ARE THE CONTENT EXPERTS

More information

Summary Table for SolarWinds Web Help Desk

Summary Table for SolarWinds Web Help Desk Date: February 10 th, 2015 Name of Product: (WHD) Contact for more Information: http://www.solarwinds.com/support/ Summary Table for Section 1194.21 Software Applications with. See section 1194.21 below.

More information

PDF Accessibility Overview

PDF Accessibility Overview Contents 1 Overview of Portable Document Format (PDF) 1 Determine the Accessibility Path for each PDF Document 2 Start with an Accessible Document 2 Characteristics of Accessible PDF files 4 Adobe Acrobat

More information

Summary Table for SolarWinds Web Help Desk

Summary Table for SolarWinds Web Help Desk Date: February 25, 2013 Name of Product: SolarWinds Web Help Desk Contact for more Information: http://www.solarwinds.com/support/ Summary Table for Voluntary Product Accessibility Template (VPAT) Remarks

More information

TRI Oracle Empirica Trace 2012 508 Statement of Conformance

TRI Oracle Empirica Trace 2012 508 Statement of Conformance TRI Oracle Empirica Trace 2012 508 Statement of Conformance TRI is committed to providing access to all individuals with or without disabilities seeking information on TRI s installation or Oracle Empirica

More information

Serena Software Voluntary Product Accessibility Report. Summary Table

Serena Software Voluntary Product Accessibility Report. Summary Table Serena Software Voluntary Product Accessibility Report Date: October 22, 2015 Name of Product: Serena Business Manager Contact for more Information (name/phone/email): Dave Easter / deaster@serena.com

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template SANsymphony-V 9.0 Voluntary Product Accessibility Template Version 1.3 The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers

More information

Avaya Speech Analytics Desktop Client 2.0

Avaya Speech Analytics Desktop Client 2.0 Avaya Speech Analytics Desktop Client 2.0 Voluntary Product Accessibility Template (VPAT) Avaya Speech Analytics Desktop Client is a thick client desktop application for the Microsoft Windows operating

More information

Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX. Level of Support & Supporting Features

Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX. Level of Support & Supporting Features Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX (a) When software is designed to run on a system that has a keyboard, product functions shall be

More information

Health Enterprise Medicaid Management Information System

Health Enterprise Medicaid Management Information System Health Enterprise Medicaid Management Information System Voluntary Product Accessibility Template (VPAT) Compliant Learn more about Xerox and Section 508 at our website:: www.xerox.com/section508 Contact

More information

WCAG 2.0 for Designers: Beyond Screen Readers and Captions

WCAG 2.0 for Designers: Beyond Screen Readers and Captions WCAG 2.0 for Designers: Beyond Screen Readers and Captions Loretta Guarino Reid 1 and Andi Snow-Weaver 2, 1 Google, Inc 1600 Amphitheatre Pkwy Mountain View, CA 94043 LorettaGuarino@google.com 2 IBM 11501

More information

HSU Accessibility Checkpoints Explained

HSU Accessibility Checkpoints Explained HSU Accessibility Checkpoints Explained Sources: http://bobby.watchfire.com/bobby/html/en/index.jsp EASI Barrier-free Web Design Workshop (version 4) Paciello, Michael G. WEB Accessibility for People with

More information

UNIVERSAL DESIGN OF DISTANCE LEARNING

UNIVERSAL DESIGN OF DISTANCE LEARNING UNIVERSAL DESIGN OF DISTANCE LEARNING Sheryl Burgstahler, Ph.D. University of Washington Distance learning has been around for a long time. For hundreds of years instructors have taught students across

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Date: April 15, 2008 Name of Product: Summit Central Version 4 Contact for more Information: http://www.miesoftware.com Summary Table Section 1194.21 Software Applications and Operating. Please refer to

More information

Nuance PDF Converter Enterprise 8

Nuance PDF Converter Enterprise 8 8 Date: June 1 st 2012 Name of Product: 8 Contact for more Information: http://nuance.com/company/company-overview/contactus/index.htm or http://nuance.com/company/company-overview/companypolicies/accessibility/index.htm

More information

Contact for more Information: http://www.dameware.com or http://www.dameware.com/products/vpat.asp

Contact for more Information: http://www.dameware.com or http://www.dameware.com/products/vpat.asp Date: 2/10/2003 Name of Product: Contact for more Information: http://www.dameware.com or http://www.dameware.com/products/vpat.asp Summary Table Criteria Supporting Features Remarks and explanations Section

More information

Collaboration solutions for midsized businesses Buyer s guide

Collaboration solutions for midsized businesses Buyer s guide Collaboration solutions for midsized businesses Buyer s guide Increase productivity by improving collaboration across and beyond your business. Give employees access to the information, people and resources

More information

IBM WebSphere Business Integration Monitor, Version 4.2.4

IBM WebSphere Business Integration Monitor, Version 4.2.4 View business results in real time to accelerate informed decision making and help improve business effectiveness IBM WebSphere Business Integration Monitor, Version 4.2.4 Highlights Tracks business process,

More information

An Evaluation and Discussion of the Web Accessibility of Academic Library Web Sites

An Evaluation and Discussion of the Web Accessibility of Academic Library Web Sites An Evaluation and Discussion of the Web Accessibility of Academic Library Web Sites What is Web Accessibility Why it s Important How Academic Libraries are doing Web accessibility means that people with

More information

Overcoming Accessibility Challenges of Web Conferencing

Overcoming Accessibility Challenges of Web Conferencing Overcoming Accessibility Challenges of Web Conferencing Authors: Mary Jo Mueller, IBM Accessibility Standards Lead (presenter) Marc Johlic, IBM Accessibility Consultant Susann Keohane, IBM Accessibility

More information

Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information

Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information Web Accessibility Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information available using any web browser on any

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) Name of Product Date January 8 2016 Engineering Village (EV for short) Completed by Contact for More Information Heather Singleton Heather Singleton User

More information

WESTERN KENTUCKY UNIVERSITY. Web Accessibility. Objective

WESTERN KENTUCKY UNIVERSITY. Web Accessibility. Objective WESTERN KENTUCKY UNIVERSITY Web Accessibility Objective This document includes research on policies and procedures, how many employees working on ADA Compliance, audit procedures, and tracking content

More information

IBM Rational Web Developer for WebSphere Software Version 6.0

IBM Rational Web Developer for WebSphere Software Version 6.0 Rapidly build, test and deploy Web, Web services and Java applications with an IDE that is easy to learn and use IBM Rational Web Developer for WebSphere Software Version 6.0 Highlights Accelerate Web,

More information

Address IT costs and streamline operations with IBM service request and asset management solutions.

Address IT costs and streamline operations with IBM service request and asset management solutions. Service management solutions To support your IT objectives Address IT costs and streamline operations with IBM service request and asset management solutions. Highlights Help service desk technicians become

More information

Integration and Infrastructure Software. IBM WebSphere Application Server Family. Flexible infrastructure for todayʼs business world.

Integration and Infrastructure Software. IBM WebSphere Application Server Family. Flexible infrastructure for todayʼs business world. Integration and Infrastructure Software IBM WebSphere Application Server Family. Flexible infrastructure for todayʼs business world. Build on demand solutions with a more flexible infrastructure. Today

More information

SECTION 508 COMPLIANCE

SECTION 508 COMPLIANCE SECTION 508 COMPLIANCE Section 508 requires that Federal Departments and Agencies provide Electronic and Information Technology (EIT) that s accessible to people with disabilities. The purpose of this

More information

VPAT Voluntary Product Accessibility Template Version 1.3

VPAT Voluntary Product Accessibility Template Version 1.3 ADA COMPLIANCE 1. Does database support ADA compliant browsers? Yes X No If no, does the database make any accommodations in its visual display for visually impaired users? Yes No 2. Voluntary Product

More information

VPAT. Voluntary Product Accessibility Template. Version 1.3

VPAT. Voluntary Product Accessibility Template. Version 1.3 Voluntary Product Accessibility Template Version 1.3 The purpose of the Voluntary Product Accessibility Template, or, is to assist Federal contracting officials and other buyers in making preliminary assessments

More information

IBM Rational Asset Manager

IBM Rational Asset Manager Providing business intelligence for your software assets IBM Rational Asset Manager Highlights A collaborative software development asset management solution, IBM Enabling effective asset management Rational

More information

Address IT costs and streamline operations with IBM service desk and asset management.

Address IT costs and streamline operations with IBM service desk and asset management. Asset management and service desk solutions To support your IT objectives Address IT costs and streamline operations with IBM service desk and asset management. Highlights Help improve the value of IT

More information

Implement a unified approach to service quality management.

Implement a unified approach to service quality management. Service quality management solutions To support your business objectives Implement a unified approach to service quality management. Highlights Deliver high-quality software applications that meet functional

More information

Enterprise content management solutions Better decisions, faster. Storing, finding and managing content in the digital enterprise.

Enterprise content management solutions Better decisions, faster. Storing, finding and managing content in the digital enterprise. Enterprise content management solutions Better decisions, faster Storing, finding and managing content in the digital enterprise. Streamlines the collection, protection, sharing and distribution of digital

More information

Achieving business agility and cost optimization by reducing IT complexity. The value of adding ESB enrichment to your existing messaging solution

Achieving business agility and cost optimization by reducing IT complexity. The value of adding ESB enrichment to your existing messaging solution Smart SOA application integration with WebSphere software To support your business objectives Achieving business agility and cost optimization by reducing IT complexity. The value of adding ESB enrichment

More information

Enhance visibility into and control over software projects IBM Rational change and release management software

Enhance visibility into and control over software projects IBM Rational change and release management software Enhance visibility into and control over software projects IBM Rational change and release management software Accelerating the software delivery lifecycle Faster delivery of high-quality software Software

More information

How To Use Ibm Rational Hats Software

How To Use Ibm Rational Hats Software Enterprise modernization solutions for call center operations White paper May 2008 Reenergize your call center operations. Create happier customers and more productive customer service representatives

More information

Snap Server Manager Section 508 Report

Snap Server Manager Section 508 Report Overland Storage 4820 Overland Ave San Diego, Ca 92123 Snap Server Manager Section 508 Report Summary Table Voluntary Product Accessibility Template Criteria Section 1194.21 Software Applications and Operating

More information

VPAT. Voluntary Product Accessibility Template. Version 1.3

VPAT. Voluntary Product Accessibility Template. Version 1.3 VPAT Voluntary Product Accessibility Template Version 1.3 The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers in making preliminary

More information

IBM WebSphere Business Monitor, Version 6.1

IBM WebSphere Business Monitor, Version 6.1 Providing real-time visibility into business performance IBM, Version 6.1 Highlights Enables business users to view Integrates with IBM s BPM near real-time data on Web 2.0 portfolio and non-ibm dashboards

More information

VPAT Summary. VPAT Details. Section 1194.22 Web-based Internet information and applications - Detail

VPAT Summary. VPAT Details. Section 1194.22 Web-based Internet information and applications - Detail Date: October 8, 2014 Name of Product: System x3755 M3 VPAT Summary Criteria Status Remarks and Explanations Section 1194.21 Software Applications and Operating Systems Section 1194.22 Web-based Internet

More information

Intelledox Designer WCA G 2.0

Intelledox Designer WCA G 2.0 Intelledox Designer WCA G 2.0 Best Practice Guide Intelledox Designer WCAG 2.0 Best Practice Guide Version 1.0 Copyright 2011 Intelledox Pty Ltd All rights reserved. Intelledox Pty Ltd owns the Intelledox

More information

icohere Products and Section 508 Standards Voluntary Product Accessibility Template (VPAT )

icohere Products and Section 508 Standards Voluntary Product Accessibility Template (VPAT ) icohere Products and Section 508 Standards Voluntary Product Accessibility Template (VPAT ) icohere and the Twenty-First Century Communications and Video Accessibility Act of 2010 (CVAA) The webcast portion

More information

IBM Tivoli Service Request Manager

IBM Tivoli Service Request Manager Deliver high-quality services while helping to control cost IBM Tivoli Service Request Manager Highlights Streamline incident and problem management processes for more rapid service restoration at an appropriate

More information

White paper December 2008. Addressing single sign-on inside, outside, and between organizations

White paper December 2008. Addressing single sign-on inside, outside, and between organizations White paper December 2008 Addressing single sign-on inside, outside, and between organizations Page 2 Contents 2 Overview 4 IBM Tivoli Unified Single Sign-On: Comprehensively addressing SSO 5 IBM Tivoli

More information

Sony External USB Floppy Disk

Sony External USB Floppy Disk Sony External USB Floppy Disk August 13, 2008 Sony developed the following Summary and Detailed reports of accessibility information for select products. We hope this information will be helpful to the

More information

Adobe Flash Player 11.9 Voluntary Product Accessibility Template

Adobe Flash Player 11.9 Voluntary Product Accessibility Template Adobe Flash Player 11.9 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Supporting Features. Supports with Exceptions. Supports with Exceptions. Supports

Supporting Features. Supports with Exceptions. Supports with Exceptions. Supports Voluntary Product Accessibility Template (VPAT) Date: April 1, 2008 Name of Product: Kyocera FS-1100 (Desktop Laser Printer) Contact for more Information: William_cassidy@kyoceramita.com Section 1194.21

More information

Six ways to accelerate Android mobile application development

Six ways to accelerate Android mobile application development Six ways to accelerate Android mobile application Creating an integrated solution for collaboration among teams Contents 1 Weaving the invisible thread of innovation 2 Android : vast opportunities and

More information

Web Accessibility Report

Web Accessibility Report Web Accessibility Report AnnArborCIL.org Divye Bokdia Introduction AnnArborcil.org is an accessible website with AAA conformance. Team of four Michigan students (refer team section) and a staff member

More information

COMMITMENT INTEGRITY LEADERSHIP. California State Government Websites. June 2015

COMMITMENT INTEGRITY LEADERSHIP. California State Government Websites. June 2015 California State Government Websites Departments Must Improve Website Accessibility So That Persons With Disabilities Have Comparable Access to State Services Online Report 2014-131 COMMITMENT INTEGRITY

More information

Website Accessibility Under Title II of the ADA

Website Accessibility Under Title II of the ADA Chapter 5 Website Accessibility Under Title II of the ADA In this chapter, you will learn how the nondiscrimination requirements of Title II of 1 the ADA apply to state and local government websites. Chapter

More information

A new home page design is being finalized, which will add a new link to material in other languages through the top navigation of the homepage.

A new home page design is being finalized, which will add a new link to material in other languages through the top navigation of the homepage. Website Translation and Accessibility STAFF REPORT INFORMATION ONLY 16. Date: December 17, 2012 To: From: Toronto Public Library Board City Librarian SUMMARY At its meeting on May 28, 2012 the Toronto

More information

Universal Design and Ethical Practices for Designing. Bryan Ayres, M.Ed., ATP, Director Technology & Curriculum Access Center Easter Seals Arkansas

Universal Design and Ethical Practices for Designing. Bryan Ayres, M.Ed., ATP, Director Technology & Curriculum Access Center Easter Seals Arkansas Universal Design and Ethical Practices for Designing i Accessible Web Environments Bryan Ayres, M.Ed., ATP, Director Technology & Curriculum Access Center Easter Seals Arkansas Contact information Technology

More information

Putting the power of Web 2.0 into practice.

Putting the power of Web 2.0 into practice. White paper July 2008 Putting the power of Web 2.0 into practice. How rich Internet applications can deliver tangible business benefits Page 2 Contents 2 Introduction 3 What Web 2.0 technology can do for

More information

Access to education has always challenged students with disabilities. Accessibility of INSTRUCTIONAL WEB SITES. in Higher Education

Access to education has always challenged students with disabilities. Accessibility of INSTRUCTIONAL WEB SITES. in Higher Education Accessibility of INSTRUCTIONAL WEB SITES in Higher Education A collaborative program offers assessment and consultation to instructional Web site developers for Section 508 compliance By Kay Lewis, Diane

More information

INTEGRATING ACCESSIBILITY INTO THE INFORMATION SYSTEMS CURRICULUM

INTEGRATING ACCESSIBILITY INTO THE INFORMATION SYSTEMS CURRICULUM INTEGRATING ACCESSIBILITY INTO THE INFORMATION SYSTEMS CURRICULUM Jonathan Lazar Department of Computer and Information Sciences Towson University 8000 York Road Towson, Maryland USA 21252 Phone: 410-704-2255

More information

Making WVU Websites Accessible: Meeting the Needs of People with Disabilities

Making WVU Websites Accessible: Meeting the Needs of People with Disabilities Making WVU Websites Accessible: Meeting the Needs of People with Disabilities Tatiana I. Solovieva, EdD, Ashley D. Watts, MS, Jeremy M. Bock, BS Making WVU Websites Accessible: Meeting the Needs of People

More information

IBM Tivoli Composite Application Manager for WebSphere

IBM Tivoli Composite Application Manager for WebSphere Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the life cycle of complex IBM WebSphere-based J2EE

More information

Life insurance policy administration: Operate efficiently and capitalize on emerging opportunities.

Life insurance policy administration: Operate efficiently and capitalize on emerging opportunities. Life insurance policy administration: Operate efficiently and capitalize on emerging opportunities. > RESPOND RAPIDLY TO CHANGING MARKET CONDITIONS > DRIVE CUSTOMER AND AGENT LOYALTY > ENHANCE INTEGRATION

More information

Adobe Flash Player 11.2 Voluntary Product Accessibility Template

Adobe Flash Player 11.2 Voluntary Product Accessibility Template Adobe Flash Player 11.2 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Five best practices for deploying a successful service-oriented architecture

Five best practices for deploying a successful service-oriented architecture IBM Global Services April 2008 Five best practices for deploying a successful service-oriented architecture Leveraging lessons learned from the IBM Academy of Technology Executive Summary Today s innovative

More information

Mobile Application Accessibility Handbook 2. UNDERSTANDING THE DIFFICULTIES ENCOUNTERED BY PERSONS WITH DISABILITIES 5

Mobile Application Accessibility Handbook 2. UNDERSTANDING THE DIFFICULTIES ENCOUNTERED BY PERSONS WITH DISABILITIES 5 Mobile Application Accessibility Handbook Table of Contents Table of Contents 1. INTRODUCTION... 3 2. UNDERSTANDING THE DIFFICULTIES ENCOUNTERED BY PERSONS WITH DISABILITIES 5 3. TOP 8 CONCERNS FROM PERSONS

More information

Information and Communications Standard. Making your website more accessible

Information and Communications Standard. Making your website more accessible Information and Communications Standard Making your website more accessible Web accessibility benefits millions of users with disabilities, but it also benefits people without disabilities, like people

More information

Modernizing Public Benefits Programs: What the Law Says State Agencies Must Do to Serve People with Disabilities

Modernizing Public Benefits Programs: What the Law Says State Agencies Must Do to Serve People with Disabilities Modernizing Public Benefits Programs: What the Law Says State Agencies Must Do to Serve People with Disabilities National Center for Law and Economic Justice 275 Seventh Avenue, Suite 1506 New York, NY

More information

IBM Tivoli Storage FlashCopy Manager

IBM Tivoli Storage FlashCopy Manager IBM Storage FlashCopy Manager Online, near-instant snapshot backup and restore of critical business applications Highlights Perform near-instant application-aware snapshot backup and restore, with minimal

More information

Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview

Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview Adobe, the Adobe logo, Acrobat, Acrobat Connect, the Adobe PDF logo, Creative Suite, LiveCycle, and Reader are either registered trademarks

More information

Backbase Accessibility

Backbase Accessibility Whitepaper Learn about: Section 508 Accessibility requirements Backbase compliance Introduction This paper discusses the growing importance of Rich Internet Applications (RIA s) and their support for Accessibility.

More information

Beyond converged networks: driving user productivity through unified communications and collaboration.

Beyond converged networks: driving user productivity through unified communications and collaboration. Unified communications and collaboration solutions White paper April 2007 Beyond converged networks: driving user productivity through unified communications and collaboration. Page 2 Contents 2 Executive

More information

Why is Technology Access for Students With Disabilities Important?

Why is Technology Access for Students With Disabilities Important? Why is Technology Access for Students With Disabilities Important? Every school has higher student performance and meets state academic standards for all students each year. Dianne Griffin One of SREB

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) Date: 2013 Name of Product: Pivot Product website: https://pivot.cos.com/ Contact for more Information: http://pivot.cos.com/helpdesk NOTE: All sections

More information

In this topic we discuss a number of design decisions you can make to help ensure your course is accessible to all users.

In this topic we discuss a number of design decisions you can make to help ensure your course is accessible to all users. Accessible Course Design As a course designer you hold a pivotal role in ensuring that Learning Environment is accessible to all users, regardless of their learning needs. It is your content that students

More information

Ten Simple Steps Toward Universal Design of Online Courses

Ten Simple Steps Toward Universal Design of Online Courses Ten Simple Steps Toward Universal Design of Online Courses Implementing the principles of universal design in online learning means anticipating the diversity of students that may enroll in your course

More information

Simplify survey research with IBM SPSS Data Collection Data Entry

Simplify survey research with IBM SPSS Data Collection Data Entry IBM SPSS Data Collection Data Entry Simplify survey research with IBM SPSS Data Collection Data Entry Advanced, survey-aware software for creating surveys and capturing responses Highlights Create compelling,

More information

Oracle Portal and Accessibility Requirements

Oracle Portal and Accessibility Requirements Building Accessible Web Sites with Oracle Portal An Oracle White Paper May 2006 Building Accessible Web Sites with Oracle Portal 1. Introduction... 3 2. International and U.S. Guidelines On Accessibility...

More information

Easy Guide to Building No Barrier Web Sites

Easy Guide to Building No Barrier Web Sites Easy Guide to Building No Barrier Web Sites Content 1) Introduction 2) What is Web Accessibility 3) Current Situation 4) Benefits of Accessible Sites 5) Different Disabilities that can affect Web Accessibility

More information

Harness the value of information throughout the enterprise. IBM InfoSphere Master Data Management Server. Overview

Harness the value of information throughout the enterprise. IBM InfoSphere Master Data Management Server. Overview IBM InfoSphere Master Data Management Server Overview Master data management (MDM) allows organizations to generate business value from their most important information. Managing master data, or key business

More information

Software development for the on demand enterprise. Building your business with the IBM Software Development Platform

Software development for the on demand enterprise. Building your business with the IBM Software Development Platform Software development for the on demand enterprise Building your business with the IBM Software Development Platform An on demand business is an enterprise whose business processes integrated end-to-end

More information

WCAG 2 Compliance With Flash

WCAG 2 Compliance With Flash WCAG 2 Compliance With Flash A few Notes For This Webinar 1. Please mute your phone line 2. You can post questions in Connect during the session and we will answer what we can at the end of the webinar

More information

Xerox DocuMate 3125 Document Scanner

Xerox DocuMate 3125 Document Scanner Xerox DocuMate 3125 Document Scanner Voluntary Product Accessibility Template (VPAT) Submitted by Visioneer, Inc., November 30, 2011 Date: 11/30/2011 Name of Product: Xerox DocuMate 3125 Contact for more

More information

IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities.

IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities. Application integration solutions To support your IT objectives IBM WebSphere application integration software: A faster way to respond to new business-driven opportunities. Market conditions and business

More information

AN AUTOMATIC AND METHODOLOGICAL APPROACH FOR ACCESSIBLE WEB APPLICATIONS

AN AUTOMATIC AND METHODOLOGICAL APPROACH FOR ACCESSIBLE WEB APPLICATIONS UDK 004.822:004.738.5 Preliminary communication AN AUTOMATIC AND METHODOLOGICAL APPROACH FOR ACCESSIBLE WEB APPLICATIONS Lourdes Moreno, Elena Castro, Paloma Martinez Universidad Carlos III de Madrid,,

More information

Automatic Mobile Translation System for Web Accessibility based on Smart-Phone

Automatic Mobile Translation System for Web Accessibility based on Smart-Phone , pp.243-248 http://dx.doi.org/10.14257/ijseia.2014.8.5.19 Automatic Mobile Translation System for Web Accessibility based on Smart-Phone Seungcheon Kim 1, Jinhong Kim 2 and Hoon Jin **3 1 Dept. of Information

More information

Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide

Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide Overview The Mac operating system has many helpful features to help users with a wide range of abilities access their computer. This Quickstart

More information

IBM Global Business Services Microsoft Dynamics AX solutions from IBM

IBM Global Business Services Microsoft Dynamics AX solutions from IBM IBM Global Business Services Microsoft Dynamics AX solutions from IBM Powerful, agile and simple enterprise resource planning 2 Microsoft Dynamics AX solutions from IBM Highlights Improve productivity

More information

IBM Software IBM Business Process Manager Powerfully Simple

IBM Software IBM Business Process Manager Powerfully Simple IBM Software IBM Business Process Manager Powerfully Simple A single BPM platform that provides total visibility and management of your business processes 2 IBM Business Process Manager Powerfully Simple

More information

Summary Table Voluntary Product Accessibility Template

Summary Table Voluntary Product Accessibility Template Voluntary Product Accessibility Template (VPAT) Name of Product: Canon EOS 50D (EF 28-135 IS USM KIT) Date: June 29, 2009 e: This document was prepared based on normal walk-up functionality. It does not

More information

IBM Tivoli Composite Application Manager for WebSphere

IBM Tivoli Composite Application Manager for WebSphere Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the Create reports that deliver insight into life

More information

Echo360 Voluntary Product Accessibility Template

Echo360 Voluntary Product Accessibility Template Echo360 Voluntary Product Accessibility Template Version 1.0 April 1, 2015 Contact for more Information: Jason Aubrey, JAubrey@echo360.com Introduction Echo360 is committed to ensuring that our platform

More information

IBM Rational Rapid Developer Components & Web Services

IBM Rational Rapid Developer Components & Web Services A Technical How-to Guide for Creating Components and Web Services in Rational Rapid Developer June, 2003 Rev. 1.00 IBM Rational Rapid Developer Glenn A. Webster Staff Technical Writer Executive Summary

More information

IBM Enterprise Content Management Product Strategy

IBM Enterprise Content Management Product Strategy White Paper July 2007 IBM Information Management software IBM Enterprise Content Management Product Strategy 2 IBM Innovation Enterprise Content Management (ECM) IBM Investment in ECM IBM ECM Vision Contents

More information

Real Connections: Making Distance Learning Accessible to Everyone

Real Connections: Making Distance Learning Accessible to Everyone Real Connections: Making Distance Learning Accessible to Everyone By Sheryl Burgstahler, Ph.D. Distance learning has been around for a long time. For hundreds of years instructors have taught students

More information

Wyse Winterm Thin Clients -- Accessibility Information

Wyse Winterm Thin Clients -- Accessibility Information Wyse Winterm Thin Clients -- Accessibility Information Winterm 3000 Series Thin Clients As of: November 1, 2002 Winterm 3000 Series Thin Clients -- Windows CE and CE.NET operating systems Section Software

More information

IBM Sales and Distribution IBM and Manhattan Associates

IBM Sales and Distribution IBM and Manhattan Associates IBM Sales and Distribution IBM and Manhattan Associates Innovating across the supply chain and beyond 2 IBM and Manhattan Associates Market-leading companies realize that their supply chains are strategic

More information

Index. Company Overview. Services. Consultancy & Training. Company History. Why Hire Us. Testimonials. Contact 1-11

Index. Company Overview. Services. Consultancy & Training. Company History. Why Hire Us. Testimonials. Contact 1-11 Index Company Overview Services Consultancy & Training Company History Why Hire Us Testimonials Contact 1-11 Company Overview 1 Company Name Royal Cyber Inc. - USA 2 Mission Statement Using tomorrow s

More information

IBM Software Information Management. Scaling strategies for mission-critical discovery and navigation applications

IBM Software Information Management. Scaling strategies for mission-critical discovery and navigation applications IBM Software Information Management Scaling strategies for mission-critical discovery and navigation applications Scaling strategies for mission-critical discovery and navigation applications Contents

More information