WebTransactions V7.1. Supplement

Size: px
Start display at page:

Download "WebTransactions V7.1. Supplement"

Transcription

1 WebTransactions V7.1 Supplement Edition: December 2006 This manual describes the new functions in WebTransactions V7.1. It is intended to supplement the WebTransactions V7.0 manuals.

2 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual. Your feedback helps us to optimize our documentation to suit your individual needs. Fax forms for sending us your comments are included at the back of the manual. There you will also find the addresses of the relevant User Documentation Department. Certified documentation according to DIN EN ISO 9001:2000 To ensure a consistently high quality standard and user-friendliness, this documentation was created to meet the regulations of a quality management system which complies with the requirements of the standard DIN EN ISO 9001:2000. cognitas. Gesellschaft für Technik-Dokumentation mbh Copyright and Trademarks Copyright Fujitsu Siemens Computers GmbH Alle Rechte vorbehalten. Liefermöglichkeiten und technische Änderungen vorbehalten. Alle verwendeten Hard- und Softwarenamen sind Handelsnamen und/oder Warenzeichen der jeweiligen Hersteller.

3 Contents 1 Unicode support Unicode in WebTransactions WebTransactions for OSD System object attribute TERMINAL_TYPE System object attribute HOST_CHARSET Notes WebTransactions for openutm The host data object attribute Unicode Host control object WT_HOST_MESSAGE Notes System object attributes Global system object attribute LT_REPLACE_STRING System object attributes for the HTTP host adapter COMMUNICATION_FILE_NAME COMMUNICATION_FILE_TYPE Related publications Index WebTransactions V7.1

4

5 1 Unicode support Unicode is an alphanumeric character set standardized by the International Standardisation Organisation (ISO) and the Unicode Consortium. It is used to represent various different types of characters: letters, numerals, punctuation marks, syllabic characters, special characters and ideograms. Unicode brings together all the known text symbols in use across the world into a single character set. Unicode is vendor-independent and system-independent. It uses either two-byte or fourbyte character sets in which each text symbol is encoded. In the ISO standard, these character sets are termed UCS-2 (Universal Character Set 2) or UCS-4. The designation UTF-16 (Unicode Transformation Format 16-bit), which is a standard defined by the Unicode Consortium, is often used in place of the designation UCS-2 as defined in ISO. Alongside UTF-16, UTF-8 (Unicode Transformation Format 8 Bit) is also in widespread use. UTF-8 has become the character encoding method used globally on the Internet. Increasing numbers of BS2000/OSD customers are opening up their BS2000/OSD applications for use with the Internet. The character set used on the Internet is UTF-8, and the Java language uses UTF-16 to encode data. Java Database Connectivity (JDBC) is used to connect Java applications and Java applets to BS2000/OSD databases. In the future, it is likely that simply converting data from the Internet into a single-byte code will no longer be sufficient. In addition, one-to-one transliteration of words from scripts that do not use the Latin alphabet into Latin script is neither desired nor possible, as the required diacritics may not be available in the character set which is currently set. The international postal regulations covering the addressing of mail require that the name of the sender and the address of the recipient must be written in the language of the destination country and the script used for that language. The destination city for overseas addresses must furthermore be written in capital letters in the script and spelling used in the destination country. This means that if Eastern European address data is to be stored in a database table alongside Western European address data, the character set used in an EBCDIC table is no longer sufficient. In other words, the character set used for the Name, City and Street columns of the database table must be able to accommodate Latin, Greek and Cyrillic symbols. You will find detailed information on Unicode support in BS2000/OSD in the manual Unicode in BS2000/OSD [1]. WebTransactions V7.1 5

6 Unicode in WebTransactions Unicode support 1.1 Unicode in WebTransactions The text below describes the interfaces that have been modified in WebTransactions since Version 7.0 in order to provide Unicode support. You will find a description of Version 7.0 in the relevant WebTransactions manuals (see Related publications on page 15). The following application-specific host adapters support Unicode: WebTransactions for OSD (see page 8) WebTransactions for openutm (see page 10) The following WebTransactions components and application-specific host adapters do not support Unicode: the WebTransactions kernel (see section page 7) WebTransactions for AS400 WebTransactions for MVS WebTransactions for UNIX Systems BizTransactions WebLab (Unicode characters cannot be represented) 6 WebTransactions V7.1

7 Unicode support Unicode in WebTransactions WebTransactions kernel The interpreter for the template language WTML (WebTransactions Markup Language and WTScript) does not support Unicode: WTScript templates are still interpreted as ISO-8859 characters. Each byte of a string will still be interpreted as one character. WebTransactions for OSD and WebTransactions for openutm create data encoded in UTF- 8, which is passed straight through to the browser and back. To achieve this, the following rules must be observed with respect to the templates: The templates must use charset to inform the browser what character encoding is to be used to display the data and to send the response. The browser receives this information either in the meta tag: <meta http-equiv="content-type" content="text/html;charset=utf-8" /> or by setting the attribute charset in the HTTP header field Content-Type. The templates are only allowed to contain ASCII characters. If a template contains special characters (such as German umlauts) directly in the form of ANSI characters in character strings, these must be replaced by HTML escape sequences. The escape sequences themselves are made up of ASCII characters only and can therefore be used in UTF-8. String operations can produce incorrect results if UTF-8 characters are included in the string (see also the notes on page 9 and page 12). Operations of this sort do not occur in the templates generated by WebTransactions. WebTransactions V7.1 7

