The SAP Internet Programming Model, Part 1

Size: px
Start display at page:

Download "The SAP Internet Programming Model, Part 1"

Transcription

1 The SAP Internet Programming Model, Part 1 Since the first SAP ITS-enabled R/3 release (R/3 3.1G), the number of standard Internet Applications Components (IACs) provided by SAP has constantly increased. SAP R/3 4.5 currently provides over 100. These IACs are available in many different application areas of the R/3 System, but SAP is currently focusing on procurement, self-service areas such as human resources, and consumer-to-business functionality. This is the first in a series of articles that will walk you through the current SAP Internet programming model. This article lays the groundwork by examining the SAP Internet Transaction Server (SAP ITS) architecture and core concepts. All IACs delivered with the standard R/3 System are based on a common infrastructure called SAP ITS. The SAP Basis infrastructure consists of two components: SAP ITS is the runtime engine bridging the R/3 application server and mainstream Web server software. It supports Netscape Enterprise Server (NSAPI), Microsoft IIS (ISAPI), or any CGIcapable Web server. SAP@Web Studio is the extension to the SAP development environment for Web-related objects residing outside the R/3 System. The SAP ITS development approach is to write Internet applications inside the R/3 System using the R/3 programming model for R/3 transactions, function modules, and reporting. This approach is also known as the "inside-out" approach because the business logic programming, process, and customization of the Internet applications occur within the R/3 System. Outside the R/3 System, the visualization of these Internet applications (in the form of HTML template files, MIME files such as images, sound, video, and so forth) is stored. R/3 is used as the Internet application builder platform, and SAP ITS extends the R/3 environment to the Internet. SAP is now using this approach for all of its IACs so that customers can develop, deploy, maintain, and upgrade all their business logic (Internet as well as regular SAPGUI-based applications) in a single development and runtime environment. For Internet application developers, it provides a homogeneous environment with advantages such as single language programming (ABAP), R/3 data dictionary support, R/3 transaction handling, etc. In addition, many important features of the R/3 System (such as internationalization and load balancing) are automatically extended to the Internet. In working to Internet-enable the R/3 System, the ITS development team defined the following key requirements: Performance and scalability Compatibility with all standard Web browsers (no special software or plug-ins required on the client; however, if needed, Java, Javascript, etc. possible on client) Security Separation of business logic and visual appearance Common basis for all R/3 application areas World-wide market (i.e., same application can run in any location without code modifications) Backward compatibility (>= R/3 3.0D)

2 Satellite system (i.e., Basis system can be installed and upgraded independently from core R/3 System). The idea of separating business logic and visualization is based on the assumption that successful Internet applications require developers with different skill sets: A good programmer who understands the business requirements and knows how to code the business logic A good designer or UI specialist who not only understands graphic design but also can give recommendations for an intuitive user interface. It is difficult to find developers who possess both of these skill sets. ITS puts these skill sets together as follows: The UI designer and ABAP programmer begin jointly by defining and designing the application, including its navigation from a user interface perspective. The UI designer works hand-in-hand with the application programmer even before the ABAP coding starts defining a UI from a usability perspective. The ABAP programmer then writes the actual application in the SAP development environment and can test it by using the SAPGUI only. No HTML layer is required at this stage. The UI designer takes over after the application has been coded and is running in the SAPGUI environment. SAP@Web Studio is used to create the look of the application with HTML. No expertise in the ABAP development environment, business application programming, or R/3 customizing is necessary. Because HTML is the common denominator that all major browsers can handle, ITS is primarily used to send plain HTML to the browser. If your user community has a homogeneous installation of a recent Web browser, you can also use DHTML, JavaScript, VBScript, and JavaApplets in your HTML templates. The language you use in the templates is transparent to SAP ITS. ARCHITECTURE SAP ITS is a gateway between the Web server and the SAP R/3 application server. It allows for effective communication between the two systems despite their technical differences (e.g., stateless World Wide Web vs. session concept/state in the R/3 System). Currently available for the Windows NT platform, SAP ITS consists of two major components: the Web Gateway (WGate) and the Application Gateway (AGate). WGate extends the Web server functionality. It constitutes a relatively small portion of SAP ITS functionality compared to the AGate component. WGate forwards each incoming request to AGate, thus accomplishing two goals: 1. The ITS server process (AGate) can be detached from the actual Web server. For security and performance reasons, AGate can be installed on a host separate from the Web server and WGate. This dual host installation physically separates all sensitive information on AGate from the Web server host, which is typically considered vulnerable to security intrusions. You can also put AGate behind a firewall for additional security.

