IBM WebSphere DataPower XC10

Size: px
Start display at page:

Download "IBM WebSphere DataPower XC10"

Transcription

1 IBM WebSphere DataPower XC10 REST Gateway 2011 IBM Corporation This presentation will discuss the REST gateway provided with the IBM WebSphere DataPower XC10 Appliance. XC10_RESTAPIs.ppt Page 1 of 22

2 Agenda IBM WebSphere DataPower XC10 REST gateway Examples Enterprise integration example Summary 2 DataPower XC10 REST Gateway 2011 IBM Corporation This presentation will begin with a general discussion of the WebSphere DataPower XC10 REST gateway, followed by some examples of how to use the REST interface. XC10_RESTAPIs.ppt Page 2 of 22

3 Section IBM WebSphere DataPower XC10 REST gateway 3 DataPower XC10 REST Gateway 2011 IBM Corporation This section will describe the IBM WebSphere DataPower XC10 REST gateway. XC10_RESTAPIs.ppt Page 3 of 22

4 What is REST? REpresentational State Transfer REST APIs are implemented as HTTP patterns REST requests have patterns /resources/datacaches/<cachename>/<mapname>/<key> Example: 4 DataPower XC10 REST Gateway 2011 IBM Corporation REST is an acronym for representational state transfer. It is typically implemented as a servlet that responds to HTTP requests. The REST service accepts HTTP requests and parses them to determine what action to perform. The data that is sent to and returned from the servlet hosting the REST service depends on the type of request sent. REST requests have URIs with specific patterns. For example: /resources/datacaches/<cachename>/<mapname>/<key> XC10_RESTAPIs.ppt Page 4 of 22

5 WebSphere DataPower XC10 REST gateway Enables non-java clients to access simple data grids Supported on WebSphere DataPower XC10 firmware v or later Allows integration with IBM WebSphere DataPower XI50 Appliances Microsoft.NET applications Clients that cannot host the IBM Object Request Broker (ORB) 5 DataPower XC10 REST Gateway 2011 IBM Corporation The WebSphere DataPower XC10 REST gateway is intended to simplify integration of enterprise applications and software products with the WebSphere DataPower XC10 appliance. For example, a WebSphere DataPower XI50 Appliance can use the DataPower XC10 as a side-cache to minimize redundant requests to back-end systems and significantly improve response time. The REST gateway also provides integration with clients that cannot host the IBM ORB. The REST gateway is available on firmware version or later. XC10_RESTAPIs.ppt Page 5 of 22

6 WebSphere DataPower XC10 REST API Basic data access and update Enabled by default Supported over the HTTP protocol on port 80 Supported over the HTTPS protocol on port DataPower XC10 REST Gateway 2011 IBM Corporation The IBM WebSphere DataPower XC10 ObjectGrid programming API provides a full set of simple data grid data manipulation functionality. The features that you can call on the IBM WebSphere DataPower XC10 appliance using the REST API are a subset of the features available through the ObjectGrid programming model. The REST gateway is enabled by default and no additional configuration is necessary. There is no way to disable the REST interface. The REST gateway is accessed over HTTP on port 80 or HTTPS on port 443. XC10_RESTAPIs.ppt Page 6 of 22

7 Transport security Appliance provides a self-signed certificate for SSL sessions Same certificate is used for administrative console and REST API HTTPS clients must accept the SSL certificate during the SSL handshake to access the REST gateway 7 DataPower XC10 REST Gateway 2011 IBM Corporation You can use a secure connection when accessing the REST gateway by sending your request to HTTPS port 443. The HTTP client that you use to access the WebSphere DataPower XC10 REST gateway must accept self-signed SSL certificates in order to access your secured simple data grid. This functionality is supported by most HTTPS capable clients. XC10_RESTAPIs.ppt Page 7 of 22

8 WebSphere DataPower XC10 REST operations Basic simple data grid actions Insert, update, retrieve, and delete HTTP operations are used to perform those action when calling the REST API HTTP methods: GET POST DELETE Refer to the information center for full API descriptions 8 DataPower XC10 REST Gateway 2011 IBM Corporation The IBM WebSphere DataPower XC10 REST API provides basic data access and manipulation operations. The REST API requires that different types of HTTP methods be used depending on what action you want to invoke. For example, to insert or update an object in the simple data grid cache, you use an HTTP POST method. To retrieve an object from the simple cache, you use an HTTP GET method. XC10_RESTAPIs.ppt Page 8 of 22

9 Request pattern REST APIs are implemented as HTTP patterns REST requests have patterns /resources/datacaches/<cachename>/<mapname>/<key> Example: Eviction strategy <mapname>.lut Last update time <mapname>.lat Last access time Optional Time to live expiration add /<key>?ttl=<seconds> 9 DataPower XC10 REST Gateway 2011 IBM Corporation REST requests have URIs with specific patterns. For example: /resources/datacaches/<cachename>/<mapname>/<key> The first part of the URI ( /resources/datacaches ) routes the request to the REST gateway on the DataPower XC10 appliance. The next part of the URI is the cache name. You must specify the name of a simple data grid that already exists on the appliance. The third piece of the URI is the map name within the cache. A simple data cache always contains an ObjectMap with the same name as the simple data cache. You can dynamically create additional ObjectMaps by providing a specially formatted map name. By adding specific strings to an ObjectMap name you can tell the appliance how it should remove, or evict, objects when space is needed for new objects. The eviction policy can be based on an objects last update time or last access time. Each map is a separate data container within the simple data cache. If you create a map for automatic eviction you can specify a time-to-live value, in seconds, as an additional parameter on the request. The last part of the URI is a key. The key is used to address the specific piece of data stored in the cache. If you do not specify a key on a data insert, the REST gateway will automatically generate one and include it in the body of the HTTP reply. XC10_RESTAPIs.ppt Page 9 of 22