8 WebTransactions for OSD Unicode support 1.2 WebTransactions for OSD WebTransactions for OSD supports the 9750 terminal protocol. The Unicode support provided in BS2000/OSD in turn makes this protocol Unicode-capable. You must explicitly enable Unicode support for 9750 by setting the relevant terminal type, otherwise WebTransactions for OSD behaves in the same way as the predecessor version (see the WebTransactions manual Connection to OSD Applications [6]) System object attribute TERMINAL_TYPE The system object attribute TERMINAL_TYPE specifies the terminal type to be simulated by WebTransactions. In order to enable Unicode support, enter the value 9763-UNICODE for TERMINAL_TYPE. Once this value has been specified, the emulation integrated in WebTransactions for OSD declares itself as Unicode-capable when a connection is established to BS2000/OSD. The OSD host application can now make use of this capability System object attribute HOST_CHARSET If the host application switches to Unicode mode, WebTransactions for OSD interprets field contents passed to and from BS2000/OSD as UTF-EBCDIC, and interprets the relevant contents of the host objects as UTF-8-encoded on assignment and outputs them in UTF-8 encoding on evaluation. The host adapter indicates this by the value UTF-8 in the system object attribute HOST_CHARSET. All templates that WebTransactions generates for this host adapter assign the system object attribute HOST_CHARSET to the global system object attribute CHARSET. The field Content-Type thus has the correct contents in the HTTP header and the browser can interpret the data correctly (see section WebTransactions kernel on page 7). 8 WebTransactions V7.1

9 Unicode support WebTransactions for OSD Notes Operations on strings Since the WebTransactions kernel itself does not support Unicode, you should take care when applying operations to strings. String operations can return incorrect results if the string contains UTF-8 characters. The length method does not return the number of characters, but rather the number of bytes. When comparing and manipulating such strings, you must take account of the representation of the UTF-8 characters. Such operations do not occur in the templates generated by WebTransactions. If only a substring is required for a field on screen, you can make use of the facilities provided by WebTransactions for OSD (see the WebTransactions manual Connection to OSD Applications [6] and the section on Host data objects, Generic names for host data objects ). P keys PKEY objects can only be supplied with Unicode characters by the host application. The PKEYS-ASSIGNMENT window does not support Unicode characters (see the WebTransactions manual Connection to OSD Applications [6] and the section on P key support ). The special characters EM and LZE can only be represented using ASCII characters. Diagnostics Unicode characters are represented by replacement characters in traces and in online displays of host objects. In WebLab, host objects can only be overwritten by 8-bit characters. WebTransactions V7.1 9

10 WebTransactions for openutm Unicode support 1.3 WebTransactions for openutm The host adapter in WebTransactions for openutm can also interpret data as Unicode characters at the UPIC interface. The BS2000/OSD program IFG2FLD reads format descriptions from an IFG library and stores them in a format description source. The fields in an IFG library can contain the new attribute Unicode. As of Version 8.3, IFG2FLD calculates the offsets of the individual fields in the UPIC buffer independently of this attribute. You can use WebLab to generate templates and field files (FLD files) from the format description source. During this conversion, the Unicode marker is automatically taken into account as of IFG2FLD Version 8.3 (see the WebTransactions manual Connection to openutm Applications via UPIC [5] and the section Generating templates ). FLD files The FLD files must be re-generated for all the formats that contain Unicode fields. Templates Existing templates can be retained unchanged if the only change in a format was the change to Unicode fields. However, the assignment of the value UTF-8 to the global system object attribute CHARSET must be inserted (see section Host control object WT_HOST_MESSAGE on page 11). 10 WebTransactions V7.1

11 Unicode support WebTransactions for openutm The host data object attribute Unicode The host data object attribute Unicode is one of the static attributes from the IFG format definition. These attributes are valid for all host objects (see the WebTransactions manual Connection to openutm Applications via UPIC [5] and the section Host objects for the individual format fields ). Unicode == 'Y' The host data in the UPIC buffer is converted to and from UTF-8 for forwarding to and from the browser for all fields marked Unicode == 'Y'. No ASCII-to-EBCDIC conversion is performed. Unicode == 'N' The host data is not converted to UTF-8. ASCII-to-EBCDIC conversion is carried out in dependence on the system object attribute HOST_CHAR_CODE Host control object WT_HOST_MESSAGE If the attribute Unicode is assigned to the host control object WT_HOST_MESSAGE, this indicates that at least one field where Unicode == 'Y' is contained in the current message. The global system object attribute CHARSET can be set to the value UTF-8 depending on this attribute. In this event, the field Content-Type thus has the correct contents in the HTTP header and the browser can interpret the data correctly (see section WebTransactions kernel on page 7). All templates that WebTransactions generates for this host adapter automatically include this assignment. This assignment must be manually inserted into existing templates which are not to be re-generated. WebTransactions V7.1 11

12 WebTransactions for openutm Unicode support Notes Operations on strings Since the WebTransactions kernel itself does not support Unicode, you should take care when applying operations to strings. String operations can return incorrect results if the string contains UTF-8 characters. The length method does not return the number of characters, but rather the number of bytes. When comparing and manipulating such strings, you must take account of the representation of the UTF-8 characters. Such operations do not occur in the templates generated by WebTransactions. Diagnostics Unicode characters are represented by replacement characters in traces and in online displays of host objects. In WebLab, host objects can only be overwritten by 8-bit characters. ASCII-to-EBCDIC conversion WebTransactions applications that have previously used the ASCII-to-EBCDIC conversion facility integrated in UPIC must be converted to use the ASCII-to-EBCDIC conversion facility provided by WebTransactions (see the WebTransactions manual Connection to openutm Applications via UPIC [5] and the section on Controlling communication - HOST_CHAR_CODE ). 12 WebTransactions V7.1