3 Although both components can be installed on a single host, SAP recommends the dual host for production installations. For simple test or development installations without security concerns, a single host installation is sufficient. 2. The Web server specifics are encapsulated in the WGate component and do not affect AGate. The installation program automatically detects which Web server you are running and installs the matching WGate. WGate is available in NSAPI (Netscape), ISAPI (Microsoft), or CGI versions. Regardless of whether you select a single or dual host installation for SAP ITS, AGate is an active server process that can allocate its resources independently of any Web server constraints. Among many other things, AGate is responsible for: Establishing the R/3 connection using the DIAG (=SAPGUI) or RFC protocol Generating HTML pages based on the data from the R/3 System Managing the login process Managing the session context and timeouts Code page conversions and national language support. AGate can communicate to one dedicated R/3 application server, or it can be configured to use the SAP message server to loadbalance incoming requests over a number of R/3 application servers. WGate and AGate communicate via SAP Network Interface (NI) over a TCP/IP connection. In addition to these two key components, there is a Windows NT service called ITS Manager that is responsible for starting and stopping the AGate process as well as monitoring the AGate process during runtime. VIRTUAL SAP ITS INSTANCES You can have several SAP ITS installations on a single Windows NT host. These virtual SAP ITS instances all share the same executable code (so you cannot install two different SAP ITS versions on a single host) but run with completely separate configuration settings and separate directory trees for their respective HTML templates, service files, and so forth. An SAP ITS instance typically corresponds to one R/3 System. A high-load production instance is usually put onto a dedicated host. For development and testing, however, several SAP ITS instances can be installed on the same hardware. This lowers the number of physical hosts required if you have SAP ITS installations with low load requirements. Each virtual SAP ITS instance requires a dedicated Web server. (IIS4.0 and Netscape Enterprise Server 3.0 and 3.51 support the configuration of virtual Web servers.) SAP also recommends putting the Web-based SAP ITS administration tool on a separate SAP ITS instance for security reasons. This tool provides information on performance and grants access to the configuration of all SAP ITS instances installed on the same host. The monitoring functions provide current and historic performance information and give access to SAP ITS log and trace files. Administration functions include access to the registry as well as SAP ITS configuration files (such as service files and HTML templates). For security reasons, you should not run this administrator tool as a part of any production SAP ITS instance.

4 NATIONAL LANGUAGE SUPPORT SAP ITS offers National Language Support (NLS) via the Unicode character set delivered with Microsoft Windows NT 4.0 at the AGate component. By using Unicode, SAP ITS is able to run multiple distinct character sets on one hardware box without requiring additional SAP ITS servers for this purpose. Therefore, SAP ITS avoids the complexity of handling multiple character sets. Where Unicode is not yet supported, SAP ITS automatically converts to and from multibyte code pages. To support multiple language variants of the same transaction, SAP ITS not only provides the codepage capabilities but also separate language resource files. Internally, SAP ITS provides NLS through language-independent HTML templates into which language-specific text can be merged at runtime from the SAP R/3 data dictionary or from a language resource file residing on the ITS server. SAP recommends that you retrieve all language-dependent text from the SAP R/3 data dictionary. Language resource files provide an alternate source. SAP ITS AT RUN TIME All SAP ITS-based Internet applications are called IACs regardless whether they are implemented as transactions, RFCs, or reports. Although this article series focuses on the Web transaction programming model (as most IACs are implemented as R/3 transactions), WebRFC and Web Reporting programming options are also available with SAP ITS. Not every R/3 transaction can be run on the Internet immediately -- for technical and usability reasons. (A future article in the series will discuss the criteria transactions must meet in order to run on the Web.) A service -- an Internet application based on a Web-enabled IAC -- consists of a "service" file (containing all settings required to connect to R/3 and to control the connection), HTML templates, language resources, and any graphics that may be needed. Figure 1 shows the principle operation of ITS for one

5 request/response cycle. Figure 1. An ITS request/response cycle. Let's say you want to start a service called "purchase" from your Web browser (see Figure 2). You would send the following URL to your Web server: " Figure 2. Starting a service from a Web browser. The Web server calls the extension wgate. WGate establishes the connection and forwards the information to AGate. AGate then loads a service file. You can define parameters in a particular service file or in a central overall service file that contains settings that apply to all services (global.srvc). The more specific setting always overrides the more general setting if a parameter is defined more than once. In our example, AGate looks for the service file named Purchase.srvc. The service file always defines which R/3 application will drive the service. In the case of a Web Transaction, the parameter ~transaction is always defined in the service file. Parameters required but not defined in the specific service file Purchase.srvc will be resolved via the global.srvc. (The R/3 System connect settings typically apply to all services alike and are consequently defined in the global.srvc). Typically, global.srvc is defined during the SAP ITS installation process. AGate opens a SAPGUI connection to the R/3 System because you're requesting a service start -- designated by the "!" on the URL. If this were not a service start but a subsequent request by the same user, ITS would identify the SAPGUI connection previously established and send the information down

6 to R/3 on that channel. SAP ITS identifies sessions by a session ID, which is either returned from the browser to the server on the URL or in a cookie (see service file setting ~cookies). The R/3 System starts the transaction and sends the initial screen to AGate. AGate finds the template matching this screen. There is a one-to-one relationship between screens and HTML templates. Templates are named by program name and screen number (for example, zmwzpocr_1000.html). If there are language resource files, AGate will load them at this time. AGate then interprets the HTML template file and merges the information displayed on the R/3 screen (and contained in the language resource file) into the HTML template, creating the actual Web page. AGate forwards that page via WGate and the Web server to the Web browser. Let's say your R/3 instance has a Web transaction zpocr consisting of two screens -- screen 1000 and screen 3000 in a program called zmwzpocr. On the SAP ITS server, you have a service file called purchase.srvc, and it contains an entry ~transaction zpocr. Also, you have a template file for each R/3 screen -- zmwzpocr_1000.html and zmwzpocr_3000.html -- on the SAP ITS server. As soon as SAP ITS receives the request to start service purchase, it determines via the service file purchase.srvc that it needs to start Web transaction zpocr. AGate establishes a connection to R/3 based on the connection parameters defined in the service files and logs on to R/3. As soon as the first R/3 screen (1000) comes up, SAP ITS locates the matching HTML template (zmwzpocr_1000.html) and merges the R/3 data into the template, creating the final Web page 1000, which it sends to the browser (see Figure 3, arrows 1 and 2).