10 Data format and headers for REST calls Keys must be strings Data type stored in cache specified in HTTP header Examples Content-type: application/json" "Content-type: application/pdf" "Content-type: text/plain" "Content-type: text/html" Content-type: image/gif REST API requires HTTP basic authentication Cookies returned to client after initial REST call zsessionid SimpleToken Cookies should be included with subsequent HTTP requests that are part of the same session 10 DataPower XC10 REST Gateway 2011 IBM Corporation The XC10 REST API uses the Content-type header in your HTTP requests to identify the data format of the data that is stored in the simple data grid. You can store data of multiple content types in the same simple data grid, although the data retrieved by an HTTP GET request will match the content-type specified when the data was stored. The appliance does not interpret or change the data. It is stored as a byte array along with the specified content type. As an example, you insert an object with a content type text/xml. When an application performs a GET operation for the same cache key, the response content-type is text/xml and the body is a copy of the XML text that was stored. The WebSphere DataPower XC10 REST API requires HTTP authentication. When your client authenticates with the WebSphere DataPower XC10 appliance, two cookies are provided with the response. These cookies, zsessionid and SimpleToken, should be included in subsequent HTTP requests to WebSphere DataPower XC10 in the same session. XC10_RESTAPIs.ppt Page 10 of 22

11 HTTP response status codes Success codes in the 200 range are returned on successful calls to the REST gateway Error codes in the 400 and 500 ranges are returned on unsuccessful calls to the REST gateway Example success codes: HTTP 201, 202, 203 code Example unsuccessful codes: HTTP 400, 403, 404 See Information Center for which exact codes are returned for each REST API call 11 DataPower XC10 REST Gateway 2011 IBM Corporation Since REST API calls to the IBM WebSphere DataPower XC10 appliance are HTTP requests, HTTP response status codes are returned with each REST API invocation. HTTP response status codes are classified by the number they start with. HTTP response status codes that are in the 100 range are informational codes. HTTP response status codes that are in the 200 range are success codes. Response status codes in the 300 range are redirection status codes. Codes in the 400 and 500 range are client error and server error codes. Depending on the call you make to the WebSphere DataPower XC10 REST gateway, different success codes and unsuccessful HTTP response codes apply. It is best to check the IBM WebSphere DataPower XC10 information center to see what response codes apply to each REST API call. XC10_RESTAPIs.ppt Page 11 of 22

12 Section REST gateway examples 12 DataPower XC10 REST Gateway 2011 IBM Corporation This section will show some examples of REST API calls to the IBM WebSphere DataPower XC10 Appliance. XC10_RESTAPIs.ppt Page 12 of 22

13 Example: add or update an object HTTP method: POST HTTP header Content-type: text/html Pattern: /resources/datacaches/<simple cache name>/<map name>/<key> POST data to pass to the WebSphere DataPower XC10 appliance <h2>sample</h2><p>a <b>formatted</b> string</p> Example using Linux utility curl curl u <user>:<passwd> -H Content-type: text/html X POST d <h2>sample</h2><p>an <b>formatted</b> string</p> Returns html: <html>200</html> 13 DataPower XC10 REST Gateway 2011 IBM Corporation This example shows how you can insert an object into a WebSphere DataPower XC10 simple cache using the REST interface. Use the HTTP POST method to insert an object, specifying a data type description in the content-type header field. Then create a URL including the simple data grid name and the key used to store the data, which is included in the POST data pattern. An HTTP response code 200 indicates the data was successfully inserted. The body of the request contains the data to be stored in the simple data grid. This data object must be serializable. Internally the appliance wraps the supplied content-type and request body in an object of type com.ibm.websphere.xsa.restvalue. A Java application using the ObjectMap API can use the RestValue class to insert or get data from a map. XC10_RESTAPIs.ppt Page 13 of 22

14 Example: get an object HTTP method: GET Pattern: /resources/datacaches/<simple cache name>/<map name>/<key> Can use a web browser Example: Returns html: <h2>sample</h2><p>a <b>formatted</b> string</p> Sample If key does not exist returns html: <html>404</html> A formatted string 14 DataPower XC10 REST Gateway 2011 IBM Corporation This example shows how to retrieve the object stored on the previous slide. You do not need to specify the data format since it is stored on the appliance with the data. An HTTP response code 200 indicates the data was retrieved successfully and the requested data is included in the response body. An HTTP response code 404 indicates the specified key was not found in the cache. The Content-type text/html is included in the response header. XC10_RESTAPIs.ppt Page 14 of 22