13 2 System object attributes The text below describes the system object attributes that have been introduced in WebTransactions V7.1 in addition to Unicode support (see page 5). 2.1 Global system object attribute LT_REPLACE_STRING The global system object attribute LT_REPLACE_STRING is one of the system object attributes that control the behavior of the WebTransactions kernel (see the WebTransactions manual Concepts and Functions and the section on Global session control ). HTML tags may be present in data coming from the browser (attributes of the object WT_POSTED). The attribute LT_REPLACE_STRING specifies a string used to replace the character < (less than) in such HTML tags. This allows you to deactivate HTML tags in input fields, for instance in order to prevent execution of code on an HTML page. 2.2 System object attributes for the HTTP host adapter COMMUNICATION_FILE_NAME The system object attribute COMMUNICATION_FILE_NAME has been introduced to the host adapter for dynamic web content (see the WebTransactions manual Access to Dynamic Web Contents and the section on Controlling communication ). You use this attribute to specify a file in which data received during a receive operation is to be stored. The body of the message is stored. The file must be located below the base directory. It is not permitted to store the file in the directory wwwdocs. You can use this attribute to transfer graphical images, for example. You can also specify a filter for storing the data in the COMMUNICATION_FILE_TYPE attribute (see page 14). WebTransactions V7.1 13

14 System object attributes for the HTTP host adapter System object attributes COMMUNICATION_FILE_TYPE The system object attribute COMMUNICATION_FILE_TYPE has been introduced to the host adapter for dynamic web content (see the WebTransactions manual Access to Dynamic Web Contents and the section on Controlling communication ). You use this attribute to define a filter for storing a message. The attribute contains the type of the message. Only when the type of the received message (Content-Type field in the HTTP header) corresponds to the value specified here is the body of the message stored in the file you specified with COMMUNICATION_FILE_NAME (see page 13). 14 WebTransactions V7.1

15 Related publications Unicode The manual is available as online manual, see or in printed form which must be paid and ordered separately at [1] Unicode in BS2000/OSD Introduction This manual gives an overview of the Unicode support in BS2000/OSD and describes basics, concepts and correlations, which apply for all BS2000/OSD products concerned by Unicode. Thus it completes the product-specific description in the respective manuals. Helpful tables from the Unicode conversion surroundings complete the manual. WebTransactions You can download all the WebTransactions manuals from the following Web address: [2] WebTransactions Concepts and Functions Introduction [3] WebTransactions Template Language Reference Manual [4] WebTransactions Client-APIs for WebTransactions User Guide [5] WebTransactions Connection to openutm Applications via UPIC User Guide WebTransactions V7.1 15

16 Related publications [6] WebTransactions Connection to OSD Applications User Guide [7] WebTransactions Connection to MVS Applications User Guide [8] WebTransactions Connection to AS400 Applications User Guide [9] WebTransactions Connection to UNIX Applications User Guide [10] WebTransactions Access to Dynamic Web Contents User Guide [11] WebTransactions Web Frontend for Web Services and Business Objects User Guide [12] BizTransactions Application Integration with Business Objects User Guide 16 WebTransactions V7.1

17 Index 9750 terminal UNICODE 8 A ASCII-to-EBCDIC conversion 11, 12 C CHARSET (system object attribute) 8, 10, 11 COMMUNICATION_FILE_NAME (system object attribute) 13 COMMUNICATION_FILE_TYPE (system object attribute) 14 Content-Type (HTTP header field) 8, 11, 14 F field files 10 FLD files 10 format description source 10 H HOST_CHARSET (system object attribute) 8 HTML deactivate tags 13 tags in input fields 13 I IFG library 10 IFG2FLD 10 L LT_REPLACE_STRING (system object attribute) 13 P P keys 9 PKEY objects 9 PKEYS-ASSIGNMENT 9 R receive storing data 13 S store message 13 filter 14 string operations 7, 9, 12 system object attribute CHARSET 8, 10, 11 COMMUNICATION_FILE_NAME 13 COMMUNICATION_FILE_TYPE 14 HOST_CHARSET 8 LT_REPLACE_STRING 13 TERMINAL_TYPE 8 T template 7 TERMINAL_TYPE (system object attribute) 8 traces 9, 12 U umlauts 7 Unicode (host data object attribute) 11 Unicode (WT_HOST_MESSAGE attribute) 11 UPIC interface 10 UTF-8 5 WebTransactions V7.1 17

18 W WebLab 6, 9, 12 WT_POSTED 13 WTML 7 WTScript 7 18 WebTransactions V7.1

19 Fujitsu Siemens Computers GmbH User Documentation Munich Germany Fax: (++49) 700 / Comments Suggestions Corrections manuals@fujitsu-siemens.com Submitted by Comments on WebTransactions V7.1 Supplement WebTransactions V7.1

20

21 Information on this document On April 1, 2009, Fujitsu became the sole owner of Fujitsu Siemens Computers. This new subsidiary of Fujitsu has been renamed Fujitsu Technology Solutions. This document from the document archive refers to a product version which was released a considerable time ago or which is no longer marketed. Please note that all company references and copyrights in this document have been legally transferred to Fujitsu Technology Solutions. Contact and support addresses will now be offered by Fujitsu Technology Solutions and have the The Internet pages of Fujitsu Technology Solutions are available at and the user documentation at Copyright Fujitsu Technology Solutions, 2009 Hinweise zum vorliegenden Dokument Zum 1. April 2009 ist Fujitsu Siemens Computers in den alleinigen Besitz von Fujitsu übergegangen. Diese neue Tochtergesellschaft von Fujitsu trägt seitdem den Namen Fujitsu Technology Solutions. Das vorliegende Dokument aus dem Dokumentenarchiv bezieht sich auf eine bereits vor längerer Zeit freigegebene oder nicht mehr im Vertrieb befindliche Produktversion. Bitte beachten Sie, dass alle Firmenbezüge und Copyrights im vorliegenden Dokument rechtlich auf Fujitsu Technology Solutions übergegangen sind. Kontakt- und Supportadressen werden nun von Fujitsu Technology Solutions angeboten und haben die Die Internetseiten von Fujitsu Technology Solutions finden Sie unter und unter finden Sie die Benutzerdokumentation. Copyright Fujitsu Technology Solutions, 2009

Copyright (C) Fujitsu Siemens Computers GmbH 2008 All rights reserved