7 Figure 3. Steps of a Web transaction. Your user keys in the required information and submits the HTML form. SAP ITS receives the HTTP request and writes the data received from the Web onto the R/3 screen (arrow 3). SAP ITS maps each HTTP request variable to a corresponding R/3 screen field by matching the HTTP request variable name with the R/3 screen element name. SAP ITS then starts the processing in R/3 by sending an OK code received from the Web (arrow 4). As soon as the next R/3 screen (3000) comes up, the same sequence of steps is repeated. IMPLEMENTATION DETAILS AGate is implemented with a so-called dispatcher/worker thread model. A dedicated dispatcher thread listens on the port for incoming requests from WGate. As soon as a request is received, the dispatcher thread picks an idle worker thread from a pool of worker threads. If no worker thread is available, the incoming request is queued. The worker thread determines whether the incoming request is an initial request from a new user or a subsequent request from an already ongoing session. If it is an initial request, the worker thread looks for an empty slot in the session pool data structure. When it finds a slot, it assigns the request a session ID. (This session ID is later sent with the response to the Web browser to identify future requests as part of the same session.) It then opens a SAPGUI connection to R/3 and initiates the logon procedure to R/3. All information pertaining to this connection is stored for future reference in the session slot. Thus, the session pool keeps track of all R/3 connections for currently pending Web sessions. The session pool is statically allocated at startup time of the AGate process. If it is a subsequent request, the worker thread identifies the Web user by looking at the session ID and finds the corresponding session pool slot that contains all information to resume communication in the ongoing R/3 session. After the connection to R/3 is established or found in the session pool, the worker thread passes the information it received from the Web to R/3 and waits until R/3 responds. As soon as R/3 sends the follow-up screen, the worker thread finds the corresponding HTML template and interprets it -- that is, fills the data received from R/3 into the HTML template file -- before sending it back to WGate. The worker thread then becomes idle again and returns to the pool of worker threads. The connection to R/3 remains open, and its status is stored in the session pool. So that sessions don't remain open indefinitely, there is a timeout thread, which rolls over all session slots in use to determine whether the timeout limit has been reached. If it has, the connection is closed and the session slot is marked unused again. It is important to point out that a thread is only busy for one request/response cycle. It's not bound to a Web session. So the number of worker threads you need to configure should equal the number of requests you want to handle concurrently.

8 The session slot however remains allocated until the Web session is terminated. Termination can occur through an explicit logoff from the user, through timeout, or if the same service is started from the same browser (in which case the previous session is automatically cleared). TUNING INFORMATION The SAP ITS monitoring and administration tool (available as of version 2.2) provides access to key performance numbers for each SAP ITS instance (see Figure 4). Figure 4. ITS Administration. The SAP ITS setup procedure provides two registry configurations that are appropriate for most initial configuration needs: Default configuration (requiring 128MB of memory) Minimize memory usage (requiring 32MB of memory). Choose Minimize memory usage if you are setting up a small test or development system. This setting is especially useful for setting up ITS on your personal development PC. For production installations, choose Default configuration.

9 You can configure the session pool and the worker threads in the Windows NT registry. SAP recommends using the SAP ITS administration tool, which gives you access to all configuration parameters and SAP ITS performance information from a Web browser. In the default configuration, the worker threads are configured as follows: MaxWorkThreads. The maximum number of worker threads allowed for a single SAP ITS instance. The default value for the Minimize memory usage configuration is 4. For Default configuration there is a value of 80. The number of worker threads determines how many requests can be handled concurrently. MinWorkThreads. The minimum number of worker threads the instance is allowed. Obviously, MinWorkThreads always has to be smaller than or equal to MaxWorkThreads. When AGate starts, only MinWorkThreads will be created. If the dispatcher thread can't find any idle worker threads anymore, it will create additional worker threads until it hits the MaxWorkThreads limit. The default value for Minimize memory usage is also 4. Every five minutes, the timeout thread checks the number of idle threads. If there are enough, the number of worker threads reverts back toward the default by IncWorkThread. IncWorkThread. This parameter controls how many worker threads can be created or destroyed at a time. The default value is 1. MaxSessions. The maximum number of sessions an SAP ITS instance is allowed to handle. In other words, this parameter determines the number of session slots available. For Minimum memory usage, it defines a session pool with 100 slots. For Default configuration, it defines a pool with 2000 slots. TimeoutSweep. The interval of time (in seconds) specifying how often SAP ITS checks for timed-out sessions. SAP ITS sessions that exceed their timeout maximums without sending a request are killed. TimeoutPercentage. The proportion of the timeout limit that is granted to sessions in situations of high load. When the maximum number of sessions has been reached, SAP ITS may kill idle sessions before they reach their timeout limits. For example, if a service has a timeout limit of 20 minutes, and TimeoutPercentage is 75 percent, then a session running this service could, in high-load situations, be terminated after an idle time of only 15 minutes. SECURITY The R/3 Internet architecture has many built-in security features, such as the option to run WGate and AGate on separate hosts. SAP recommends that you set up a network infrastructure that makes use of these features to control access from the Internet and intranets to SAP ITS and the core business system. SAP also recommends that you use other security components, such as firewalls, packet filters and SAPRouters to separate individual parts of the network from one another. If you follow these guidelines, unauthorized access -- if it does occur -- is restricted to a small part of the system and cannot harm your internal systems, including R/3.