15 Example: delete an object HTTP method: DELETE Pattern: /resources/datacaches/<simple cache name>/<map name>/<key> Example using Linux utility curl curl u <user>:<password> X DELETE Returns html: <html>200</html> 15 DataPower XC10 REST Gateway 2011 IBM Corporation This example shows how to delete the object stored on the previous slide. As with the GET, you do not need to specify the data format. An HTTP response code 200 indicates the data is no longer in the cache. If the requested key was not found in the cache the REST gateway will still return a 200 response code. If you omit the key string in the pattern the request will delete all data in the specified map. XC10_RESTAPIs.ppt Page 15 of 22

16 Section Enterprise integration example 16 DataPower XC10 REST Gateway 2011 IBM Corporation This section will show an examples of how you easily use the WebSphere DataPower XC10 as a side cache for other enterprise products by using the REST gateway. XC10_RESTAPIs.ppt Page 16 of 22

17 Integrating the XC10 with the XI50 Results side-cache for the IBM DataPower Integration Appliance XI50 Can significantly reduce load on back-end systems Eliminates redundant requests Improves response times Increases total system throughput 17 DataPower XC10 REST Gateway 2011 IBM Corporation The IBM DataPower XC10 appliance REST gateway allows the XC10 to be used as a Service Oriented Architecture (SOA) results side-cache for the WebSphere DataPower Integration Appliance XI50. Using the XC10 s simple data grid as a side-cache for an XI50 can significantly reduce the load on the back-end systems by eliminating redundant requests, improving the response time to clients and increasing total system throughput. XC10_RESTAPIs.ppt Page 17 of 22

18 High-level design: Using the XC10 as a side-cache for the XI50 Client Applications XML XML Proxy Existing Processing Flow REST Gateway Backend Systems Grid IBM DataPower XC10 Appliance 18 DataPower XC10 REST Gateway 2011 IBM Corporation This slide shows an overview of how you can use the XC10 as an SOA side cache for an XI50 appliance using the XC10 REST gateway. As client application requests are received, the XML Proxy inspects the URI, the XML body contents, or both, to determine if the request meets the criteria for being cached. This is based on the caching policy rules defined in the XI50. If the request is cacheable, the XML Proxy will perform a standard side-cache operation. Using the REST-based HTTP GET method, the XML Proxy will look to see if the request is cached on the XC10 appliance. If the HTTP GET returns an HTTP 404 NOT FOUND, meaning a cache miss, the XML Proxy will pass the request through to the existing processing flow on the application hosted in the back-end systems. The XML Proxy will then cache the response as it flows back through the XML Proxy to the client application. The XML Proxy will use the REST-based HTTP POST method to insert the response into the side-cache. If the incoming request was found in the cache, then the result is retrieved from the cache, bypassing the back-end systems, thus removing the latency introduced by the application and data layers. XC10_RESTAPIs.ppt Page 18 of 22

19 Section Summary 19 DataPower XC10 REST Gateway 2011 IBM Corporation This section will summarize the major features of the IBM WebSphere DataPower XC10 REST gateway. XC10_RESTAPIs.ppt Page 19 of 22

20 Summary The REST gateway enables non-java clients to access simple data grids on the WebSphere DataPower XC10 appliance REST APIs perform data operations on the DataPower XC10 appliance over HTTP The REST API supports a subset of the ObjectGrid API REST patterns are used to perform actions 20 DataPower XC10 REST Gateway 2011 IBM Corporation The IBM WebSphere DataPower XC10 REST gateway provides another communication option that allows non-java clients to access simple data grids on the appliance. The activities that can be performed with the REST API are a subset of the actions that are available using the ObjectGrid programming model. Depending on what actions you want to perform using the REST API, you will use different HTTP methods, such as POST, GET, and DELETE. The cache name and key values are specified in the HTTP request pattern, and data to be inserted into the cache is passed as POST data. Refer to the IBM WebSphere DataPower XC10 information center for full documentation regarding the REST APIs and the data necessary for each call. XC10_RESTAPIs.ppt Page 20 of 22

21 Feedback Your feedback is valuable You can help improve the quality of IBM Education Assistant content to better meet your needs by providing feedback. Did you find this module useful? Did it help you solve a problem or answer a question? Do you have suggestions for improvements? Click to send feedback: mailto:iea@us.ibm.com?subject=feedback_about_xc10_restapis.ppt This module is also available in PDF format at:../xc10_restapis.pdf 21 DataPower XC10 REST Gateway 2011 IBM Corporation You can help improve the quality of IBM Education Assistant content by providing feedback. XC10_RESTAPIs.ppt Page 21 of 22

22 Trademarks, disclaimer, and copyright information IBM, the IBM logo, ibm.com, DataPower, and WebSphere are trademarks or registered trademarks of International Business Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of other IBM trademarks is available on the web at "Copyright and trademark information" at Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Microsoft, and the Windows logo are registered trademarks of Microsoft Corporation in the United States, other countries, or both. Java, and all Java-based trademarks and logos are trademarks of Oracle and/or its affiliates. Other company, product, or service names may be trademarks or service marks of others. THE INFORMATION CONTAINED IN THIS PRESENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. 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. IN ADDITION, THIS INFORMATION IS BASED ON IBM S CURRENT PRODUCT PLANS AND STRATEGY, WHICH ARE SUBJECT TO CHANGE BY IBM WITHOUT NOTICE. IBM SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES ARISING OUT OF THE USE OF, OR OTHERWISE RELATED TO, THIS PRESENTATION OR ANY OTHER DOCUMENTATION. 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 ANY AGREEMENT OR LICENSE GOVERNING THE USE OF IBM PRODUCTS OR SOFTWARE. Copyright International Business Machines Corporation All rights reserved IBM Corporation XC10_RESTAPIs.ppt Page 22 of 22