Copyright (C) Fujitsu Siemens Computers GmbH 2008 All rights reserved Fujitsu Siemens Computers GmbH XHCS-SYS (BS2000/OSD) Version 2.0A June 2008 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2008 All rights reserved Release Notice XHCS-SYS V2.0A 1 General

More information

Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved

Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved Fujitsu Siemens Computers GmbH DRV (BS2000/OSD) Version 3.1A November 2005 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved Release Notice DRV V3.1A 1 General 2 1.1

More information

R E L E A S E N O T I C E C O S M O S T O O L S V A. (c) Fujitsu Siemens Computers GmbH 2001

R E L E A S E N O T I C E C O S M O S T O O L S V A. (c) Fujitsu Siemens Computers GmbH 2001 R E L E A S E N O T I C E C O S M O S T O O L S V 1 4. 0 A (c) Fujitsu Siemens Computers GmbH 2001 Word and Excel are registered trademarks of Microsoft Postscript is a registered trademark of Adobe Contents

More information

Copyright (C) Fujitsu Siemens Computers GmbH 2004 All rights reserved

Copyright (C) Fujitsu Siemens Computers GmbH 2004 All rights reserved Fujitsu Siemens Computers GmbH A I D Version 3.1 November 2004 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2004 All rights reserved Release Notice AID V3.1 1 General....................

More information

Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved

Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved Fujitsu Siemens Computers GmbH SM2-TOOLS (BS2000/OSD) Version 7.5A Juli 2006 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2005 All rights reserved Release Notice SM2-TOOLS V7.5A 1 General

More information

FUJITSU SIEMENS COMPUTERS. Release Notice PCMX (LINUX-S390) V6.0A. Table of Contents

FUJITSU SIEMENS COMPUTERS. Release Notice PCMX (LINUX-S390) V6.0A. Table of Contents FUJITSU SIEMENS COMPUTERS Release Notice PCMX (LINUX-S390) V6.0A Table of Contents 1 General 1.1 Documentation 2 Notes on product use 2.1 Software/hardware configuration 2.1.1 Operating system 2.2 Resource

More information

The activities described in these upgrade instructions may only be performed by engineers or maintenance/technical staff.

The activities described in these upgrade instructions may only be performed by engineers or maintenance/technical staff. Introduction The upgrade instructions show how to remove the standard power supply and replace it with a hotplug power supply. The following steps only apply to the PRIMERGY 400 and 00 tower servers.!

More information

Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3

Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3 Fujitsu Siemens Computers GmbH CRTE (BS2000/OSD) Version 2.4C *4 October 2005 *4 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3 Release Notice CRTE V2.4C 1 General.....................

More information

Fujitsu Siemens Computers. internet Value Edition. Version 1.0B. July Release Notice

Fujitsu Siemens Computers. internet Value Edition. Version 1.0B. July Release Notice Fujitsu Siemens Computers internet Value Edition Version 1.0B July 2002 Release Notice Copyright (C) Fujitsu Siemens Computers 2002 All rights reserved Release Notice internet Value Edition V1.0B 1 General.....................

More information

PRIMERGY S40-DF Capacity Extension

PRIMERGY S40-DF Capacity Extension Server PRIMERGY S40-DF Capacity Extension Xenia Fierley Siemens Nixdorf Informationssysteme AG ICP CS PS QM 3 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 636-47896 Fax: 0 700 /

More information

chipdisk for RemoteView

chipdisk for RemoteView PRIMERGY chipdisk for RemoteView Xenia Fierley Siemens Nixdorf Informationssysteme AG Primergy 81730 Munich e-mail: Internet:DOCetc@mchp.siemens.de Tel.: (089) 636-47896 Fax: (++ 49) 89 6 36-4 87 17 U41102-J-Z156-1-74

More information

Emanate Master 1.3. Readme. Edition June 2000

Emanate Master 1.3. Readme. Edition June 2000 Solaris Emanate Master 1.3 Readme Redakteur Fujitsu Siemens Computers GmbH Paderborn 33094 Paderborn e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 636-00000 Fax: (++49) 700 / 372 00001 Bestellnummer

More information

FibreCAT TXF Backup Subsystem. Service Supplement

FibreCAT TXF Backup Subsystem. Service Supplement FibreCAT TXF Backup Subsystem Service Supplement Edition October 2008 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps

More information

8 Mailsender. internet Services V3.1A 1

8 Mailsender. internet Services V3.1A 1 8 Mailsender Files can be sent and processed as e-mail in BS2000/OSD using a local user agent, the BS2000/OSD Mailsender. The BS2000/OSD Mailsender allows you to send automated lists as e-mail from BS2000/OSD

More information

SESAM-DBAccess (JDBC) V4.0A. Server Installation, Administration

SESAM-DBAccess (JDBC) V4.0A. Server Installation, Administration SESAM-DBAccess (JDBC) V4.0A Server Installation, Administration Edition December 2005 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

Using Egenera Virtualized Boot Services

Using Egenera Virtualized Boot Services Using Egenera Virtualized Boot Services For BladeFrame BF400 S2 and BladeFrame BF200 Document Number 432-SB0045 September 2008 EVBS1.0_BF_1 Copyright Copyright 2008 Egenera, Inc. All rights reserved. This

More information

SESAM-DBAccess (JDBC) V5.0A. Server Installation, Administration

SESAM-DBAccess (JDBC) V5.0A. Server Installation, Administration SESAM-DBAccess (JDBC) V5.0A Server Installation, Administration Edition December 2006 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

STREAMER 30/60 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL

STREAMER 30/60 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL STREAMER 30/60 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL Dieses Handbuch wurde auf Recycling-Papier gedruckt. This manual has been printed on recycled paper. Ce manuel est imprimé sur du papier recyclé.

More information

SLR 50/100 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL

SLR 50/100 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL SLR 50/100 GBYTE BETRIEBSANLEITUNG OPERATING MANUAL Dieses Handbuch wurde auf Recycling-Papier gedruckt. This manual has been printed on recycled paper. Ce manuel est imprimé sur du papier recyclé. Este