10 There are two key actions involved in securing a network infrastructure: Protect key components by firewalls to break down the network infrastructure into smaller compartments, tightening access restrictions the closer you get to R/3. Encrypt the communication between components. FIREWALLS As Figure 5 illustrates, you can configure up to three firewalls: Figure 5. The three levels of firewall (security zones increase from left to right). Web server protection. The Web server should always be protected against all network packets other than HTTP. You can accomplish this by configuring the router to pass packets to the corresponding TCP port only. The default port of all Web servers is 80 for the unencrypted HTTP protocol. Web servers that support HTTPS (HTTP plus the Secure Sockets Layer) use port 443 by default. HTTPS provides the encryption between Web browser and Web server and should be used for communication of sensitive information. This first router and packet filter allows access from the general Internet (or intranet) to the Web server's TCP port. Windows NT on the Web server should be set up to be as restrictive as possible from a security perspective. All unnecessary network services should be disabled. AGate server protection. SAP recommends that you take additional measures to isolate the Web server from the internal corporate network. This prevents additional damage if, for example, an intruder were to gain control of the Web server. You should impose strict controls over any connection between the external network, where the Web server and WGate are located, and the internal corporate network that contains the AGate server.

11 R/3 server protection. For maximum security, you can install a firewall between AGate and R/3. ENCRYPTION The obvious communications choice between Web browser and Web server is HTTPS. Between WGate and AGate you can choose between an easy-to-install DES-based encoding (as opposed to strong encryption) and the more sophisticated SNC-based encryption. To use SNC between AGate and R/3, you need ITS 2.2. The simple DES-style encoding of communication is based on a static key and can consequently provide only limited protection. SNC uses an external security product to apply encryption to communication links. An additional security product needs to be set up prior to the ITS installation and must be configured to integrate with R/3 and ITS. SNC provides the best security option but requires much more effort to put in place. FURTHER INFORMATION If you do not have ITS and SAP@Web Studio, you can download them free from All ITS releases are backward compatible to R/3 3.0D and higher. For further information on other options -- such as internationalization, binary data transfer between R/3 and ITS, and resynchronization, consider the following resources: Programmer's documentation: SAP@Web Studio Help or R/3 online documentation CD-ROM Latest ITS releases for download: devarea/its.htm SAP TechEd'98 post-conference CD-ROM SAP Security Guide SAP training class BC440. Note : This article appeared in the first issue on Please visit the above site for the original article

Installation Guide

Installation Guide SAP@Web Installation Guide Release 4.6C SAP AG Neurottstr. 16 D-69190 Walldorf 5100 9540 SAP@Web Installation Guide SAP AG Copyright Copyright 2000 SAP AG. All rights reserved. No part of this brochure

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

SAP Web Dispatcher 6.40 for SAP Web AS Java. Jochen Rundholz NW RIG APA

SAP Web Dispatcher 6.40 for SAP Web AS Java. Jochen Rundholz NW RIG APA SAP Web Dispatcher 6.40 for SAP Web AS Java Jochen Rundholz NW RIG APA RIG Know How Conf Calls Please: All participants will be muted Questions in the Q&A section at the end Important issues via WebEx

More information

13. Databases on the Web

13. Databases on the Web 13. Databases on the Web Requirements for Web-DBMS Integration The ability to access valuable corporate data in a secure manner Support for session and application-based authentication The ability to interface

More information

Configuring Request Authentication and Authorization

Configuring Request Authentication and Authorization CHAPTER 15 Configuring Request Authentication and Authorization Request authentication and authorization is a means to manage employee use of the Internet and restrict access to online content. This chapter

More information

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP System v10 with Microsoft IIS 7.0 and 7.5

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP System v10 with Microsoft IIS 7.0 and 7.5 DEPLOYMENT GUIDE Version 1.2 Deploying the BIG-IP System v10 with Microsoft IIS 7.0 and 7.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Microsoft IIS Prerequisites and configuration

More information

Oracle E-Business Suite 11i with Cisco ACE Series Application Control Engine Deployment Guide, Version 1.0