WebSphere DataPower Release 3.8.1 DNS Enhancements

WebSphere DataPower Release 3.8.1 DNS Enhancements WebSphere DataPower Release 3.8.1 DNS Enhancements XA/XS/XI/XB/XM 2010 IBM Corporation WebSphere DataPower Release 3.8.1 DNS Enhancements 381DataPowerDNSEnhancement.ppt Page 1 of 6 DNS Enhancements Table

More information

IBM WebSphere Application Server Communications Enabled Applications

IBM WebSphere Application Server Communications Enabled Applications IBM WebSphere Application Server Communications Enabled Applications Configuring a CEA environment 2011 IBM Corporation This presentation describes how to configure a WebSphere Application Server environment

More information

Memory-to-memory session replication

Memory-to-memory session replication Memory-to-memory session replication IBM WebSphere Application Server V7 This presentation will cover memory-to-memory session replication in WebSphere Application Server V7. WASv7_MemorytoMemoryReplication.ppt

More information

IBM WebSphere Application Server

IBM WebSphere Application Server IBM WebSphere Application Server OAuth 2.0 service provider and TAI 2012 IBM Corporation This presentation describes support for OAuth 2.0 included in IBM WebSphere Application Server V7.0.0.25. WASV70025_OAuth20.ppt

More information

IBM WebSphere Application Server

IBM WebSphere Application Server IBM WebSphere Application Server Multihomed hosting 2011 IBM Corporation Multihoming allows you to have a single application communicate with different user agent clients and user agent servers on different

More information

Business Process Management IBM Business Process Manager V7.5

Business Process Management IBM Business Process Manager V7.5 Business Process Management IBM Business Process Manager V7.5 Federated task management overview This presentation gives you an overview on the federated task management feature in IBM Business Process

More information

Business Process Management IBM Business Process Manager V7.5

Business Process Management IBM Business Process Manager V7.5 Business Process Management IBM Business Process Manager V7.5 Federated task management for BPEL processes and human tasks This presentation introduces the federated task management feature for BPEL processes

More information

IBM Tivoli Provisioning Manager V 7.1

IBM Tivoli Provisioning Manager V 7.1 IBM Tivoli Provisioning Manager V 7.1 Preparing for patch management in a small environment 2011 IBM Corporation Welcome to the training module for Tivoli Provisioning Manager version 7.1, preparing for

More information

IBM Tivoli Network Manager V3.9

IBM Tivoli Network Manager V3.9 IBM Tivoli Network Manager V3.9 Architecture and configuration for shared and replicated NCIM 2013 IBM Corporation IBM Tivoli Network Manager V3.9, Architecture and configuration for shared and replicated

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Administration This presentation will show you the functions in the administrative console for WebSphere Business Monitor. WBPM_Monitor_Administration.ppt Page 1 of 21 Goals

More information

IBM WebSphere Application Server

IBM WebSphere Application Server IBM WebSphere Application Server SAML 2.0 web single-sign-on 2012 IBM Corporation This presentation describes support for SAML 2.0 web browser Single Sign On profile included in IBM WebSphere Application

More information

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions Integrated SFTP server 2011 IBM Corporation The presentation gives an overview of integrated SFTP server feature IntegratedSFTPServer.ppt

More information

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1.

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. WD31_VirtualApplicationSharedServices.ppt Page 1 of 29 This presentation covers the shared

More information

Web servers and WebSphere Portal

Web servers and WebSphere Portal Web servers and WebSphere Portal By default IBM WebSphere Portal uses the internal HTTP transport within IBM WebSphere Application Server to handle requests. However, because WebSphere Application Server

More information

How To Integrate Pricing Into A Websphere Commerce Pricing Integration

How To Integrate Pricing Into A Websphere Commerce Pricing Integration WebSphere Commerce V7 Feature Pack 5 WebSphere Commerce and Sterling Commerce pricing integration 2012 IBM Corporation This presentation provides an overview of the WebSphere Commerce and Sterling Commerce

More information

New Single Sign-on Options for IBM Lotus Notes & Domino. 2012 IBM Corporation

New Single Sign-on Options for IBM Lotus Notes & Domino. 2012 IBM Corporation New Single Sign-on Options for IBM Lotus Notes & Domino 2012 IBM Corporation IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM s sole

More information

WebSphere Commerce and Sterling Commerce

WebSphere Commerce and Sterling Commerce WebSphere Commerce and Sterling Commerce Inventory and order integration This presentation introduces WebSphere Commerce and Sterling Commerce inventory and order integration. Order_Inventory_Integration.ppt

More information

Lotus Sametime. FIPS Support for IBM Lotus Sametime 8.0. Version 8.0 SC23-8760-00

Lotus Sametime. FIPS Support for IBM Lotus Sametime 8.0. Version 8.0 SC23-8760-00 Lotus Sametime Version 8.0 FIPS Support for IBM Lotus Sametime 8.0 SC23-8760-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE EFFORTS WERE

More information

IBM Business Monitor. BPEL process monitoring

IBM Business Monitor. BPEL process monitoring IBM Business Monitor BPEL process monitoring 2011 IBM Corporation This presentation will give you an understanding of monitoring BPEL processes using IBM Business Monitor. BPM_BusinessMonitor_BPEL_Monitoring.ppt