More information

The MTC Autoloader FibreCAT TX24 - Use with OSD/XC at SX Servers -

The MTC Autoloader FibreCAT TX24 - Use with OSD/XC at SX Servers - The MTC Autoloader FibreCAT TX24 - Use with OSD/XC at SX Servers - Readme File Contents 1 Introduction...2 2 Characteristics...4 2.1 General Characteristics...4 2.2 Release with OSD/XC...4 2.3 Hardware,

More information

PRIMERGY 670 Converting Guide

PRIMERGY 670 Converting Guide PRIMERGY 670 Converting Guide Server Systems A26361-K531-Z101-1-7419 Edition March 1999 Copyright and Trademarks Intel and Pentium are registered trademarks of Intel Corporation, USA. NetWare and Novell

More information

Streamer DAT160 Half-Height 80GB/160GB, USB 2.0

Streamer DAT160 Half-Height 80GB/160GB, USB 2.0 User Guide English Streamer DAT160 Half-Height 80GB/160GB, USB 2.0 Streamer DAT160 Half-Height 80GB/160GB, USB 2.0 User Guide Edition November 2008 Comments Suggestions Corrections The User Documentation

More information

PRIMERGY BX600 10GbE LAN I/O Module (PCIe)

PRIMERGY BX600 10GbE LAN I/O Module (PCIe) Reference Guide PRIMERGY BX600 10GbE LAN I/O Module (PCIe) Microsoft Windows Server 2003 iscsiselect Reference Guide English PRIMERGY BX600 10GbE LAN I/O Module (PCIe) Microsoft Windows Server 2003 iscsiselect

More information

PAN Manager Feature Summary

PAN Manager Feature Summary PAN Manager Feature Summary For BladeFrame BF400 S2 and BladeFrame BF200 Document Number 430-SB0073 August 2008 PM5.2_BF Copyright Copyright 2008 Egenera, Inc. All rights reserved. This document, and the

More information

LAN Manager/X V2.2. (SINIX) SNMP Service. System Administator's Guide

LAN Manager/X V2.2. (SINIX) SNMP Service. System Administator's Guide LAN Manager/X V2.2 (SINIX) SNMP Service System Administator's Guide Is there anything you want to tell us about this manual? Please send us your comments, quoting the order number of the manual. Siemens

More information

Release Information for FlexFrame V4.0A10 for SAP

Release Information for FlexFrame V4.0A10 for SAP Release Information for FlexFrame V4.0A10 for SAP Copyright 2008 Fujitsu Siemens Computers Table of Contents General... 1 Ordering... 1 Delivery... 1 Documentation... 2 Software Extensions / New Functionality...

More information

PRIMERGY Econel 100 Server System

PRIMERGY Econel 100 Server System PRIMERGY PRIMERGY Econel 100 Server System Service Supplement Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (0 89) 61 001-155 Fax:

More information

STREAMER VXA /320 GB

STREAMER VXA /320 GB Operating Manual English STREAMER VXA-320 160/320 GB Are there...... any technical problems or other questions you need clarified? Please contact our Help Desk (see warranty card). The latest information

More information

This symbol is followed by supplementary information, remarks and tips.

This symbol is followed by supplementary information, remarks and tips. Introduction This Technical Manual describes the system boards of the PRIMERGY 870 server systems, which can be equipped with up to four Intel Xeon processors. You may find further information in the description

More information

INSTALLATION GUIDE System Console Software 2.0 for Solaris Environment

INSTALLATION GUIDE System Console Software 2.0 for Solaris Environment INSTALLATION GUIDE System Console Software 2.0 for Solaris Environment High Risk Activity The Customer acknowledges and agrees that the Product is designed, developed and manufactured as contemplated for

More information

Produktfamilie PRIMERGY RX200 S2

Produktfamilie PRIMERGY RX200 S2 Produktfamilie PRIMERGY RX200 S2 D1790 Setup Utility Hans-Joachim Kneba Fujitsu Siemens Computers GmbH Paderborn 33094 Paderborn e-mail: email: manuals@fujitsu-siemens.com Tel.: 05251/8-14865 Fax: (++49)

More information

openft_ux-readme.txt Fujitsu Siemens Computers openft V8.1A20 for Unix systems openft-ftam V8.0B for Unix systems March 2006 Release notice

openft_ux-readme.txt Fujitsu Siemens Computers openft V8.1A20 for Unix systems openft-ftam V8.0B for Unix systems March 2006 Release notice Fujitsu Siemens Computers openft V8.1A20 for Unix systems openft-ftam V8.0B for Unix systems March 2006 Release notice RELEASE NOTICE openft V8.1A20 for Unix systems openft-ftam V8.0B for Unix systems

More information

PRIMERGY TX200 S3 Server

PRIMERGY TX200 S3 Server PRIMERGY PRIMERGY TX200 S3 Server Service Supplement Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001155 Fax: (++49) 700

More information

PRIMERGY TX150 S5 Server

PRIMERGY TX150 S5 Server PRIMERGY PRIMERGY TX150 S5 Server Service Supplement Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001155 Fax: (++49) 700

More information

User Guide - English. WebTransactions V7.5. Connection to openutm Applications via UPIC

User Guide - English. WebTransactions V7.5. Connection to openutm Applications via UPIC User Guide - English WebTransactions V7.5 Connection to openutm Applications via UPIC Edition August 2010 Comments Suggestions Corrections The User Documentation Department would like to know your opinion

More information

PRIMERGY BX630 Scalable Server Blade

PRIMERGY BX630 Scalable Server Blade PRIMERGY PRIMERGY BX630 Scalable Server Blade Service Supplement Redakteur Fujitsu Siemens Computers GmbH Paderborn 33094 Paderborn e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-??? Fax:

More information

PRIMERGY Econel 200 S2 Server

PRIMERGY Econel 200 S2 Server PRIMERGY PRIMERGY Econel 200 S2 Server Options Guide Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 Munich e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-155 Fax: (++49) 700

