Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5
|
|
|
- Emily Shaw
- 9 years ago
- Views:
Transcription
1 Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware provides an early adopter Perl library so you can start integrating your virtual infrastructure into the Web Services for Management (WS Management) framework, a high level standard for network administration. NOTE The Web Services for Management Perl library is currently experimental. How Web Services for Management Fits Into the VMware Infrastructure The VMware Infrastructure API provides an object model for VMware virtual systems. Built on top of this API, the VI Perl Toolkit is a high level programming interface that simplifies VMware infrastructure management. Although unrelated, the Web Services for Management library is delivered as part of the VI Perl Toolkit. The VMware CIM SDK provides a Common Information Model (CIM) interface for developers building management applications. With the SDK, developers can write CIM compliant applications to explore virtual machines and associated resources on an ESX Server and elsewhere. The Web Services for Management library provides a connection between VMware infrastructure CIM objects and the industry standard framework. Understanding Web Services for Management Web Services for Management offers a common language for network entities to share data about themselves, so you can manage them more easily. This Perl library contains, as stub modules, interfaces for almost all VMware devices, and over a hundred methods to interact with CIM, another network management standard. VMware wants to help IT departments use these standard frameworks to centrally manage hardware, storage, operating systems, networks, and services. Based on existing web services, Web Services for Management specifies a simple object access protocol (SOAP) for the management of servers, devices, storage, applications, and so forth. SOAP is a popular method for exchanging XML based messages over computer networks, usually by remote procedure call. Distributed Management Task Force (DMTF) published the Web Services for Management (WS Management) 1.0.0a document in April 2006, authored by representatives from 15 major companies. In August 2006, DMTF published a related document describing bindings, or mappings, from the CIM to WS Management. The Web Services for Management specification is extensive, so its power and functionality are more akin to HP OpenView or to Netconf (RFC 4741 from IETF) than to Simple Network Management Protocol (SNMP). Web Services for Management can simplify network administration by providing a common way for systems to access and exchange information sitewide, permitting remote administration of many entities on a network. The Web Services for Management Perl library provides the stubs and SOAP interfaces to leverage the DMTF infrastructure to work with distributed VMware systems. The Web Services for Management Perl library is experimental and not supported for production use. This document describes version 0.1 of the library. Copyright 2008 VMware, Inc. All rights reserved. 1
2 References for Further Reading DMTF specifications for WS Management, CIM bindings: Open Management with CIM (OMC) project: Introduction to and specifications for Meta Object Facility (MOF): Installing the Web Services for Management Perl Library The Web Services for Management Perl library depends on the following Perl modules: SOAP::Lite At least version UUID At least version Data::Dump At least version Installing the Dependencies If the system you are using is behind a firewall, make sure that your http_proxy and ftp_proxy environment variables are set properly before proceeding with the following instructions for Windows or Linux. To Install Dependencies on a Windows System 1 Determine which version of Perl you are using by issuing the perl v command. For version 5.6, open a terminal window and type the following at the command prompt: C:\>ppm install For version 5.8, open a terminal window and type the following at the command prompt: C:\>ppm install 2 Issue the following command to install UUID: C:>ppm install UUID 3 Issue the following command to install Data::Dump: C:>ppm install Data-Dump To Install Dependencies on a Linux System 1 Open a terminal window and enter the following commands for remote access to CPAN (comprehensive Perl archive network): $ sudo -s # perl -MCPAN -e shell 2 Issue the following command at the CPAN prompt to install SOAP::Lite: cpan> install SOAP::Lite Answer any questions and the module installs. 3 Go to search for UUID, and download the latest source. Untar the downloaded file, open a terminal window, and go to the untarred directory. Issue the following commands to install UUID: # make # make test # make install If the make displays errors about missing items, install uuid-dev with apt-get on Debian based systems or e2fsprogs-dev[el] on other systems. 4 Open a terminal window and issue the following commands to install Data::Dump: # perl -MCPAN -e shell cpan> install Data::Dump Copyright 2008 VMware, Inc. All rights reserved. 2
3 Finding the Web Services for Management Library The Web Services for Management library is included in the VMware Infrastructure (VI) Perl Toolkit 1.5, available under on the VMware Web site. In the VI Perl Toolkit applications tree, look for examples under Perl/samples/WSMan. Currently there are programs to check sensor health, get firmware revisions, list field replaceable units, and show power supplies. Perl modules reside in Perl/lib/WSMan, and are documented in API Reference for Perl Modules on page 3. Stubs that map CIM objects and Object Management with CIM (OMC) are in Perl/lib/WSMan/Stubs. The CIM mappings are defined by DMTF. For information about the CIM infrastructure and schema, see the Web site under standards for CIM. The OMC mappings are from the OMC project, which is coordinated from the Novell developer web site; see faq for details. Stubs (Perl modules) to manage most VMware devices are also in Perl/lib/WSMan/Stubs. API Reference for Perl Modules The Web Services for Management Library consists of the following Perl modules: WSBasic.pm Basic Services and CIM Binding Library on page 3 GenericOps.pm Generic Operations for CIM on page 7 StubOps.pm Object Oriented Wrapper for Generic Operations on page 10 Stubs Directory on page 13 WSBasic.pm Basic Services and CIM Binding Library Perl module location: Perl/lib/WSMan/WSBasic.pm Name WSMan::WSBasic Synopsis $client = WSMan::WSBasic->new(%args); $client->register_xml_ns(%args); $client->register_class_ns(%args); $client->_get_uuid(); $client->identify(); $client->enumerate(%args); $client->pullrelease(%args); $client->get(%args); Description This module provides a class called WSBasic, which is used to construct SOAP messages for communication with the Web Services for Management server. All operations return the deserialized SOAP::SOM objects from which you can extract the fault code or the SOAP replies. Under normal circumstances, you do not use this library directly. You generally use the GenericOps library built on top of this library to provide generic operations as defined by the DMTF standards. For GenericOps, see GenericOps.pm Generic Operations for CIM on page 7. If you want to use the SOAP::SOM library directly, see the CPAN documentation for SOAP::SOM. Copyright 2008 VMware, Inc. All rights reserved. 3
4 Currently, the WSBasic class provides the following methods: new Constructor that takes a hash argument containing key value pairs in the following form: $client = WSMan::WSBasic->new( address => ' port => '80', path => 'wsman', username => 'wsman', password => 'secret', namespace => 'root/cimv2', timeout => '60' ); address This argument provides the URL of the server running Web Services for Management service. You must specify the transport protocol by adding http or https prefix for HTTP (basic user password authentication) or HTTP with SSL encryption. This argument is mandatory. port This argument specifies the port on which the Web Services for Management server responds. This argument is mandatory. path This argument provides the path to the Web Services for Management server. This is combined with the address and port arguments to form the complete URL of the Web Services for Management server in the usual ʹ order. This argument is mandatory. username Provides the user name for the Web Services for Management server. This argument is mandatory. password Provides the password for the Web Services for Management server. This argument is mandatory. Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. timeout Specifies a timeout for the HTTP request, in case of slow servers. This argument is optional. register_xml_ns This method registers extra XML namepaces that might be required for proprietary tags in the SOAP message. Under normal circumstances, calling this is not required. The argument to this function is a hash containing prefixes to be used as keys, and relative URLs as values. For example, this line declares a prefix wsen with the URL in the global XML namespace: $client->register_xml_ns((wsen => ' register_class_ns This method registers extra CIM namepaces that the Web Services for Management server might require. By default, the constructor provides a set of namespaces for CIM classes. Review the server configuration files to see if other CIM namespaces are required. The usage is the same as for register_xml_ns. Identify This method performs the wsmid:identify operation, which causes the Web Services for Management server to identify itself. The function takes no arguments. The method returns a SOAP::SOM object, which you can use to parse the results or do error correction. Copyright 2008 VMware, Inc. All rights reserved. 4
5 Enumerate This method is extremely versatile. Results are filtered differently depending on what optional arguments you pass in. Several arguments perform generic operations that are implemented in another class, as described in GenericOps.pm Generic Operations for CIM on page 7. Other arguments implement enumeration for non standards compliant servers. This section discusses the most common arguments. The Enumerate method returns a SOAP::SOM object that can be used to either check for errors ($result->fault) or to parse the results ($result->result). The SOAP object includes header and data in XML format. Enumerate accepts the following arguments: class_name This argument allows you to specify the class that you wish to enumerate. This argument is the only mandatory argument to the Enumerate method, and is passed as a string. Specifies the CIM namespace for the class. This argument is passed as a string. The default is usually ʹroot/cimv2ʹ but can change depending on the Web Services for Management server. enummode Allows you to specify an enumeration mode such as EnumerateEPR or EnumerateEPRandObject. This argument is passed as a string. polymorphism This option allows for various polymorphism modes such as IncludeSubClassProperties, ExcludeSubClassProperties, and None. This argument is passed as a string. To understand other arguments that can be passed to the Enumerate method, look at the Perl code. PullRelease An overloaded method that provides either the Pull operation or the Release operation. Only the common arguments are discussed below. PullRelease takes these arguments: Get enumid Specifies the enumeration ID that the Pull or the Release operation should use. This argument is mandatory, and is passed as a string. action This argument specifies whether the method should perform a Pull operation or a Release operation. The possible values are Pull or Release. This argument is mandatory, and is passed as a string. This argument specifies the namespace for the CIM class on which you are performing the action. This is optional except when required by CIM, and is passed as a string. Retrieves a particular instance of a class. It takes the following named arguments: class_name Specifies the class whose instance you wish to retrieve. This argument is mandatory and is passed as a string. options Passes keys for the particular instance on which you wish to perform a Get operation. The argument is mandatory and is passed as a hash containing the keys in name value pairs. Specifies the namespace for particular CIM class. This argument is optional and is passed as a string. Copyright 2008 VMware, Inc. All rights reserved. 5
6 Dependencies The WSMan::WSBasic library requires the following modules: SOAP::Lite Version 0.65 or later is required by the library to form SOAP messages and to parse XML replies that are received from the Web Services for Management server. UUID Required to generate UUIDs for the SOAP messages. Code Examples You can use the library to do a simple Enumerate and Pull operation: #!/usr/bin/perl -w use strict; use WSMan::WSBasic; #Import the module. my ($enumid, result, $client); #declaring variables. #Construct the client. $client = WSMan::WSBasic->new( path => 'wsman', username => 'wsman', password => 'secret', port => '8889', address => ' ); #Invoke the Enumerate method. $result = $client->enumerate(class_name => 'CIM_Processor', #namespace => 'root/cimv2' ); if($result->fault){ #If a fault occurred, then print the faultstring die $result->faultstring; } else{ #If no fault occurred then get the enumid. $enumid = $result->result; } $result = $client->pullrelease( class_name => 'CIM_Processor', enumid => $enumid, action => 'Pull', #namespace => 'root/cimv2' ); if($result->fault){ #If a fault occurred, then print the faultstring die $result->faultstring; } else{ # Do stuff with $result, which is a SOAP::SOM object containing a deserialized XML reply. # It is better to use the Generic Operations module, built on top of this module. } To use one of the enumeration modes like EnumerateEPR or EnumerateEPRandObject, call the Enumerate operation with EnumerationMode enabled. This could also be done in the constructor call. $result = $client->enumerate(class_name => 'CIM_Processor', #namespace => 'root/cimv2', #if needed. enummode => 'EnumerateEPR' ); To perform operations on vendor specific classes, you must register them first with the client. The actual URL depends on your Web Services for Management software. $client->register_class_ns(linux => ' Copyright 2008 VMware, Inc. All rights reserved. 6
7 GenericOps.pm Generic Operations for CIM Perl module location: Perl/lib/WSMan/GenericOps.pm Name WSMan::GenericOps Synopsis $client = WSMan::GenericOps->new(%args) $client->register_xml_ns(%) $cleint->register_class_ns(%) $client->identify() $client->enumerateinstances(%args) $client->enumerateinstancenames(%args) $client->enumerateassociatedinstances(%args) $client->enumerateassociatedinstancenames(%args) $client->enumerateassociationinstances(%args) $client->enumerateassociationinstancenames(%args) $client->getinstance(%args) Description The GenericOps library implements some of the generic operations specified in the Web Services for Management CIM bindings published by the DMTF. At this time, not all generic operations are implemented, but the library is still very much a work in progress. For information about assembling more advanced features, see the WSBasic library, which provides primitive intrinsic Web Services for Management operations. The following methods are defined by the GenericOps class: new Constructor that takes a hash argument containing key value pairs in the following form: $client = WSMan::GenericOps->new(( address => ' port => '80', path => 'wsman', username => 'wsman', password => 'secret', namespace => 'root/cimv2', timeout => 60 )); address This argument provides the URL of the Web Services for Management server. You must specify the transport protocol by adding either the http prefix for HTTP (basic user password authentication) or the or https prefix for HTTP with SSL encryption. This argument is mandatory. port Specifies the port on which Web Services for Management responds. This argument is mandatory. path Provides the path to the Web Services for Management server. This is combined with the address and port arguments to form the complete URL of the Web Services for Management server in the usual ʹ order. This argument is mandatory. username Provides the user name for the Web Services for Management server. This argument is mandatory. password Provides the password for the Web Services for Management server. This argument is mandatory. Copyright 2008 VMware, Inc. All rights reserved. 7
8 Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. timeout Specifies a timeout for the HTTP request, in case of slow servers. This argument is optional. register_xml_ns This method registers extra XML namepaces that might be required for proprietary tags in the SOAP message. Under normal circumstances, calling this is not required, unless you are trying to extend the library itself. The argument to this function is a hash containing prefixes to be used as keys, and relative URLs as values. For example, this line declares a prefix wsen with the URL in the global XML namespace: $client->register_xml_ns((wsen => ' register_class_ns This method registers extra CIM namepaces that the Web Services for Management server might require. By default, the constructor provides a set of namespaces for CIM classes. Review the server configuration files to see if other CIM namespaces are required. The usage is the same as for register_xml_ns. Identify This method performs the wsmid:identify operation, which causes the Web Services for Management server to identify itself. This is particularly useful to check whether the server is up and running. The function takes no arguments. The method either prints a fault string, if a fault occurs, or returns the reply sent by the server. The reply is a hash reference containing the parsed reply in key value pairs. EnumerateInstances Enumerates the instances of a given class. The method returns a list of hashes containing the parsed reply from the server, or prints a fault string from the server if an error occurs. The common way to use the method is as follows: $client->enumerateinstances( class_name => 'CIM_Processor', namespace => 'root/cimv2' ) EnumerateInstanceNames Enumerates only the key values of the instances of a given class. Like EnumerateInstances, this method returns a list of hashes containing the parsed reply from the server, with keys only, or prints a fault string if an error occurs. The call to this method is similar to EnumerateInstances. EnumerateAssociatedInstances Returns the instances related to the source object through an association. Results are filtered differently depending on optional arguments. A typical way to use the method is as follows $client->enumerateassociatedinstances( class_name => 'CIM_Foo', selectors => \%hash; associationclassname => 'CIM_Bar', role => 'CIM_Baz', resultclassname => 'CIM_Bat', resultrole => 'CIM_Quux', includeresult => \%hash, namespace => 'root/cimv2' ) class_name This argument takes the class name for which you wish to get the associated instances. This is one of only two required arguments for this method call. Copyright 2008 VMware, Inc. All rights reserved. 8
9 selectors This argument takes the selector set keys as a reference to a hash, which is required to identify the particular instance of the class mentioned in the class_name argument. associationclassname This argument takes the association class name by which the instances are associated. This argument is optional. role This argument takes the specified role that the object plays in the association class and filters the results according to the role. This argument is optional. resultclassname This argument takes the result class name, which should be present in the association, and returns only those instances. This argument is optional. resultrole Specifies the role that the result class plays in this instance and returns the results based on the filter. This argument is optional. includeresult Further filters query results based on properties of the instances. These properties can be passed in the form of a name value pair hash then passed as a reference to this hash in the includeresult named argument. This argument is optional. Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. EnumerateAssociatedInstanceNames This method returns objects with only the key values of the associated instance populated. The usage is the same as for EnumerateAssociatedInstances. EnumerateAssociationInstances Returns objects containing association instances of which the class is a part. The usage is the same as for EnumerateAssociatedInstances. EnumerateAssociationInstanceNames Returns objects containing key values of the association instances of which the class is a part. The usage is the same as for EnumerateAssociatedInstances. GetInstance This method gets a particular instance of a class. It prints the fault string or returns the result in a hash, and takes the following named arguments: class_name Specifies class name, passed as a string, whose instance you wish to get. This argument is mandatory. options Passes in keys for the instance on which you wish to perform the GetInstance operation. The argument is passed as a hash containing the keys in name value pairs. This argument is mandatory. Dependencies Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. The WSMan::GenericOps library requires the WSMan::WSBasic module. Copyright 2008 VMware, Inc. All rights reserved. 9
10 StubOps.pm Object-Oriented Wrapper for Generic Operations Perl module location: Perl/lib/WSMan/StubOps.pm Name WSMan::StubOps Synopsis $client = WSMan::StubOps->new(%args) $client->register_xml_ns(%) $client->register_class_ns(%) $client->identify() $client->enumerateinstances(%args) $client->enumerateinstancenames(%args) $client->enumerateassociatedinstances(%args) $client->enumerateassociatedinstancenames(%args) $client->enumerateassociationinstances(%args) $client->enumerateassocitioninstancenames(%args) $client->getinstance(%args) Description The StubOps library provides a wrapper for generic operations so that replies to queries requested of the server can be returned as Perl objects rather than as hashes. Each of these objects has accessor methods associated with each object variable, and a set of common methods. These objects are basically Meta Object Facility (MOF) files compiled into Perl modules. MOF was developed by the Object Management Group (OMG). See References for Further Reading on page 2. The following methods are defined by the StubOps class: new Constructor that takes a hash argument containing key value pairs in the following form: $client = WSMan::StubOps->new(( address => ' port => '80', path => 'wsman', username => 'wsman', password => 'secret', namespace => 'root/cimv2', timeout => '60' )); address This argument provides the URL of the Web Services for Management server. You must specify the transport protocol by adding either the http prefix for HTTP (basic user password authentication) or the or https prefix for HTTP with SSL encryption. This argument is mandatory. port Specifies the port on which Web Services for Management responds. This argument is mandatory. path Provides the path to the Web Services for Management server. This is combined with the address and port arguments to form the complete URL of the Web Services for Management server in the usual ʹ order. This argument is mandatory. username Provides the user name for the Web Services for Management server. This argument is mandatory. password Provides the password for the Web Services for Management server. This argument is mandatory. Copyright 2008 VMware, Inc. All rights reserved. 10
11 Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. timeout Specifies a timeout for the HTTP request, in case of slow servers. This argument is optional. register_xml_ns This method registers extra XML namepaces that might be required for proprietary tags in the SOAP message. Under normal circumstances, calling this is not required, unless you are trying to extend the library itself. The argument to this function is a hash containing prefixes to be used as keys, and relative URLs as values. For example, this line declares a prefix wsen with the URL in the global XML namespace: $client->register_xml_ns((wsen => ' register_class_ns This method registers extra CIM namepaces that the Web Services for Management server might require. By default, the constructor provides a set of namespaces for CIM classes. Review the server configuration files to see if other CIM namespaces are required. The usage is the same as for register_xml_ns. Identify This method performs the wsmid:identify operation, which causes the Web Services for Management server to identify itself. This is particularly useful to check whether the server is up and running. The function takes no arguments. The method either prints a fault string, if a fault occurs, or returns the reply sent by the server. The reply is an object of the type IdentifyResponse. You can get all the key value pairs from the reply either by using the object as a normal hash, or if you know the names of the keys, using the get() method to obtain values by passing in the key names, in string form, as an argument to the method. For convenience, the object also contains the to_string() method to convert the whole object into a string. EnumerateInstances This method enumerates the instances of a given class. The method yields a list of objects returned by the server, or prints a fault string from the server if one occurs. A common way to use the method is as follows: $client->enumerateinstances( class_name => 'CIM_Processor', namespace => 'root/cimv2' ) That query returns all instances of the CIM_Processor object returned by the server. For an explanation of methods that can be called on the returned objects, see descriptions under Stubs Directory on page 13. EnumerateInstanceNames Enumerates only the key values of instances of a given class. Like EnumerateInstances, this method yields a list of objects returned from the server, or prints a fault string if an error occurs. The objects returned have only the key values populated. The call to this method is similar to EnumerateInstances. For an explanation of methods that can be called on returned objects, see the descriptions under Stubs Directory on page 13. EnumerateAssociatedInstances Returns the instances related to the source object through an association. Results are filtered differently depending on optional arguments. A typical way to use the method is as follows: $client->enumerateassociatedinstances( objectpath => 'CIM_Foo', associationclassname => 'CIM_Bar', role => 'CIM_Baz', resultclassname => 'CIM_Bat', resultrole => 'CIM_Quux', includeresult => \%hash, Copyright 2008 VMware, Inc. All rights reserved. 11
12 objectpath namespace => 'root/cimv2' ) This argument takes an instance of the class, which is the starting point of association traversal. Usually you get this object by performing an EnumerateInstances or EnumerateInstanceNames operation. The latter has only keys filled in, but that is enough. This argument is mandatory. associationclassname Takes the association class name by which the instances are associated. This argument is optional but might be required by some providers. role Takes the specified role that the object plays in the association class and filters the results according to the role. This argument is optional. resultclassname Takes the result class name, which should be present in the association, and returns only those instances. This argument is optional. resultrole Specifies the role that the result class should play in this instance and returns results based on the filter. This argument is optional and untested. includeresult Further filters query results based on properties of the instances. These properties can be passed in the form of a name value pair hash then passed as a reference to this hash in the includeresult named argument. This argument is optional and untested. Gives the default CIM namespace. This argument is optional, otherwise root/cimv2 is the default. EnumerateAssociatedInstanceNames This method returns objects with only the key values of the associated instance populated. The usage is the same as for EnumerateAssociatedInstances. EnumerateAssociationInstances Returns the object containing association instances of which the class is a part. The usage is the same as for EnumerateAssociatedInstances. EnumerateAssociationInstanceNames Returns the object containing key values of the instances of which the class is a part. The usage is the same as for EnumerateAssociatedInstances. GetInstance This method gets a particular instance of a class. It returns the requested object, or prints the fault string, and takes the following named arguments:/ objectpath Takes an instance of the class for which the instance is required. You get this object by performing an EnumerateInstances or EnumerateInstanceNames operation. The latter has only keys filled in, but that is enough. This argument is mandatory. Allows you to specify the namespace for a particular CIM class, as a string. This argument is optional. Copyright 2008 VMware, Inc. All rights reserved. 12
13 Dependencies The WSMan::StubOps library requires the following modules: WSMan::WSBasic WSMan::GenericOps::Data::Dump Stubs Directory Location of Perl modules: Perl/lib/WSMan/Stubs Name The Stubs directory in the VMware installation folder contains Perl modules that are object oriented Perl representations of various MOF (Meta Object Facility) models. Description The Stubs directory contains most of the classes supported by VMware. They are compiled directly from MOF files into Perl classes. There are about 200 Perl modules in the Stubs directory and each of them is a meta object class translated into a Perl class. These modules are also called stubs in this document. Under normal circumstances, you do not create instances of these stubs directly; they are used by methods in the StubOps module. See StubOps.pm Object Oriented Wrapper for Generic Operations on page 10. All the Stubs inherit class objects from Initializable.pm, which contains methods for initializing the classes as well as some common methods required by all classes. Methods Common to All Stubs The following methods are common to all stubs: new This method instantiates a particular class. The method can be invoked with no arguments, in which case all the fields in the class are initialized to undef. If you need to set the fields to a particular value, pass in the fields with the desired values as a hash containing the key value pairs. clone You can call this method on any of the instantiated objects and it returns an exact copy of the object. This may be used to provide a deep copy mechanism for the objects. to_string Use this method to serialize the object into a string. This string can be passed to the print function for display on standard output, or it can also be parsed by eval to produce a clone of the object. get_selectorset Use this method to return the key values that define a unique instance of the object. These values are returned as a hash reference. accessors Every stub has a separate accessor method for each of the variables in the class. The accessor name is the same as the variable name. If the accessor is called without any argument, it returns the present value of the variable. If the accessor is called with an argument, then the value of the variable is set to the passed in value and the modified value is returned. As an example consider Processor to be an instance of CIM_Processor. The CIM_Processor class has a class variable called DeviceID. To access the value of DeviceID, call the accessor method on the Processor instance as Processor->DeviceID, which returns the value of the DeviceID variable. To change the value of this variable, you call the accessor method as follows, which changes the present value to ʹ4.0ʹ and also returns this changed value: Processor->DeviceID('4.0'); Copyright 2008 VMware, Inc. All rights reserved. 13
14 Instantiating Stubs Under normal circumstances, you are not required to instantiate any of the stubs. However, if the need arises, you can import stubs into your script with the following implied syntax: WSMan::Stubs::CIM_Processor. The catch is that after importing the module you must instantiate the new object as follows. Note the lack of leading package identifier WSMan::Stubs:: in this instantiation statement, a shortcut: my $processor = CIM_Processor->new; VMware, Inc Hillview Ave., Palo Alto, CA Copyright 2008 VMware, Inc. All rights reserved. Protected by one or more of U.S. Patent Nos. 6,397,242, 6,496,847, 6,704,925, 6,711,672, 6,725,289, 6,735,601, 6,785,886, 6,789,156, 6,795,966, 6,880,022, 6,944,699, 6,961,806, 6,961,941, 7,069,413, 7,082,598, 7,089,377, 7,111,086, 7,111,145, 7,117,481, 7,149, 843, 7,155,558, 7,222,221, 7,260,815, 7,260,820, 7,269,683, 7,275,136, 7,277,998, 7,277,999, 7,278,030, 7,281,102, and 7,290,253; patents pending. VMware, the VMware boxes logo and design, Virtual SMP and VMotion are registered trademarks or trademarks of VMware, Inc. in the United States and/or other jurisdictions. Microsoft, Windows and Windows NT are registered trademarks of Microsoft Corporation. Linux is a registered trademark of Linus Torvalds. All other marks and names mentioned herein may be trademarks of their respective companies. Revision
CIM SMASH/Server Management API Programming Guide ESX 4.1 ESXi 4.1
CIM SMASH/Server Management API Programming Guide ESX 4.1 ESXi 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
vsphere Client Hardware Health Monitoring VMware vsphere 4.1
Technical Note vsphere Client Hardware Health Monitoring VMware vsphere 4.1 Purpose of This Document VMware vsphere provides health monitoring data for ESX hardware to support datacenter virtualization.
Configuring Multiple ACE Management Servers VMware ACE 2.0
Technical Note Configuring Multiple ACE Management Servers VMware ACE 2.0 This technical note describes how to configure multiple VMware ACE Management Servers to work together. VMware recommends this
Enabling NetFlow on Virtual Switches ESX Server 3.5
Technical Note Enabling NetFlow on Virtual Switches ESX Server 3.5 NetFlow is a general networking tool with multiple uses, including network monitoring and profiling, billing, intrusion detection and
Running VirtualCenter in a Virtual Machine
VMWARE TECHNICAL NOTE VirtualCenter 2.x Running VirtualCenter in a Virtual Machine Running VirtualCenter in a virtual machine is fully supported by VMware to the same degree as if it were installed on
VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server
Technical Note VirtualCenter Database Maintenance VirtualCenter 2.0.x and Microsoft SQL Server This document discusses ways to maintain the VirtualCenter database for increased performance and manageability.
ESX 4 Patch Management Guide ESX 4.0
ESX 4 Patch Management Guide ESX 4.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent
Managing Remote Access
VMWARE TECHNICAL NOTE VMware ACE Managing Remote Access This technical note explains how to use VMware ACE to manage remote access through VPN to a corporate network. This document contains the following
Integration with Active Directory
VMWARE TECHNICAL NOTE VMware ACE Integration with Active Directory This document explains how to set up Active Directory to use with VMware ACE. This document contains the following topics: About Active
vcenter Chargeback User s Guide
vcenter Chargeback 1.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions
ACE Management Server Deployment Guide VMware ACE 2.0
Technical Note ACE Management Server Deployment Guide VMware ACE 2.0 This technical note provides guidelines for the deployment of VMware ACE Management Servers, including capacity planning and best practices.
Installing and Configuring vcenter Multi-Hypervisor Manager
Installing and Configuring vcenter Multi-Hypervisor Manager vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.1 This document supports the version of each product listed and supports all subsequent
Firewall Builder Architecture Overview
Firewall Builder Architecture Overview Vadim Zaliva Vadim Kurland Abstract This document gives brief, high level overview of existing Firewall Builder architecture.
OpenWBEM Getting Started Guide. Author: Dan Nuffer Last update: 12/09/04
OpenWBEM Getting Started Guide Author: Dan Nuffer Last update: 12/09/04 Table of Contents OpenWBEM Getting Started Guide...1 1. OpenWBEM Overview & Concepts...3 Genesis...3 Overview...3 Features...3 2.
Migrating to vcloud Automation Center 6.1
Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
Configuration Maximums VMware Infrastructure 3
Technical Note Configuration s VMware Infrastructure 3 When you are selecting and configuring your virtual and physical equipment, you must stay at or below the maximums supported by VMware Infrastructure
Integration of Nagios monitoring tools with IBM's solutions
Integration of Nagios monitoring tools with IBM's solutions Wojciech Kocjan IBM Corporation [email protected] 1 Agenda Introduction Integration bottlenecks Why open standards? CIM and WBEM Open
vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00
vcenter Chargeback 1.0 EN-000186-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product
W H I T E P A P E R. Understanding VMware Consolidated Backup
W H I T E P A P E R Contents Introduction...1 What is VMware Consolidated Backup?...1 Detailed Architecture...3 VMware Consolidated Backup Operation...6 Configuring VMware Consolidated Backup...6 Backing
Using esxtop to Troubleshoot Performance Problems
VMWARE TECHNICAL TROUBLESHOOTING NOTE VMware ESX Server 2 Using esxtop to Troubleshoot Performance Problems The VMware esxtop tool provides a real-time view (updated every five seconds, by default) of
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document
Best Practices for Patching VMware ESX/ESXi VMware ESX 3.5/ESXi 3.5
Best Practices Guide Best Practices for Patching VMware ESX/ESXi VMware ESX 3.5/ESXi 3.5 The ever increasing sophistication of today s software, whether an operating system or an enterprise application,
IBM Proventia Management SiteProtector. Configuring Firewalls for SiteProtector Traffic Version 2.0, Service Pack 8.1
IBM Proventia Management SiteProtector Configuring Firewalls for SiteProtector Traffic Version 2.0, Service Pack 8.1 Copyright Statement Copyright IBM Corporation 1994, 2010. IBM Global Services Route
VMware Virtual Desktop Manager User Authentication Guide
Technical Note VMware Virtual Desktop Manager User Authentication Guide VMware Virtual Desktop Manager The purpose of this guide is to provide details of user authentication in VMware Virtual Desktop Manager
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0 vcenter Orchestrator 4.2 This document supports the version of each product listed and supports all subsequent versions until the document
SAN Conceptual and Design Basics
TECHNICAL NOTE VMware Infrastructure 3 SAN Conceptual and Design Basics VMware ESX Server can be used in conjunction with a SAN (storage area network), a specialized high speed network that connects computer
Virtual Machine Encryption Basics
VMWARE TECHNICAL NOTE VMware ACE Virtual Machine Encryption Basics VMware ACE gives administrators the option of enhancing the security of virtual machines they distribute to end users by encrypting key
Using VMware ESX Server With Hitachi Data Systems NSC or USP Storage ESX Server 3.0.2
Technical Note Using VMware ESX Server With Hitachi Data Systems NSC or USP Storage ESX Server 3.0.2 This technical note discusses using ESX Server hosts with a Hitachi Data Systems (HDS) NSC or USP SAN
W H I T E P A P E R. Best Practices for Building Virtual Appliances
W H I T E P A P E R Best Practices for Building Virtual Appliances Table of Contents Objectives.................................................................................. 3 Design Principles...........................................................................
Developer s Setup Guide VMware vsphere Web Services SDK 4.1
VMware vsphere Web Services SDK 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent
Managing Multi-Hypervisor Environments with vcenter Server
Managing Multi-Hypervisor Environments with vcenter Server vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.0 This document supports the version of each product listed and supports all subsequent
vcloud Air Platform Programmer's Guide
vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
vsphere Management Assistant Guide vsphere 4.0 EN-000116-00
vsphere 4.0 EN-000116-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product updates.
Migrating a Windows PC to Run in VMware Fusion VMware Fusion 2.0
Technical Note Migrating a Windows PC to Run in VMware Fusion VMware Fusion 2.0 This technical note describes the process for migrating an existing Windows PC to run as a virtual machine with VMware Fusion
VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3
VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 This document supports the version of each product listed and supports all subsequent
/ Preparing to Manage a VMware Environment Page 1
Configuring Security for a Managed VMWare Enviroment in VMM Preparing to Manage a VMware Environment... 2 Decide Whether to Manage Your VMware Environment in Secure Mode... 2 Create a Dedicated Account
Centralizing Windows Events with Event Forwarding
1 Centralizing Windows Events with Event Forwarding 2 Copyright Notice The information contained in this document ( the Material ) is believed to be accurate at the time of printing, but no representation
Management of VMware ESXi. on HP ProLiant Servers
Management of VMware ESXi on W H I T E P A P E R Table of Contents Introduction................................................................ 3 HP Systems Insight Manager.................................................
Setting Up Resources in VMware Identity Manager
Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
AMD DASHConfig Tool. White Paper Descriptor. Document version: 1.0. March 27 th, 2013
AMD DASHConfig Tool Document version: 1.0 March 27 th, 2013 White Paper Descriptor This whitepaper provides users with detailed description about using AMD DASHConfig tool. DASHConfig is for provisioning
vsphere Host Profiles
ESXi 5.1 vcenter Server 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions
User Identification (User-ID) Tips and Best Practices
User Identification (User-ID) Tips and Best Practices Nick Piagentini Palo Alto Networks www.paloaltonetworks.com Table of Contents PAN-OS 4.0 User ID Functions... 3 User / Group Enumeration... 3 Using
VMware vcenter Update Manager Administration Guide
VMware vcenter Update Manager Administration Guide Update 1 vcenter Update Manager 4.0 This document supports the version of each product listed and supports all subsequent versions until the document
Configuring MailArchiva with Insight Server
Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any
WHITE PAPER. VMware Infrastructure 3 Pricing, Packaging and Licensing Overview
WHITE PAPER VMware Infrastructure 3 Pricing, Packaging and Licensing Overview Table of Contents Introduction to VMware Infrastructure 3.......................................3 Pricing, Packaging & Licensing
Table of Contents Introduction and System Requirements 9 Installing VMware Server 35
Table of Contents Introduction and System Requirements 9 VMware Server: Product Overview 10 Features in VMware Server 11 Support for 64-bit Guest Operating Systems 11 Two-Way Virtual SMP (Experimental
FTP Peach Pit Data Sheet
FTP Peach Pit Data Sheet Peach Fuzzer, LLC v3.6.94 Copyright 2015 Peach Fuzzer, LLC. All rights reserved. This document may not be distributed or used for commercial purposes without the explicit consent
Basic System Administration ESX Server 3.0.1 and Virtual Center 2.0.1
Basic System Administration ESX Server 3.0.1 and Virtual Center 2.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
Sage CRM Connector Tool White Paper
White Paper Document Number: PD521-01-1_0-WP Orbis Software Limited 2010 Table of Contents ABOUT THE SAGE CRM CONNECTOR TOOL... 1 INTRODUCTION... 2 System Requirements... 2 Hardware... 2 Software... 2
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
Developing Web Views for VMware vcenter Orchestrator
Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
Copyright 2013 Consona Corporation. All rights reserved www.compiere.com
COMPIERE 3.8.1 SOAP FRAMEWORK Copyright 2013 Consona Corporation. All rights reserved www.compiere.com Table of Contents Compiere SOAP API... 3 Accessing Compiere SOAP... 3 Generate Java Compiere SOAP
TIBCO Spotfire Automation Services 6.5. User s Manual
TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO
Installing and Administering VMware vsphere Update Manager
Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
PHP Integration Kit. Version 2.5.1. User Guide
PHP Integration Kit Version 2.5.1 User Guide 2012 Ping Identity Corporation. All rights reserved. PingFederate PHP Integration Kit User Guide Version 2.5.1 December, 2012 Ping Identity Corporation 1001
W H I T E P A P E R. Optimized Backup and Recovery for VMware Infrastructure with EMC Avamar
W H I T E P A P E R Optimized Backup and Recovery for VMware Infrastructure with EMC Avamar Contents Introduction...1 VMware Infrastructure Overview...1 VMware Consolidated Backup...2 EMC Avamar Overview...3
Rebasoft Auditor Quick Start Guide
Copyright Rebasoft Limited: 2009-2011 1 Release 2.1, Rev. 1 Copyright Notice Copyright 2009-2011 Rebasoft Ltd. All rights reserved. REBASOFT Software, the Rebasoft logo, Rebasoft Auditor are registered
http://docs.trendmicro.com/en-us/enterprise/trend-micro-endpoint-applicationcontrol.aspx
Trend Micro Incorporated reserves the right to make changes to this document and to the product described herein without notice. Before installing and using the product, review the readme files, release
EMC Clinical Archiving
EMC Clinical Archiving Version 1.7 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2014-2015 EMC Corporation. All Rights
Using VMware ESX Server with IBM System Storage SAN Volume Controller ESX Server 3.0.2
Technical Note Using VMware ESX Server with IBM System Storage SAN Volume Controller ESX Server 3.0.2 This technical note discusses using ESX Server hosts with an IBM System Storage SAN Volume Controller
IBM Security SiteProtector System Configuring Firewalls for SiteProtector Traffic
IBM Security IBM Security SiteProtector System Configuring Firewalls for SiteProtector Traffic Version 3.0 Note Before using this information and the product it supports, read the information in Notices
Getting Started with ESXi Embedded
ESXi 4.1 Embedded vcenter Server 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent
Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER
Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication
CA Unified Infrastructure Management Server
CA Unified Infrastructure Management Server CA UIM Server Configuration Guide 8.0 Document Revision History Version Date Changes 8.0 September 2014 Rebranded for UIM 8.0. 7.6 June 2014 No revisions for
etrust Audit Using the Recorder for Check Point FireWall-1 1.5
etrust Audit Using the Recorder for Check Point FireWall-1 1.5 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational
Adeptia Suite LDAP Integration Guide
Adeptia Suite LDAP Integration Guide Version 6.2 Release Date February 24, 2015 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 DOCUMENT INFORMATION Adeptia
Decryption. Palo Alto Networks. PAN-OS Administrator s Guide Version 6.0. Copyright 2007-2015 Palo Alto Networks
Decryption Palo Alto Networks PAN-OS Administrator s Guide Version 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 www.paloaltonetworks.com/company/contact-us
vsphere Management Assistant Guide vsphere 4.1
vsphere 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,
Secure Messaging Server Console... 2
Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating
RecoveryVault Express Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
SNMP Adapter Installation and Configuration Guide
SNMP Adapter Installation and Configuration Guide vcenter Operations Manager 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
administrator are Console Users that can log on to the Web Management console and
Q and A Can I control what ObserveIT records? Yes, within the Web Console it is possible to define what the Agent records. By using inclusion or exclusion, you can control many aspects of the recording
Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0
Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document
Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager
Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager Integration note, 4 th edition Introduction... 2 Utilizing HP WBEM Providers for Windows... 2 Security...
Command-Line Tool for View Manager View Manager 4.0
Technical Note Command-Line Tool for View Manager View Manager 4.0 The Command Line Tool for View Manager is a utility provided with the View Manager application that allows you to carry out administrative
Remote Access API 2.0
VYATTA A BROCADE COMPANY Vyatta System Remote Access API 2.0 REFERENCE GUIDE Vyatta A Brocade Company 130 Holger Way San Jose, CA 95134 www.brocade.com 408 333 8400 COPYRIGHT Copyright 2005 2015 Vyatta,
Installing and Using the Zimbra Reporting Tool
Installing and Using the Zimbra Reporting Tool October 2014 Legal Notices Copyright 2005-2014 Zimbra, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual
VMware vcenter Log Insight Getting Started Guide
VMware vcenter Log Insight Getting Started Guide vcenter Log Insight 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by
Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1
Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System
VMware Auto Deploy GUI. VMware Auto Deploy Gui 5.0 Practical guide
VMware Auto Deploy Gui 5.0 Practical guide Introduction The scope of this document is to demonstrate how to configure and use the Auto Deploy GUI to manage stateless ESXi environments. 2012 VMware, Inc.
Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more. Security Review
Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more Security Review Version 8.1 March 31, 2016 Contacting Leostream Leostream Corporation http://www.leostream.com
Upgrading Horizon Workspace
Horizon Workspace 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of
IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide
IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices
Connection Broker Managing User Connections to Workstations, Blades, VDI, and more. Security Review
Connection Broker Managing User Connections to Workstations, Blades, VDI, and more Security Review Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com 465 Waverley
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
Basic System Administration ESX Server 3.0 and VirtualCenter 2.0
Basic System Administration ESX Server 3.0 and VirtualCenter 2.0 Basic System Administration Revision: 20090213 Item: VI-ENG-Q206-219 You can find the most up-to-date technical documentation at: http://www.vmware.com/support/pubs
Online Backup Linux Client User Manual
Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might
Configuring Single Sign-On from the VMware Identity Manager Service to Office 365
Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding
Configuring and Monitoring Hitachi SAN Servers
Configuring and Monitoring Hitachi SAN Servers eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this
Online Backup Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Integrated Citrix Servers
Installation Guide Supplement for use with Integrated Citrix Servers Websense Web Security Websense Web Filter v7.5 1996-2010, Websense, Inc. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA All rights
Using VMware Player. VMware Player. What Is VMware Player?
VMWARE APPLICATION NOTE VMware Player Using VMware Player This document contains the following sections: Work and Play in a Virtual World on page 1 Options and Features in VMware Player on page 4 Installing
Using the vcenter Orchestrator HTTP-REST Plug-In 1.0.x
Using the vcenter Orchestrator HTTP-REST Plug-In 1.0.x vcenter Orchestrator This document supports the version of each product listed and supports all subsequent versions until the document is replaced
User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream
User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner
How to Configure Captive Portal
How to Configure Captive Portal Captive portal is one of the user identification methods available on the Palo Alto Networks firewall. Unknown users sending HTTP or HTTPS 1 traffic will be authenticated,
Business Enterprise Server Help Desk Integration Guide. Version 3.5
Business Enterprise Server Help Desk Integration Guide Version 3.5 June 30, 2010 Copyright Copyright 2003 2010 Interlink Software Services, Ltd., as an unpublished work. All rights reserved. Interlink
IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager
IBM Configuring Rational Insight 1.0.1.1 and later for Rational Asset Manager Rational Insight and Rational Asset Manager...4 Prerequisites...5 Configuring the XML data configuration for Rational Asset