More information

IBM Tivoli Network Manager IP Edition V3.8

IBM Tivoli Network Manager IP Edition V3.8 IBM Tivoli Network Manager IP Edition V3.8 Scheduling reports 2010 IBM Corporation Welcome to scheduling reports in IBM Tivoli Network Manager IP Edition V3.8. scheduling_reports.ppt Page 1 of 17 Objectives

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Debugger 2010 IBM Corporation This presentation provides an overview of the monitor model debugger in WebSphere Business Monitor. WBPM_Monitor_Debugger.ppt Page 1 of 23 Goals

More information

WebSphere Commerce V7 Feature Pack 2

WebSphere Commerce V7 Feature Pack 2 WebSphere Commerce V7 Feature Pack 2 Pricing tool 2011 IBM Corporation This presentation provides an overview of the Pricing tool of the WebSphere Commerce V7.0 feature pack 2. PricingTool.ppt Page 1 of

More information

C05 Discovery of Enterprise zsystems Assets for API Management

C05 Discovery of Enterprise zsystems Assets for API Management C05 Discovery of Enterprise zsystems Assets for API Management Unlocking mainframe assets for mobile and cloud applications Haley Fung hfung@us.ibm.com IMS Mobile and APIM Development Lead * IMS Technical

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Monitor models 2010 IBM Corporation This presentation should provide an overview of monitor models in WebSphere Business Monitor. WBPM_Monitor_MonitorModels.ppt Page 1 of 25

More information

z/os V1R11 Communications Server system management and monitoring

z/os V1R11 Communications Server system management and monitoring IBM Software Group Enterprise Networking Solutions z/os V1R11 Communications Server z/os V1R11 Communications Server system management and monitoring z/os Communications Server Development, Raleigh, North

More information

IBM Digital Experience meets IBM WebSphere Commerce

IBM Digital Experience meets IBM WebSphere Commerce Portal Arbeitskreis - 27.10.2014 IBM Digital Experience meets IBM WebSphere Commerce Stefan Koch Chief Programmer IBM Digital Experience 2013 IBM Corporation 2 2013 IBM Corporation Integration Pattern

More information

IBM RATIONAL PERFORMANCE TESTER

IBM RATIONAL PERFORMANCE TESTER IBM RATIONAL PERFORMANCE TESTER Today, a major portion of newly developed enterprise applications is based on Internet connectivity of a geographically distributed work force that all need on-line access

More information

Title Page. Hosted Payment Page Guide ACI Commerce Gateway

Title Page. Hosted Payment Page Guide ACI Commerce Gateway Title Page Hosted Payment Page Guide ACI Commerce Gateway Copyright Information 2008 by All rights reserved. All information contained in this documentation, as well as the software described in it, is

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

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Dashboards 2010 IBM Corporation This presentation should provide an overview of the dashboard widgets for use with WebSphere Business Monitor. WBPM_Monitor_Dashboards.ppt Page

More information

WebSphere Commerce V7 Feature Pack 3

WebSphere Commerce V7 Feature Pack 3 WebSphere Commerce V7 Feature Pack 3 Precision marketing updates 2011 IBM Corporation WebSphere Commerce V7 Feature Pack 3 includes some precision marketing updates. There is a new trigger, Customer Checks

More information

WebSphere Commerce V7 Feature pack 1

WebSphere Commerce V7 Feature pack 1 WebSphere Commerce V7 Feature pack 1 Brazil starter store 2010 IBM Corporation This presentation provides an overview of the Brazil starter store in WebSphere Commerce V7.0 feature pack 1. Table of content

More information

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages PROBLEM SUMMARY...3 INTRODUCTION...3

More information

INTEGRATE SALESFORCE.COM SINGLE SIGN-ON WITH THIRD-PARTY SINGLE SIGN-ON USING SENTRY A GUIDE TO SUCCESSFUL USE CASE

INTEGRATE SALESFORCE.COM SINGLE SIGN-ON WITH THIRD-PARTY SINGLE SIGN-ON USING SENTRY A GUIDE TO SUCCESSFUL USE CASE INTEGRATE SALESFORCE.COM SINGLE SIGN-ON WITH THIRD-PARTY SINGLE SIGN-ON USING SENTRY A GUIDE TO SUCCESSFUL USE CASE Legal Marks No portion of this document may be reproduced or copied in any form, or by

More information

000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0

000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 Easy CramBible Lab 000-284 Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 ** Single-user License ** This copy can be only used by yourself for educational purposes Web: http://www.crambible.com/

More information

Deployment Guide Jan-2016 rev. a. Deploying Array Networks APV Series Application Delivery Controllers with Oracle WebLogic 12c

Deployment Guide Jan-2016 rev. a. Deploying Array Networks APV Series Application Delivery Controllers with Oracle WebLogic 12c Deployment Guide Jan-2016 rev. a Deploying Array Networks APV Series Application Delivery Controllers with Oracle WebLogic 12c Table of Contents 1 Introduction... 3 1.1 Array Networks APV Appliance...

More information

WebSphere Business Monitor

WebSphere Business Monitor WebSphere Business Monitor Monitor sub-models 2010 IBM Corporation This presentation should provide an overview of the sub-models in a monitor model in WebSphere Business Monitor. WBPM_Monitor_MonitorModels_Submodels.ppt