More information

System board D2004 for RX100 S3

System board D2004 for RX100 S3 PRIMERGY System board D2004 for RX100 S3 Technical manual Däschlein Fujitsu Siemens Computers GmbH München 81730 Munich e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-155 Fax: (++49) 700

More information

System board D2020 for Econel 200

System board D2020 for Econel 200 Produktfamilie System board D2020 for Econel 200 Technical manual Redakteur Fujitsu Siemens Computers GmbH München 81730 Munich e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-??? Fax: (++49)

More information

System Management Console Security Development Guide C120-E142-01EN

System Management Console Security Development Guide C120-E142-01EN System Management Console Security Development Guide C120-E142-01EN Trademarks and Acknowledgement UNIX is a registered trademark in the United States and other countries, licensed exclusively through

More information

*5 Fujitsu Siemens Computers GmbH DRIVE/WINDOWS (BS2000) *5 Version 2.1B40

*5 Fujitsu Siemens Computers GmbH DRIVE/WINDOWS (BS2000) *5 Version 2.1B40 *5 Fujitsu Siemens Computers GmbH DRIVE/WINDOWS (BS2000) *5 Version 2.1B40 Release Notice DRIVE/WINDOWS V 2.1B C o n t e n t s 1 General................ 1 1.1 Ordering............... 2 1.2 Delivery...............

More information

Fujitsu Siemens Computers. internet Services (BS2000/OSD) Version 3.1A May Release Notice

Fujitsu Siemens Computers. internet Services (BS2000/OSD) Version 3.1A May Release Notice Fujitsu Siemens Computers internet Services (BS2000/OSD) Version 3.1A May 2005 Release Notice Copyright (C) Fujitsu Siemens Computers 2005 All rights reserved Release Notice internet Services V3.1A 1 General

More information

PRIMERGY BX630 S2 Scalable Server Blade. Options Guide

PRIMERGY BX630 S2 Scalable Server Blade. Options Guide PRIMERGY BX630 S2 Scalable Server Blade Options Guide Edition October 2007 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback

More information

1.1 Summary of contents and target group

1.1 Summary of contents and target group 1 Preface The openutm Universal Transaction Monitor is a comprehensive middleware platform, offering a wealth of options for designing and implementing transaction-oriented OLTP applications, as well as

More information

WebTransactions V7.0. Connection to AS400 Applications. Edition: June 2005

WebTransactions V7.0. Connection to AS400 Applications. Edition: June 2005 WebTransactions V7.0 Connection to AS400 Applications Edition: June 2005 Copyright Fujitsu Siemens Computers GmbH, 2005. All rights reserved. Delivery subject to availability; right of technical modifications

More information

PRIMERGY RX100 S3 Server System

PRIMERGY RX100 S3 Server System PRIMERGY PRIMERGY RX100 S3 Server System Options Guide Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001155 Fax: (++49)

More information

Web Frontend for Web Services and Business Objects

Web Frontend for Web Services and Business Objects WebTransactions V7.0 Web Frontend for Web Services and Business Objects Edition: June 2005 Copyright Fujitsu Siemens Computers GmbH, 2005. All rights reserved. Delivery subject to availability; right of

More information

PRIMERGY BX630 S2 Scalable Server-Blade. Service Supplement

PRIMERGY BX630 S2 Scalable Server-Blade. Service Supplement PRIMERGY BX630 S2 Scalable Server-Blade Service Supplement Edition December 2007 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your

More information

PRIMERGY Econel 100 Server System

PRIMERGY Econel 100 Server System PRIMERGY PRIMERGY Econel 100 Server System Options Guide Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 Munich e-mail: email: manuals@fujitsu-siemens.com Tel.: (0 89) 61 001-155 Fax: (++49)

More information

Systembaugruppe / System Board D1570-A11

Systembaugruppe / System Board D1570-A11 Technisches Handbuch / Technical Manual Systembaugruppe / System Board D1570-A11 Deutsch / English Sie haben...... technische Fragen oder Probleme? Wenden Sie sich bitte an: Ihren zuständigen Vertriebspartner

More information

Streamer LTO-3 half height 400GB/800GB SCSI Ultra320