Oracle E-Business Suite 11i with Cisco ACE Series Application Control Engine Deployment Guide, Version 1.0 Design Guide Oracle E-Business Suite 11i with Cisco ACE Series Application Control Engine Deployment Guide, Version 1.0 This design guide describes how to deploy the Cisco Application Control Engine (Cisco

More information

Software Elements of Electronic Business Sites

Software Elements of Electronic Business Sites Software Elements of Electronic Business Sites Daniel A. Menascé, Ph. D. www.cs.gmu.edu/faculty/menasce.html 1 Implementation Options Client Server Client-side: client-side scripts Java applets Server-side:

More information

KINGS COLLEGE OF ENGINEERING 1

KINGS COLLEGE OF ENGINEERING 1 KINGS COLLEGE OF ENGINEERING Department of Computer Science & Engineering Academic Year 2011 2012(Odd Semester) QUESTION BANK Subject Code/Name: CS1401-Internet Computing Year/Sem : IV / VII UNIT I FUNDAMENTALS

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client The feature provides a consistent interface for users and applications by implementing support for HTTP 1.1 in Cisco IOS XE software-based devices. When combined with the HTTPS feature, the feature provides

More information

GoToMyPC Corporate Product Guide

GoToMyPC Corporate Product Guide GoToMyPC Corporate Product Guide 072402 Contents Product Overview...1 How It Works...1 Target Audiences/Product Uses...2 Primary Selling Points...3 Software Features and Benefits...4 Administration Center

More information

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER Table of Contents Table of Contents Introducing the F5 and Oracle Access Manager configuration Prerequisites and configuration notes... 1 Configuration

More information

Deploying Microsoft SharePoint with the F5 WebAccelerator

Deploying Microsoft SharePoint with the F5 WebAccelerator Deployment Guide Deploying Microsoft SharePoint Portal Server 2003 with the F5 WebAccelerator Deploying Microsoft SharePoint with the F5 WebAccelerator Welcome to the F5 WebAccelerator - Microsoft SharePoint

More information

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0. Feature and Technical Overview

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0. Feature and Technical Overview BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0 Feature and Technical Overview SWDT305802-524791-0331031644-001 Contents 1 Overview: BlackBerry Enterprise Server... 5 New in this release...

More information

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Administration Guide

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Administration Guide BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0 Administration Guide SWDT487521-636611-0528041049-001 Contents 1 Overview: BlackBerry Enterprise Server... 21 Getting started in your BlackBerry

More information

To find a quick and easy route to web-enable

To find a quick and easy route to web-enable BY JIM LEINBACH This article, the first in a two-part series, examines IBM s CICS Web Support (CWS) and provides one software developer s perspective on the strengths of CWS, the challenges his site encountered

More information

Chapter 10 Web-based Information Systems

Chapter 10 Web-based Information Systems Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 10 Web-based Information Systems Role of the WWW for IS Initial

More information

Distributed telecommunications network access using the TMOS IntraWeb Gateway

Distributed telecommunications network access using the TMOS IntraWeb Gateway Distributed telecommunications access using the IntraWeb Gateway Magnus Ekhed, Peter Gundersen and Olav Queseth In an increasingly competitive marketplace, operator success depends more and more on usage.

More information

SAP Document. SAP GUI Technical Infrastructure. SAP AG Neurottstr. 16 D Walldorf

SAP Document. SAP GUI Technical Infrastructure. SAP AG Neurottstr. 16 D Walldorf SAP Document SAP GUI Technical Infrastructure SAP AG Neurottstr. 16 D-69190 Walldorf Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

Migrating to the P8 5.2 Component Manager Framework

Migrating to the P8 5.2 Component Manager Framework Migrating to the P8 5.2 Component Manager Framework Contents Migrating to the P8 5.2 Component Manager Framework... 1 Introduction... 1 Revision History:... 2 Comparing the Two Component Manager Frameworks...

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

CYAN SECURE WEB Installing on Windows

CYAN SECURE WEB Installing on Windows CYAN SECURE WEB September 2009 Applies to: 1.7 and above Table of Contents 1 Introduction... 2 2 Preparation... 2 3 Network Integration... 3 3.1 Out-of-line Deployment... 3 3.2 DMZ Deployment... 3 4 Proxy

More information

BIG-IP Access Policy Manager : Portal Access. Version 12.1

BIG-IP Access Policy Manager : Portal Access. Version 12.1 BIG-IP Access Policy Manager : Portal Access Version 12.1 Table of Contents Table of Contents Overview of Portal Access...7 Overview: What is portal access?...7 About portal access configuration elements...7

More information

Wavelink Avalanche Site Edition Java Console User Guide. Version 5.3

Wavelink Avalanche Site Edition Java Console User Guide. Version 5.3 Wavelink Avalanche Site Edition Java Console User Guide Version 5.3 Revised 04/05/2012 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway,

More information

Lecture 9a: Sessions and Cookies

Lecture 9a: Sessions and Cookies CS 655 / 441 Fall 2007 Lecture 9a: Sessions and Cookies 1 Review: Structure of a Web Application On every interchange between client and server, server must: Parse request. Look up session state and global

More information

Deploying the BIG-IP System v10 with Oracle s BEA WebLogic

Deploying the BIG-IP System v10 with Oracle s BEA WebLogic DEPLOYMENT GUIDE Deploying the BIG-IP System v10 with Oracle s BEA WebLogic Version 1.0 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Oracle s BEA WebLogic Prerequisites and

More information

Application Broker Service Edition

Application Broker Service Edition 2 Application Broker COPYRIGHT 1994-2005 SoftVelocity Incorporated. All rights reserved. This publication is protected by copyright and all rights are reserved by SoftVelocity Incorporated. It may not,

More information

HikCentral V1.3 for Windows Hardening Guide

HikCentral V1.3 for Windows Hardening Guide HikCentral V1.3 for Windows Hardening Guide Contents Introduction... 1 1. The Operating System - Microsoft Windows Security Configuration... 2 1.1Strict Password Policy... 2 1.2Turn Off Windows Remote

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SHRI ANGALAMMAN COLLEGE OF ENGINEERING & TECHNOLOGY (An ISO 9001:2008 Certified Institution) SIRUGANOOR,TRICHY-621105. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year/Sem: IV / VII CS1401 INTERNET

More information

MarkLogic Server. Database Replication Guide. MarkLogic 6 September, Copyright 2012 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Database Replication Guide. MarkLogic 6 September, Copyright 2012 MarkLogic Corporation. All rights reserved. Database Replication Guide 1 MarkLogic 6 September, 2012 Last Revised: 6.0-1, September, 2012 Copyright 2012 MarkLogic Corporation. All rights reserved. Database Replication Guide 1.0 Database Replication

More information

Blueprinting Questionnaire Sample

Blueprinting Questionnaire Sample Manish Chaitanya Blueprinting Questionnaire Sample from The Complete Guide to SAP NetWeaver Portal Bonn Boston ch11_a_online_6124.indd 1 1/12/12 2:58:16 PM A Blueprinting Questionnaire Sample In Chapter

More information

Configuring the CSS for Device Management

Configuring the CSS for Device Management CHAPTER 2 Configuring the CSS for Device Management Before you can use the WebNS Device Management user interface software, you need to perform the tasks described in the following sections: WebNS Device

More information

Wavelink Avalanche Mobility Center Java Console User Guide. Version 5.2

Wavelink Avalanche Mobility Center Java Console User Guide. Version 5.2 Wavelink Avalanche Mobility Center Java Console User Guide Version 5.2 Revised 27/09/2011 ii Copyright 2011 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway,

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Create a pfsense router for your private lab network template

Create a pfsense router for your private lab network template Create a pfsense router for your private lab network template Some labs will require a private network where you can deploy services like DHCP. Here are instructions for setting up an uplink router for

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Administration Guide Published: 2013-01-29 SWD-20130131125552322 Contents 1 Related resources... 18 2 About BlackBerry Enterprise Server

More information

How to Make the Client IP Address Available to the Back-end Server

How to Make the Client IP Address Available to the Back-end Server How to Make the Client IP Address Available to the Back-end Server For Layer 4 - UDP and Layer 4 - TCP services, the actual client IP address is passed to the server in the TCP header. No further configuration

More information

vcloud Automation Center Reference Architecture vcloud Automation Center 5.2

vcloud Automation Center Reference Architecture vcloud Automation Center 5.2 vcloud Automation Center Reference Architecture vcloud Automation Center 5.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

DEPLOYMENT GUIDE. DEPLOYING F5 WITH ORACLE APPLICATION SERVER 10g

DEPLOYMENT GUIDE. DEPLOYING F5 WITH ORACLE APPLICATION SERVER 10g DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE APPLICATION SERVER 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1 Configuration

More information

PRIMIX SOLUTIONS. Core Labs. Tapestry : Java Web Components Whitepaper

PRIMIX SOLUTIONS. Core Labs. Tapestry : Java Web Components Whitepaper PRIMIX SOLUTIONS Core Labs Tapestry : Java Web s Whitepaper CORE LABS Tapestry: Java Web s Whitepaper Primix Solutions One Arsenal Marketplace Phone (617) 923-6639 Fax (617) 923-5139 Tapestry contact information:

More information

OpenText RightFax 10.6

OpenText RightFax 10.6 OpenText RightFax 10.6 Connector for SAP Administrator Guide Edition OpenText RightFax 10.6 Connector for SAP. This document was last updated October 16, 2013. Trademarks OpenText is a registered trademark

More information

MarkLogic Server. Database Replication Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Database Replication Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Database Replication Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-3, September, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Database Replication

More information

File services. Domains, DNS DHCP. Server Scripts. Intranet and Extranets. Web services. HNC COMPUTING - Network Concepts

File services. Domains, DNS DHCP. Server Scripts. Intranet and Extranets. Web services. HNC COMPUTING - Network Concepts File services Domains, DNS 1 DHCP Server Scripts Intranet and Extranets Web services HNC COMPUTING - Network Concepts A domain is a logical grouping of networked computers that share a central directory

More information

CHAPTER 7 ADVANCED ADMINISTRATION PC

CHAPTER 7 ADVANCED ADMINISTRATION PC ii Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband ADSL Router Features... 1 Package Contents... 3 Physical Details... 4 CHAPTER 2 INSTALLATION... 6 Requirements... 6 Procedure... 6 CHAPTER 3 SETUP...

More information

SAP NetWeaver 04 Security Guide. Network and Communication Security

SAP NetWeaver 04 Security Guide. Network and Communication Security SAP NetWeaver 04 Security Guide Network and Communication Security Document Version 1.00 May 11, 2004 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18 05/34 34 20 www.sap.com

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with IBM WebSphere 7

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with IBM WebSphere 7 DEPLOYMENT GUIDE Version 1.1 Deploying F5 with IBM WebSphere 7 Table of Contents Table of Contents Deploying the BIG-IP LTM system and IBM WebSphere Servers Prerequisites and configuration notes...1-1

More information

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc.

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. Abstract This paper provides a detailed analysis of creating static and dynamic web content using the

More information

VI. Corente Services Client

VI. Corente Services Client VI. Corente Services Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 II. Corente Client Configuration...

More information

Using the Cisco ACE Application Control Engine Application Switches with the Cisco ACE XML Gateway

Using the Cisco ACE Application Control Engine Application Switches with the Cisco ACE XML Gateway Using the Cisco ACE Application Control Engine Application Switches with the Cisco ACE XML Gateway Applying Application Delivery Technology to Web Services Overview The Cisco ACE XML Gateway is the newest

More information

OpenText RightFax 10.0 Connector for SAP Guide

OpenText RightFax 10.0 Connector for SAP Guide OpenText RightFax 10.0 Connector for SAP Guide OpenText RightFax 10.0 Connector for SAP Guide ii Edition OpenText RightFax 10.0 Connector for SAP. This document was last updated May 24, 2011. Trademarks

More information

Appendix A GLOSSARY SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

Appendix A GLOSSARY SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. Appendix A GLOSSARY SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. Action Applet Bidirectional support Block Built-in macro Canvas CGI - Common Gateway Interface Character set Dependency view Dialog box Encryption

More information

vsphere Networking Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 EN

vsphere Networking Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 EN Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Extending the Domino System. Powered by Notes. The First Groupware and Server for the Net R E L E A S E

Extending the Domino System. Powered by Notes. The First Groupware and  Server for the Net R E L E A S E Extending the Domino System Powered by Notes The First Groupware and E-mail Server for the Net R E L E A S E COPYRIGHT Under the copyright laws, neither the documentation nor the software may be copied,

More information

Monitoring SAP ENCYCLOPEDIA ... ENCYCLOPEDIA. Monitoring Secrets for SAP. ArgSoft Intellectual Property Holdings, Limited

Monitoring SAP ENCYCLOPEDIA ... ENCYCLOPEDIA. Monitoring Secrets for SAP. ArgSoft Intellectual Property Holdings, Limited Monitoring Secrets for SAP ENCYCLOPEDIA ENCYCLOPEDIA Monitoring SAP.... 1991-2010 Contents Argent for SAP Overview 3 Introduction 3 Monitoring With Argent for SAP 4 SAP Instance 4 SAP Processes 4 Work

More information

Configure Basic Firewall Settings on the RV34x Series Router

Configure Basic Firewall Settings on the RV34x Series Router Configure Basic Firewall Settings on the RV34x Series Router Objective The primary objective of a firewall is to control the incoming and outgoing network traffic by analyzing the data packets and determining

More information

firewalls perimeter firewall systems firewalls security gateways secure Internet gateways

firewalls perimeter firewall systems firewalls security gateways secure Internet gateways Firewalls 1 Overview In old days, brick walls (called firewalls ) built between buildings to prevent fire spreading from building to another Today, when private network (i.e., intranet) connected to public

More information

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here>

OpenScape Contact Center Multimedia. First Contact Resolution in a Multi-Channel World <insert date here> OpenScape Contact Center Multimedia First Contact Resolution in a Multi-Channel World Agenda OpenScape Contact Center Agile vs. Enterprise What is OpenScape Contact Center Multimedia

More information

Web Engineering (CC 552)

Web Engineering (CC 552) Web Engineering (CC 552) Introduction Dr. Mohamed Magdy mohamedmagdy@gmail.com Room 405 (CCIT) Course Goals n A general understanding of the fundamentals of the Internet programming n Knowledge and experience

More information

Configuring Caching Services

Configuring Caching Services CHAPTER 8 This chapter describes how to configure conventional caching services (HTTP, FTP [FTP-over-HTTP caching and native FTP caching], HTTPS, and DNS caching) for centrally managed Content Engines.

More information

System Requirements for Microsoft Dynamics SL 2018

System Requirements for Microsoft Dynamics SL 2018 System for Microsoft Dynamics SL 2018 Overview This document contains the minimum client hardware requirements, server recommendations and Terminal Server minimum hardware requirements supported by the

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

Blackbaud NetCommunity Configuration Overview

Blackbaud NetCommunity Configuration Overview Blackbaud NetCommunity Configuration Overview Table of Contents The NetCommunity Server Service Oriented Architecture... 1 Security Considerations... 2 Windows Server 2003/2008 Considerations... 3 Performance

More information

Enterprise Modernization for IBM System z:

Enterprise Modernization for IBM System z: Enterprise Modernization for IBM System z: Transform 3270 green screens to Web UI using Rational Host Access Transformation Services for Multiplatforms Extend a host application to the Web using System

More information

IIOP: Internet Inter-ORB Protocol Make your code accessible even in future, with the next universal protocol

IIOP: Internet Inter-ORB Protocol Make your code accessible even in future, with the next universal protocol IIOP: Internet Inter-ORB Protocol Make your code accessible even in future, with the next universal protocol My Articles: Home Networking Wearable Computing IIOP Meet My Friend Intelligent Agents We are

More information

Altium Vault - Details for IT Departments

Altium Vault - Details for IT Departments - Details for IT Departments Old Content - see latest equivalent Modified by Admin on Sep 13, 2017 While installation and use of Technology in the form of an and its related services is detailed across

More information

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP System v9.x with Microsoft IIS 7.0 and 7.5

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP System v9.x with Microsoft IIS 7.0 and 7.5 DEPLOYMENT GUIDE Version 1.2 Deploying the BIG-IP System v9.x with Microsoft IIS 7.0 and 7.5 Deploying F5 with Microsoft IIS 7.0 and 7.5 F5's BIG-IP system can increase the existing benefits of deploying

More information

Appeon Installation Guide for WebSphere

Appeon Installation Guide for WebSphere Appeon Installation Guide for WebSphere Appeon 6.5 for PowerBuilder WINDOWS DOCUMENT ID: DC00809-01-0650-01 LAST REVISED: November 2010 Copyright 2010 by Appeon Corporation. All rights reserved. This publication

More information

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902 Workspace ONE UEM Certificate Authentication for EAS with ADCS VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Installing and Configuring Worldox/Web Mobile

Installing and Configuring Worldox/Web Mobile Installing and Configuring Worldox/Web Mobile SETUP GUIDE v 1.1 Revised 6/16/2009 REVISION HISTORY Version Date Author Description 1.0 10/20/2008 Michael Devito Revised and expanded original draft document.

More information

Enterprise Java Unit 1- Chapter 3 Prof. Sujata Rizal Introduction to Servlets

Enterprise Java Unit 1- Chapter 3 Prof. Sujata Rizal Introduction to Servlets 1. Introduction How do the pages you're reading in your favorite Web browser show up there? When you log into your favorite Web site, how does the Web site know that you're you? And how do Web retailers

More information

Planning Resources. vrealize Automation 7.1

Planning Resources. vrealize Automation 7.1 vrealize Automation 7.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit your feedback to

More information

Software Configuration for Integrated Applications

Software Configuration for Integrated Applications Software Configuration for Integrated Applications These instructions provide information for installing and configuring Unified Intelligent Contact Manager (Unified ICM) software as part of a system integrated

More information

Secure Login for SAP Single Sign-On Sizing Guide

Secure Login for SAP Single Sign-On Sizing Guide PUBLIC SAP Single Sign-On Document Version: 1.1 2018-07-31 Secure Login for SAP Single Sign-On 3.0 - Sizing Guide 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Introduction....3

More information

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT

How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT How to Configure SSL VPN Portal for Forcepoint NGFW TECHNICAL DOCUMENT Ta Table of Contents Table of Contents TA TABLE OF CONTENTS 1 TABLE OF CONTENTS 1 BACKGROUND 2 CONFIGURATION STEPS 2 Create a SSL

More information

Technical and Architectural Overview

Technical and Architectural Overview 100% Web-Based Time & Labor Management Technical and Architectural Overview Copyright 2007 Time America 15990 N. Greenway-Hayden Loop Suite D-500, Scottsdale, AZ (800) 227-9766 www.timeamerica.com Table

More information

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Deployment Guide Deploying the BIG-IP System with Microsoft Windows Server 2003 Terminal Services Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Welcome to the BIG-IP

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Last Updated: October 12, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users and applications by implementing support for HTTP 1.1

More information

Cisco IOS Firewall Authentication Proxy

Cisco IOS Firewall Authentication Proxy Cisco IOS Firewall Authentication Proxy This feature module describes the Cisco IOS Firewall Authentication Proxy feature. It includes information on the benefits of the feature, supported platforms, configuration

More information

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ

COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS. Web Access: HTTP Mehmet KORKMAZ COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Web Access: HTTP 16501018 Mehmet KORKMAZ World Wide Web What is WWW? WWW = World Wide Web = Web!= Internet Internet is a global system of interconnected computer

More information

Identity Provider for SAP Single Sign-On and SAP Identity Management

Identity Provider for SAP Single Sign-On and SAP Identity Management Implementation Guide Document Version: 1.0 2017-05-15 PUBLIC Identity Provider for SAP Single Sign-On and SAP Identity Management Content 1....4 1.1 What is SAML 2.0.... 5 SSO with SAML 2.0.... 6 SLO with

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

Broadband Router DC-202. User's Guide

Broadband Router DC-202. User's Guide Broadband Router DC-202 User's Guide Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband Router Features... 1 Package Contents... 3 Physical Details...3 CHAPTER 2 INSTALLATION... 5 Requirements...

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: June 01, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users

More information

SAP Cybersecurity Solution Brief. Objectives Solution Benefits Quick Facts

SAP Cybersecurity Solution Brief. Objectives Solution Benefits Quick Facts SAP Cybersecurity Solution Brief Objectives Solution Benefits Quick Facts Secure your SAP landscapes from cyber attack Identify and remove cyber risks in SAP landscapes Perform gap analysis against compliance

More information

epad 5.0 Mobile Keypad

epad 5.0 Mobile Keypad Programming Guide epad 5.0 Mobile Keypad Description Providing much-needed flexibility, the epad 5.0 Mobile Keypad allows users to control their DMP security system using an Internet browser. The epad

More information

IP806GA/GB Wireless ADSL Router

IP806GA/GB Wireless ADSL Router IP806GA/GB Wireless ADSL Router 802.11g/802.11b Wireless Access Point ADSL Modem NAT Router 4-Port Switching Hub User's Guide Table of Contents CHAPTER 1 INTRODUCTION... 1 Wireless ADSL Router Features...

More information

Developer Marketing: Build a Web Server Using Microsoft IIS 4.0 CBT Skill Builder Courseware

Developer Marketing: Build a Web Server Using Microsoft IIS 4.0 CBT Skill Builder Courseware Software Announcement April 10, 2001 Developer Marketing: Build a Web Server Using Microsoft IIS 4.0 CBT Skill Builder Courseware Overview Build your skills for Microsoft Certified Systems Engineer (MCSE)

More information

Deploying the BIG-IP System for LDAP Traffic Management

Deploying the BIG-IP System for LDAP Traffic Management Deploying the BIG-IP System for LDAP Traffic Management Welcome to the F5 deployment guide for LDAP traffic management. This document provides guidance for configuring the BIG-IP system version 11.4 and

More information

CMPE 151: Network Administration. Servers

CMPE 151: Network Administration. Servers CMPE 151: Network Administration Servers Announcements Unix shell+emacs tutorial. Basic Servers Telnet/Finger FTP Web SSH NNTP Let s look at the underlying protocols. Client-Server Model Request Response

More information

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Feature and Technical Overview

BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0. Feature and Technical Overview BlackBerry Enterprise Server for IBM Lotus Domino Version: 5.0 Feature and Technical Overview SWDT305802-525776-0331031530-001 Contents 1 Overview: BlackBerry Enterprise Server... 5 New in this release...

More information

Testing Web Applications. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only

Testing Web Applications. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only Chapter 20 Testing Web Applications Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman For non-profit

More information

Configuring a Windows Server 2008 Applications Infrastructure

Configuring a Windows Server 2008 Applications Infrastructure Configuring a Windows Server 2008 Applications Infrastructure Course Number: 70-643 Course Length: 5 Days Course Overview The MCTS credential enables professionals to target specific technologies and distinguish

More information

Motivation For Networking. Information access Interaction among cooperative application programs Resource sharing

Motivation For Networking. Information access Interaction among cooperative application programs Resource sharing Motivation For Networking Information access Interaction among cooperative application programs Resource sharing CS422 -- PART 1 13 2003 Practical Results E-mail File transfer/access Web browsing Remote

More information

Snapt Accelerator Manual

Snapt Accelerator Manual Snapt Accelerator Manual Version 2.0 pg. 1 Contents Chapter 1: Introduction... 3 Chapter 2: General Usage... 3 Accelerator Dashboard... 4 Standard Configuration Default Settings... 5 Standard Configuration

More information

Microsoft TS: Windows Server 2008 Applications Infrastructure, Configuration

Microsoft TS: Windows Server 2008 Applications Infrastructure, Configuration http://www.pass4sureofficial.com Microsoft TS: Windows Server 2008 Applications Infrastructure, Configuration dumpspdfcom is a reputable IT certification examination guide, study guides and audio exam

More information

Sage ebusiness Manager Installation Guide. September 2016

Sage ebusiness Manager Installation Guide. September 2016 Sage 100 2017 ebusiness Manager Installation Guide September 2016 2016 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are

More information