More information

Converting Java EE Applications into OSGi Applications

Converting Java EE Applications into OSGi Applications Converting Java EE Applications into OSGi Applications Author: Nichole Stewart Date: Jan 27, 2011 2010 IBM Corporation THE INFORMATION CONTAINED IN THIS REPORT IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY.

More information

SINGLE SIGNON FUNCTIONALITY IN HATS USING MICROSOFT SHAREPOINT PORTAL

SINGLE SIGNON FUNCTIONALITY IN HATS USING MICROSOFT SHAREPOINT PORTAL SINGLE SIGNON FUNCTIONALITY IN HATS USING MICROSOFT SHAREPOINT PORTAL SINGLE SIGNON: Single Signon feature allows users to authenticate themselves once with their credentials i.e. Usernames and Passwords

More information

Single Sign-on (SSO) technologies for the Domino Web Server

Single Sign-on (SSO) technologies for the Domino Web Server Single Sign-on (SSO) technologies for the Domino Web Server Jane Marcus December 7, 2011 2011 IBM Corporation Welcome Participant Passcode: 4297643 2011 IBM Corporation 2 Agenda USA Toll Free (866) 803-2145

More information

McAfee Web Gateway Administration Intel Security Education Services Administration Course Training

McAfee Web Gateway Administration Intel Security Education Services Administration Course Training McAfee Web Gateway Administration Intel Security Education Services Administration Course Training The McAfee Web Gateway Administration course from Education Services provides an in-depth introduction

More information

IBM Tivoli Network Manager 3.8

IBM Tivoli Network Manager 3.8 IBM Tivoli Network Manager 3.8 Configuring initial discovery 2010 IBM Corporation Welcome to this module for IBM Tivoli Network Manager 3.8 Configuring initial discovery. configuring_discovery.ppt Page

More information

IBM DataPower SOA Appliances & MQ Interoperability

IBM DataPower SOA Appliances & MQ Interoperability Appliances & MQ Interoperability Joel Gauci-Certified IT Specialist, & Connectivity Appliances gauci@fr.ibm.com MQ Guide Share France 2006 Corporation Agenda Appliances & MQ Interoperability Part 1: Appliances

More information

Programming Against Hybrid Databases with Java Handling SQL and NoSQL. Brian Hughes IBM

Programming Against Hybrid Databases with Java Handling SQL and NoSQL. Brian Hughes IBM Programming Against Hybrid Databases with Java Handling SQL and NoSQL Brian Hughes IBM 1 Acknowledgements and Disclaimers Availability. References in this presentation to IBM products, programs, or services

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

WebSphere MQ Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

WebSphere Commerce V7 Feature Pack 3

WebSphere Commerce V7 Feature Pack 3 WebSphere Commerce V7 Feature Pack 3 Search engine optimization 2011 IBM Corporation This presentation provides an overview of the search engine optimization enhancements in WebSphere Commerce Version

More information

IBM Software Services for Collaboration

IBM Software Services for Collaboration An introduction to: IBM Collaboration Services for ProjExec ProjExec is easy to use professional project management software that is combined with innovative social features to provide project teams a

More information

Performance Testing Web 2.0

Performance Testing Web 2.0 Performance Testing Web 2.0 David Chadwick Rational Testing Evangelist dchadwick@us.ibm.com Dawn Peters Systems Engineer, IBM Rational petersda@us.ibm.com 2009 IBM Corporation WEB 2.0 What is it? 2 Web

More information

Practical Performance Understanding the Performance of Your Application

Practical Performance Understanding the Performance of Your Application Neil Masson IBM Java Service Technical Lead 25 th September 2012 Practical Performance Understanding the Performance of Your Application 1 WebSphere User Group: Practical Performance Understand the Performance

More information

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory. 2012 IBM Corporation 1

Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory. 2012 IBM Corporation 1 Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory 1 Agenda Mobile web applications and Web Experience Factory High-level tour of Web Experience Factory automation

More information

Novell Access Manager

Novell Access Manager Access Gateway Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP2 November 16, 2010 www.novell.com Novell Access Manager 3.1 SP2 Access Gateway Guide Legal Notices Novell, Inc., makes no representations

More information

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Tivoli Endpoint Manager for Security and Compliance Analytics

Tivoli Endpoint Manager for Security and Compliance Analytics Tivoli Endpoint Manager for Security and Compliance Analytics User s Guide User s Guide i Note: Before using this information and the product it supports, read the information in Notices. Copyright IBM

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Platform LSF Version 9 Release 1.2. Migrating on Windows SC27-5317-02

Platform LSF Version 9 Release 1.2. Migrating on Windows SC27-5317-02 Platform LSF Version 9 Release 1.2 Migrating on Windows SC27-5317-02 Platform LSF Version 9 Release 1.2 Migrating on Windows SC27-5317-02 Note Before using this information and the product it supports,

More information

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 DEPLOYMENT GUIDE Version 1.1 Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Citrix Presentation Server Prerequisites

More information

2792 - Leveraging WebSphere Commerce for Search Engine Optimization (SEO)

2792 - Leveraging WebSphere Commerce for Search Engine Optimization (SEO) 2792 - Leveraging WebSphere Commerce for Search Engine Optimization (SEO) Walfrey Ng, Development Manger, WebSphere Commerce Srini Rangaswamy, Product Manager, WebSphere Commerce IBM s statements regarding