Streamer LTO-3 half height 400GB/800GB SCSI Ultra320 Operating Manual English Streamer LTO-3 half height 400GB/800GB SCSI Ultra320 Are there...... any technical problems or other questions you need clarified? Please contact our Help Desk (see warranty card

More information

User Guide - English. WebTransactions V7.5. Connection to MVS Applications

User Guide - English. WebTransactions V7.5. Connection to MVS Applications User Guide - English WebTransactions V7.5 Connection to MVS Applications Edition August 2010 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

System Board D2619 for RX/TX300 S5. Technical Manual

System Board D2619 for RX/TX300 S5. Technical Manual System Board D2619 for RX/TX300 S5 Technical Manual Edition April 2009 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps

More information

System Board D2785 for TX120 S2. Technical Manual

System Board D2785 for TX120 S2. Technical Manual System Board D2785 for TX120 S2 Technical Manual Edition April 2009 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps

More information

System Board D2559 for TX150 S6. Technical Manual

System Board D2559 for TX150 S6. Technical Manual System Board D2559 for TX150 S6 Technical Manual Edition November 2007 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps

More information

PRIMERGY RX200 S3 Server. Options Guide

PRIMERGY RX200 S3 Server. Options Guide PRIMERGY RX200 S3 Server Options Guide Edition August 2006 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps us optimize

More information

Technical Manual. Mainboard D1483. English

Technical Manual. Mainboard D1483. English answers 2 Technical Manual Mainboard D1483 English Are there...... any technical problems or other questions you need clarified? Please contact: your sales partner your sales outlet You will find further

More information

User Guide - English. WebTransactions V7.5. Client APIs for WebTransactions

User Guide - English. WebTransactions V7.5. Client APIs for WebTransactions User Guide - English WebTransactions V7.5 Client APIs for WebTransactions Edition August 2010 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this

More information

WebTransactions V7.0. Access to Dynamic Web Contents. Edition: June 2005

WebTransactions V7.0. Access to Dynamic Web Contents. Edition: June 2005 WebTransactions V7.0 Access to Dynamic Web Contents Edition: June 2005 Copyright Fujitsu Siemens Computers GmbH, 2005. All rights reserved. Delivery subject to availability; right of technical modifications

More information

System Board D2671 for RX200 S4. Technical Manual

System Board D2671 for RX200 S4. Technical Manual System Board D2671 for RX200 S4 Technical Manual Edition December 2007 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of this manual. Your feedback helps

More information

User Guide - English. WebTransactions V7.5. Access to Dynamic Web Contents

User Guide - English. WebTransactions V7.5. Access to Dynamic Web Contents User Guide - English WebTransactions V7.5 Access to Dynamic Web Contents Edition August 2010 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

1.1 Product characteristics

1.1 Product characteristics 1 Preface Over the past few years, more and more IT users have found themselves working in heterogeneous system and application environments, with mainframes standing next to UNIX and Windows systems and

More information

1.1 Product characteristics

1.1 Product characteristics 1 Preface Over the past few years, more and more IT users have found themselves working in heterogeneous system and application environments, with mainframes standing next to UNIX and Windows systems and

More information

1.1 Target group. 1.2 Summary of contents. The internet Value Edition delivery unit extends internet Services by providing mail services.

1.1 Target group. 1.2 Summary of contents. The internet Value Edition delivery unit extends internet Services by providing mail services. 1 Preface The internet Value Edition delivery unit extends internet Services by providing mail services. 1.1 Target group This manual is intended for BS2000 administrators who want to install mail services.

More information

Release Notes for the Cisco Catalyst Blade Switch 3040 for FSC, Cisco IOS Release 12.2(37)SE

Release Notes for the Cisco Catalyst Blade Switch 3040 for FSC, Cisco IOS Release 12.2(37)SE Release Notes for the Cisco Catalyst Blade Switch 3040 for FSC, Cisco IOS Release 12.2(37)SE May 11, 2007 Cisco IOS Release 12.2(37)SE runs on the Cisco Catalyst Blade Switch 3040 for FSC, referred to

More information

FlexFrame 4.0A10 Readme

FlexFrame 4.0A10 Readme FlexFrame 4.0A10 Readme Issue 2008-08-08 This README file describes extensions and modifications for FlexFrame for SAP version 4.0A10 in reference to the following available user guides for the FlexFrame

More information

Client Communication Platform - Authentication Guide

Client Communication Platform - Authentication Guide Client Communication Platform - Authentication Guide How to authenticate for a CCP space Version: July 2017 Contact Person: Business Service Center Content 1. Introduction... 3 2. Authentication Process...

More information

Basisinformationen Mainboard Basic information on mainboard

Basisinformationen Mainboard Basic information on mainboard Mainboard Deutsch - English Technisches Handbuch / Technical Manual Basisinformationen Mainboard Basic information on mainboard Sie haben...... technische Fragen oder Probleme? Wenden Sie sich bitte an:

More information

Casabac Unicode Support

Casabac Unicode Support Unicode Support Unicode Support Full Unicode support was added into the GUI Server with build 25_20040105. Before ISO 8859-1 was used for encoding and decoding HTML pages and your system's default encoding

More information

Monitoring ETERNUS DX systems with ServerView Operations Manager

Monitoring ETERNUS DX systems with ServerView Operations Manager User Guide - English FUJITSU Software ServerView Suite Monitoring ETERNUS DX systems with ServerView Operations Manager Edition February 2018 Comments Suggestions Corrections The User Documentation Department

More information

System Board D2119 for RX300 S3

System Board D2119 for RX300 S3 PRIMERGY System Board D2119 for RX300 S3 Technical Manual Martin Jung Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-154 Fax: (++49) 700

More information

System Board D2129 for TX300 S3

System Board D2129 for TX300 S3 PRIMERGY System Board D2129 for TX300 S3 Technical Manual Susanne Däschlein Fujitsu Siemens Computers GmbH München 81730 München e-mail: email: manuals@fujitsu-siemens.com Tel.: (089) 61001-155 Fax: (++49)

More information

Client Communication Platform - Navigation User Guide

Client Communication Platform - Navigation User Guide Client Communication Platform - Navigation User Guide How to navigate in the new CCP structure Version: July 2017 Contact person: Business Service Center Content 1. Introduction... 3 2. User Guidance...

More information

Marketing Cloud Scripting Languages

Marketing Cloud Scripting Languages Marketing Cloud Scripting Languages Salesforce, Winter 19 @salesforcedocs Letzte Aktualisierung: 03.12.2018 Die englische Version dieses Dokuments hat Vorrang vor der übersetzten Version. Copyright 2000

More information

Can R Speak Your Language?

Can R Speak Your Language? Languages Can R Speak Your Language? Brian D. Ripley Professor of Applied Statistics University of Oxford ripley@stats.ox.ac.uk http://www.stats.ox.ac.uk/ ripley The lingua franca of computing is (American)

More information

The Unicode Standard Version 11.0 Core Specification

The Unicode Standard Version 11.0 Core Specification The Unicode Standard Version 11.0 Core Specification To learn about the latest version of the Unicode Standard, see http://www.unicode.org/versions/latest/. Many of the designations used by manufacturers

More information

Overview - English. FUJITSU Software ServerView Suite. Update Management. Overview

Overview - English. FUJITSU Software ServerView Suite. Update Management. Overview Overview - English FUJITSU Software ServerView Suite Update Management Overview Edition August 2017 Comments Suggestions Corrections The User Documentation Department would like to know your opinion of

More information

Installation ServerView ESXi CIM Provider V6.12

Installation ServerView ESXi CIM Provider V6.12 Installation Guide - English FUJITSU Software ServerView Suite Installation ServerView ESXi CIM Provider V6.12 VMware vsphere Hypervisor server (ESXi) as of version 4.0 Edition August 2017 Comments Suggestions

More information

Kontakt. Internet: Web Kontakt-Formular:

Kontakt.   Internet:   Web Kontakt-Formular: Application Notes, Whitepapers Acromag Industrial I/O Produkte Kontakt Technischer und kaufmännischer Vertrieb, Preisauskünfte, Angebote, Test-Geräte, Beratung vor Ort: Tel: (0 89) 89 01 66-0 FAX: (0 89)

More information

What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Scope The scope of the extended development topic SAP HANA Fuzzy Search covers Fault-tolerant

More information

English BS2000/OSD CRTE V2.9A. Common Runtime Environment. User Guide

English BS2000/OSD CRTE V2.9A. Common Runtime Environment. User Guide English BS2000/OSD CRTE V2.9A Common Runtime Environment User Guide Edition June 2012 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

ServerView Archive Manager

ServerView Archive Manager User Guide - English ServerView Suite ServerView Archive Manager ServerView Operations Manager as of V5.0 Edition February 2018 Comments Suggestions Corrections The User Documentation Department would

More information

Search Engines Chapter 2 Architecture Felix Naumann

Search Engines Chapter 2 Architecture Felix Naumann Search Engines Chapter 2 Architecture 28.4.2009 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition iti Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

The process of preparing an application to support more than one language and data format is called internationalization. Localization is the process

The process of preparing an application to support more than one language and data format is called internationalization. Localization is the process 1 The process of preparing an application to support more than one language and data format is called internationalization. Localization is the process of adapting an internationalized application to support

More information

Reference Manual - English. WebTransactions V7.5. Template Language

Reference Manual - English. WebTransactions V7.5. Template Language Reference Manual - English WebTransactions V7.5 Template Language Edition August 2010 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual.

More information

ServerView Integration Pack for Microsoft SCCM

ServerView Integration Pack for Microsoft SCCM User Guide - English FUJITSU Software ServerView Suite ServerView Integration Pack for Microsoft SCCM Edition August 2017 Comments Suggestions Corrections The User Documentation Department would like to

More information

ETERNUS CS800 S6 (V3.2)

ETERNUS CS800 S6 (V3.2) English ETERNUS CS800 S6 (V3.2) OST Guide Edition December 2015 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual. Your feedback helps us

More information

Produkt-Datenblatt. Technische Daten, Spezifikationen. MEsstechnik fängt mit ME an. Kontakt

Produkt-Datenblatt. Technische Daten, Spezifikationen. MEsstechnik fängt mit ME an.   Kontakt Produkt-Datenblatt Technische Daten, Spezifikationen Kontakt Technischer und kaufmännischer Vertrieb, Preisauskünfte, Angebote, Test-Geräte, Beratung vor Ort: Tel: (0 81 41) 52 71-0 FAX: (0 81 41) 52 71-129

More information

What s New? SAP HANA SPS 07 SAP HANA tailored data center integration. SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 SAP HANA tailored data center integration. SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 SAP HANA tailored data center integration SAP HANA Product Management November, 2013 Content This presentation provides an overview of the additional deployment option called

More information

English ETERNUS CS800 S4. OST Guide

English ETERNUS CS800 S4. OST Guide English ETERNUS CS800 S4 OST Guide Edition November 2012 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual. Your feedback helps us to optimize

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

Base Configuration Wizard

Base Configuration Wizard User Guide - English FUJITSU Software ServerView Suite Base Configuration Wizard ServerView Operations Manager V7.20 Edition August 2017 Comments Suggestions Corrections The User Documentation Department

More information

Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016

Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016 Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016 EPLAN Software & Service GmbH & Co. KG Technical Information Copyright 2016 EPLAN Software & Service GmbH & Co. KG EPLAN

More information

UTF and Turkish. İstinye University. Representing Text

UTF and Turkish. İstinye University. Representing Text Representing Text Representation of text predates the use of computers for text Text representation was needed for communication equipment One particular commonly used communication equipment was teleprinter

More information

ServerView Threshold Manager

ServerView Threshold Manager User Guide - English Fujitsu Software ServerView Suite ServerView Threshold Manager ServerView Operations Manager V6.20 Edition February 2018 Comments Suggestions Corrections The User Documentation Department

More information

POSIX. Basics for Users and System Administrators

POSIX. Basics for Users and System Administrators POSIX Basics for Users and System Administrators Edition May 2009 Comments Suggestions Corrections The User Documentation Department would like to know your opinion on this manual. Your feedback helps

More information

Flasher Utility. QUANCOM Informationssysteme GmbH

Flasher Utility. QUANCOM Informationssysteme GmbH Flasher Utility Copyright Alle Angaben in diesem Handbuch sind nach sorgfältiger Prüfung zusammengestellt worden, gelten jedoch nicht als Zusicherung von Produkteigenschaften. QUANCOM haftet ausschließlich

More information

PRIMERGY ServerView Suite ServerView Performance Manager

PRIMERGY ServerView Suite ServerView Performance Manager - English PRIMERGY ServerView Suite ServerView Performance Manager ServerView Operations Manager V4.90 Edition February 2018 Comments Suggestions Corrections The User Documentation Department would like

More information

CS144: Content Encoding

CS144: Content Encoding CS144: Content Encoding MIME (Multi-purpose Internet Mail Extensions) Q: Only bits are transmitted over the Internet. How does a browser/application interpret the bits and display them correctly? MIME

More information

Unicode Support. Chapter 2:

Unicode Support. Chapter 2: Unicode Support Chapter 2: SYS-ED/Computer Education Techniques, Inc. Ch 2: 1 SYS-ED/Computer Education Techniques, Inc. Ch 2: 1 Objectives You will learn: Unicode features. How to use literals and data

More information