More information

Windows 2000 / NT 4.0 / 95 / 98, MS-DOS, Suse Operating Systems

Windows 2000 / NT 4.0 / 95 / 98, MS-DOS, Suse Operating Systems Name : Z A B Phone : 1-847-530-7013 Email : consultants@webspherehatsguru.com SUMMARY One & half year experience of technical experience in complete software development life cycle process which includes

More information

Introduction to IBM Worklight Mobile Platform

Introduction to IBM Worklight Mobile Platform Introduction to IBM Worklight Mobile Platform The Worklight Mobile Platform The Worklight Mobile Platform is an open, complete and advanced mobile application platform for HTML5, hybrid and native apps.

More information

Using TestLogServer for Web Security Troubleshooting

Using TestLogServer for Web Security Troubleshooting Using TestLogServer for Web Security Troubleshooting Topic 50330 TestLogServer Web Security Solutions Version 7.7, Updated 19-Sept- 2013 A command-line utility called TestLogServer is included as part

More information

DataPower z/os crypto integration

DataPower z/os crypto integration New in version 3.8.0 DataPower z/os crypto integration Page 1 of 14 DataPower z/os crypto integration NSS performs requested key operation using certificates and keys stored in RACF RACF Administrator

More information

WebSphere Commerce V7.0

WebSphere Commerce V7.0 IBM Software Group WebSphere Commerce V7.0 Multi-channel precision marketing overview Updated December 3, 2009 This presentation introduces multi-channel precision marketing in WebSphere Commerce version

More information

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices

More information

Computer Networks. Lecture 7: Application layer: FTP and HTTP. Marcin Bieńkowski. Institute of Computer Science University of Wrocław

Computer Networks. Lecture 7: Application layer: FTP and HTTP. Marcin Bieńkowski. Institute of Computer Science University of Wrocław Computer Networks Lecture 7: Application layer: FTP and Marcin Bieńkowski Institute of Computer Science University of Wrocław Computer networks (II UWr) Lecture 7 1 / 23 Reminder: Internet reference model

More information

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide SAP How-to Guide Mobile Device Management SAP Afaria How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide Applicable Releases: SAP Afaria 7 SP3 HotFix 06, SAP Afaria

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

Web. Services. Web Technologies. Today. Web. Technologies. Internet WWW. Protocols TCP/IP HTTP. Apache. Next Time. Lecture #3 2008 3 Apache.

Web. Services. Web Technologies. Today. Web. Technologies. Internet WWW. Protocols TCP/IP HTTP. Apache. Next Time. Lecture #3 2008 3 Apache. JSP, and JSP, and JSP, and 1 2 Lecture #3 2008 3 JSP, and JSP, and Markup & presentation (HTML, XHTML, CSS etc) Data storage & access (JDBC, XML etc) Network & application protocols (, etc) Programming

More information

IBM Tivoli Service Request Manager 7.1

IBM Tivoli Service Request Manager 7.1 IBM Tivoli Service Request Manager 7.1 Using the e-mail listener and workflow to generate, query, update, and change the status of tickets Updated September 29, 2009 IBM Tivoli Service Request Manager

More information

IBM z13 for Mobile Applications

IBM z13 for Mobile Applications IBM z13 for Mobile Applications Octavian Lascu Mobile Adopt IBM z Systems Solution Guide IBM z13 for Mobile Applications IBM Redbooks Solution Guide In today s mobile era, over 10 billion devices are accessing

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

Practical Web Services for RPG IBM Integrated Web services for i

Practical Web Services for RPG IBM Integrated Web services for i Agenda Key: Session Number: 32CG 540191 Practical Web Services for RPG IBM Integrated Web services for i Dan Hiebert IBM dhiebert@us.ibm.com 8 Copyright IBM Corporation, 2009. All Rights Reserved. This

More information

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007 Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Apache Tomcat Release 12.1.0.1.0 E28545-04 February 2014 This document provides installation instructions and configuration information

More information

Tivoli Endpoint Manager for Security and Compliance Analytics. Setup Guide

Tivoli Endpoint Manager for Security and Compliance Analytics. Setup Guide Tivoli Endpoint Manager for Security and Compliance Analytics Setup Guide Setup Guide i Note: Before using this information and the product it supports, read the information in Notices. Copyright IBM Corporation

More information

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Nature of Document: Guideline Product(s): IBM Cognos Express Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials

More information

Performance Best Practices Guide for SAP NetWeaver Portal 7.3

Performance Best Practices Guide for SAP NetWeaver Portal 7.3 SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights

More information

IBM Cloud Manager with OpenStack. REST API Reference, version 4.1

IBM Cloud Manager with OpenStack. REST API Reference, version 4.1 IBM Cloud Manager with OpenStack REST API Reference, version 4.1 IBM Cloud Manager with OpenStack REST API Reference, version 4.1 Note Before using this information and the product it supports, read the

More information

IBM Endpoint Manager Version 9.2. Software Use Analysis Upgrading Guide

IBM Endpoint Manager Version 9.2. Software Use Analysis Upgrading Guide IBM Endpoint Manager Version 9.2 Software Use Analysis Upgrading Guide IBM Endpoint Manager Version 9.2 Software Use Analysis Upgrading Guide Upgrading Guide This edition applies to IBM Endpoint Manager

More information

technical brief browsing to an installation of HP Web Jetadmin. Internal Access HTTP Port Access List User Profiles HTTP Port

technical brief browsing to an installation of HP Web Jetadmin. Internal Access HTTP Port Access List User Profiles HTTP Port technical brief in HP Overview HP is a powerful webbased software utility for installing, configuring, and managing networkconnected devices. Since it can install and configure devices, it must be able

More information

Network Technologies

Network Technologies Network Technologies Glenn Strong Department of Computer Science School of Computer Science and Statistics Trinity College, Dublin January 28, 2014 What Happens When Browser Contacts Server I Top view:

More information

IBM Security QRadar Version 7.1.0 (MR1) Replacing the SSL Certificate Technical Note

IBM Security QRadar Version 7.1.0 (MR1) Replacing the SSL Certificate Technical Note IBM Security QRadar Version 7.1.0 (MR1) Technical Note Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 5 Copyright IBM Corp.

More information

StreamServe Persuasion SP4 Service Broker

StreamServe Persuasion SP4 Service Broker StreamServe Persuasion SP4 Service Broker User Guide Rev A StreamServe Persuasion SP4 Service Broker User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No

More information

Flexible Routing and Load Control on Back-End Servers. Controlling the Request Load and Quality of Service

Flexible Routing and Load Control on Back-End Servers. Controlling the Request Load and Quality of Service ORACLE TRAFFIC DIRECTOR KEY FEATURES AND BENEFITS KEY FEATURES AND BENEFITS FAST, RELIABLE, EASY-TO-USE, SECURE, AND SCALABLE LOAD BALANCER [O.SIDEBAR HEAD] KEY FEATURES Easy to install, configure, and

More information

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web Access 1.06

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web Access 1.06 SafeNet Authentication Service Configuration Guide 1.06 Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,

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

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

CA Application Performance Management

CA Application Performance Management CA Application Performance Management for Browser Response Time Monitor Installation and Configuration Guide Release 9.6 This Documentation, which includes embedded help systems and electronically distributed

More information

A Java proxy for MS SQL Server Reporting Services

A Java proxy for MS SQL Server Reporting Services 1 of 5 1/10/2005 9:37 PM Advertisement: Support JavaWorld, click here! January 2005 HOME FEATURED TUTORIALS COLUMNS NEWS & REVIEWS FORUM JW RESOURCES ABOUT JW A Java proxy for MS SQL Server Reporting Services

More information

Integrating ERP and CRM Applications with IBM WebSphere Cast Iron IBM Redbooks Solution Guide

Integrating ERP and CRM Applications with IBM WebSphere Cast Iron IBM Redbooks Solution Guide Integrating ERP and CRM Applications with IBM WebSphere Cast Iron IBM Redbooks Solution Guide Cloud computing has become a business evolution that is impacting all facets of business today, including sales,

More information

www.novell.com/documentation SSL VPN Server Guide Access Manager 3.1 SP5 January 2013

www.novell.com/documentation SSL VPN Server Guide Access Manager 3.1 SP5 January 2013 www.novell.com/documentation SSL VPN Server Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

Connectivity and integration Executive brief. Optimize the potential of ERP systems through IBM SMART SOA integration strategies.

Connectivity and integration Executive brief. Optimize the potential of ERP systems through IBM SMART SOA integration strategies. Connectivity and integration Executive brief Optimize the potential of ERP systems through IBM SMART SOA integration strategies. Page 2 Contents 2 Executive overview 3 A problem of integration 4 How this

More information

SSL VPN Technology White Paper

SSL VPN Technology White Paper SSL VPN Technology White Paper Keywords: SSL VPN, HTTPS, Web access, TCP access, IP access Abstract: SSL VPN is an emerging VPN technology based on HTTPS. This document describes its implementation and

More information

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications Collaboration Technology Support Center - Microsoft - Collaboration Brief March 2005 Using SAP Logon Tickets for Single Sign on to Microsoft based web applications André Fischer, Project Manager CTSC,

More information

Configuring DoD PKI. High-level for installing DoD PKI trust points. Details for installing DoD PKI trust points

Configuring DoD PKI. High-level for installing DoD PKI trust points. Details for installing DoD PKI trust points Configuring DoD PKI This document describes the procedures to configure an XML Firewall that is interoperable with the United Stated Department of Defense (DoD) Public Key Infrastructure (PKI). High-level

More information

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide An Oracle White Paper May 2011 Microsoft Active Directory Oracle Enterprise Gateway Integration Guide 1/33 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Cisco Collaboration with Microsoft Interoperability

Cisco Collaboration with Microsoft Interoperability Cisco Collaboration with Microsoft Interoperability Infrastructure Cheatsheet First Published: June 2016 Cisco Expressway X8.8 Cisco Unified Communications Manager 10.x or later Microsoft Lync Server 2010

More information

2012 LABVANTAGE Solutions, Inc. All Rights Reserved.

2012 LABVANTAGE Solutions, Inc. All Rights Reserved. LABVANTAGE Architecture 2012 LABVANTAGE Solutions, Inc. All Rights Reserved. DOCUMENT PURPOSE AND SCOPE This document provides an overview of the LABVANTAGE hardware and software architecture. It is written

More information