HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App

Size: px
Start display at page:

Download "HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App"

Transcription

1 HP AppPulse Mobile Adding HP AppPulse Mobile to Your Android App Document Release Date: May 2015

2 How to Add HP AppPulse Mobile to Your Android App How to Add HP AppPulse Mobile to Your Android App For a quick overview showing this process, watch this video. Before you Begin Within AppPulse Mobile, add an application. HP AppPulse Mobile (1.9) Page 2 of 18

3 How to Add HP AppPulse Mobile to Your Android App Step 1: Download the SDK From the window that appears, download and extract the AppPulse Mobile SDK. Step 2: Add AppPulse Mobile to Your App You need to have Java Runtime Environment (JRE) 1.7 or higher installed. To verify what version you have, run java -version in a Windows command line. To install JRE, click here. 1. Copy the application key generated in the previous step. If you already closed the window, you can access the application's settings within AppPulse Mobile and copy the application key from there. HP AppPulse Mobile (1.9) Page 3 of 18

4 How to Add HP AppPulse Mobile to Your Android App 2. Open a Windows command line (Start > Run > cmd), and enter the following: <Unzipped SDK directory>\apppulse_mobile.bat -appkey <application key> <path and name of your APK> For example: C:\MySDKFiles\AppPulse_mobile.bat -appkey pwl3i8kjke C:\MyAPK\myapp.apk You now have a new APK in the same location as the original APK file, with the suffix signed.debug.apk. The new APK is signed with a debug key, which is the standard for testing and developing Android mobile apps. The above steps are mandatory. For other options, including parameters you can use to sign the APK with your private key, see " Advanced Options" on the next page. If you run into any problems, see "Basic Setup: Troubleshooting" on page 9. Step 3: Run Your App 1. Install the new APK on an Android device or emulator, and use your app. 2. Now open AppPulse Mobile, and explore your app's user experience! What's Next? When you are ready to upload it, sign the new APK with your private key and upload it to the Google Play store. To sign using AppPulse Mobile, see "Signing-Related Parameters" on page 6. As soon as users interact with your app, AppPulse Mobile shows your users' experience in detail. HP AppPulse Mobile (1.9) Page 4 of 18

5 Advanced Options Advanced Options When you add HP AppPulse Mobile to your app, you can define one or more advanced options as described in the following section. To use advanced options, enter the following in the command line: <Unzipped SDK directory>\apppulse_mobile.bat -appkey <application key> <optional parameters> <path and name of your APK> You can enter the following optional parameters: Parameter Description -o <File path> By default, the instrumented APK is created in the same directory as the original APK. Use this parameter to specify a different output file. -optin -overrideacra By default, user data is automatically reported to AppPulse Mobile. If you use this parameter, data will not be reported unless users activate data reporting (opt-in), as defined in your app. For details, see "Enabling Users to Opt-In/Opt-Out of Data Reporting" on page 8. AppPulse Mobile uses a version of the ACRA library to collect data on crashes. If your app already uses ACRA, by default AppPulse Mobile will not show crash data for the app. You can use this flag to add the AppPulse Mobile ACRA library version and override your current ACRA library. Note that this will disable your existing ACRA-based reporting mechanism, and you will see crash data in AppPulse Mobile. -sdfile <File path> -stacktracesizelimit <n> -tempdir <Temp directory> Use this parameter to block sensitive data; for details see "Protecting Sensitive Data" on the next page. By default, crash reports' stacktrace have a size limit of 2 KB. Use this parameter to modify this limit (possible range: 0-10). Setting a higher limit will impact network load accordingly. HP AppPulse Mobile uses your temp directory to run the instrumentation. Use this parameter to specify a different temporary directory. HP AppPulse Mobile (1.9) Page 5 of 18

6 Advanced Options Signing-Related Parameters By default, the instrumented APK is signed with a debug key, which is standard for testing and developing Android mobile apps. However, you must sign the APK with your private key before you can upload it to the Google Play store. If you want, you can use AppPulse Mobile to sign the instrumented APK, using the following optional parameters: Parameter -keystore <Keystore file>] -storepass <Keystore password> -alias <Key alias> -keypass <Key password> Description The path and name of the keystore file to be used for signing. A password for the keystore, if configured. The alias to the private key entry in the keystore. A password for the private key entry in the keystore, if configured. Protecting Sensitive Data To prevent reporting sensitive data such as a button or URL showing an account number, HP AppPulse Mobile automatically shows *** instead of any sequence of 4 or more of the following elements: 0-9,. - (digit, comma, period, hyphen). For example, if your app reports Paid by account , HP AppPulse Mobile shows Paid by account ***. Before adding HP AppPulse Mobile to your app, you can customize the default data masking as follows: No data masking. If you do not want these strings replaced, open the SDK and delete the file <Unzipped SDK directory>\apkinfuser\hpfilter.xml. Run the default command line described in "How to Add HP AppPulse Mobile to Your Android App" on page 2. Change data masking rules. To define specific rules relevant for your particular app, open the SDK and locate the file <Unzipped SDK directory>\apkinfuser\hpfilter.xml. This file contains the default rule, and a template for creating additional rules. Each rule has two parts: <detection string> <replacement string>. The detection uses regular expressions. You can add as many rules as needed; each rule is a separate Item node. Add or edit rules as needed, save the file, and run the default command line described in "How to Add HP AppPulse Mobile to Your Android App" on page 2. Use a different xml file. You can create a different XML file using the guidelines described above. When you run the command line, specify the location of your file with the -sdfile <File path> parameter. HP AppPulse Mobile (1.9) Page 6 of 18

7 Advanced Options Protecting Sensitive URL Parameters By default, AppPulse Mobile also masks sensitive URL parameters. For example, is reported as If you need custom masking (for example if a REST URLs contain usernames such as you can configure a mask in the following file: <Unzipped SDK directory>\apkinfuser\hpfilter.xml. Example: </Items>> <MaskUrls> <MaskUrl> /there</maskurl> <MaskUrl> <MaskUrl> </MaskUrls> The URLs are configured as regular expressions, where the capture groups (parenthesized parts) are the parts that will be masked. In the example above, the URL will be masked to HP AppPulse Mobile (1.9) Page 7 of 18

8 Advanced Options Enabling Users to Opt-In/Opt-Out of Data Reporting Some apps give each user the ability to avoid sending data from their device, for example using a Settings menu item (opt-out). Other apps ask users to actively approve data collection, for example when the app is first launched (opt-in). By default, data is automatically sent from mobile apps to AppPulse Mobile. You can use the -optin parameter to disable default data reporting; in this case data is only collected from users who opt in. Note that the relevant user interface and interaction within the app are up to the application developer. To enable or disable reporting from your app to AppPulse Mobile, change the Boolean value enabled in the SharedPreferences HPUserMonitoring. The change will take effect the next time the user opens the app. For example: private static final String HP_RUM_API_PREFERENCES_NAME = "HPUserMonitoring"; private static final String HP_RUM_API_PREFERENCES_ENABLED = "enabled"; public void disablereporting(view view) { SharedPreferences.Editor spe = getsharedpreferences(hp_rum_api_ PREFERENCES_NAME, Context.MODE_MULTI_PROCESS).edit(); spe.putboolean(hp_rum_api_preferences_enabled, false).commit(); } public void enablereporting(view view) { SharedPreferences.Editor spe = getsharedpreferences(hp_rum_api_ PREFERENCES_NAME, Context.MODE_MULTI_PROCESS).edit(); spe.putboolean(hp_rum_api_preferences_enabled, true).commit(); } HP AppPulse Mobile (1.9) Page 8 of 18

9 Basic Setup: Troubleshooting Basic Setup: Troubleshooting Supported versions HP AppPulse Mobile supports apps with Android 2.3 (API 9) and higher. Signing issues By default, the instrumented APK is signed with a debug key, which is standard for testing and developing Android mobile apps. However, you must sign the APK with your private key before you can upload it to the Google Play store. If you try to upload your instrumented app without signing, you will receive a message: Upload failed. You uploaded an APK that was signed in debug mode. You can use AppPulse Mobile to sign the instrumented APK, as described in "Signing-Related Parameters" on page 6. Some applications require that you sign the app with the original certificate in order to properly run it on a device. For example, if you use Google Wallet or Google Maps, your app requires the original certificate. This is also true if your application uses custom permissions that are signature protected, or if your application explicitly validates signatures. If you are unable to properly run your app after adding AppPulse Mobile, sign the new APK with your original certificate. Obfuscation issues If your app uses obfuscation, AppPulse Mobile cannot be added to the app if you include the Android Support Library in the obfuscation process. Make sure it is excluded from obfuscation (for example, for ProGuard use -keep class android.support.** { *; }). HP AppPulse Mobile (1.9) Page 9 of 18

10 Basic Setup: Troubleshooting Error messages The following section lists messages that may appear when adding HP AppPulse Mobile to your app, with their explanation. Message: Instrumentation process was unable to run - Java Runtime Environment was not found. Explanation: If you do not have JRE installed, install it from If you have JRE installed but instrumentation still fails, access your system variables, and open the PATH variable for editing. Verify that the Java Home is properly defined in the PATH variable; for example: C:\Program Files\Java\jre7\bin. After you edit the variable, close the existing command line and open a new one to continue instrumentation. Message: Could not reserve enough space for object heap. Explanation: If you are running JRE 32-bit, install 64-bit if supported by your OS. If you are running JRE 64-bit, the batch file assigns 2048KB of RAM for this process. If you need more, access the HP AppPulse Mobile SDK and open the ApkInfuser.bat file for editing. Locate the string -Xmx2048m and increase this value as needed, depending on your available system resources. Message: Explanation: Warning: You already have the ACRA library in your application for monitoring crashes. You can use the -overrideacra flag to replace your existing ACRA library. In this case, you'll get our detailed crash reports solution instead. AppPulse Mobile uses the ACRA library to collect data on crashes. Since your app is already using ACRA, by default AppPulse Mobile will not collect crash data for the app. You can use the -overrideacra flag to add the AppPulse Mobile ACRA library version and override your current ACRA library. Message: Warning: Unable to override ACRA because your ACRA is obfuscated. Crashes will therefore not be reported via our solution. HP AppPulse Mobile (1.9) Page 10 of 18

11 Basic Setup: Troubleshooting Explanation: You used the -overrideacra flag to override your current ACRA library, but your ACRA library is obfuscated (class names are changed). Since you have customized your ACRA we will not override it, and AppPulse Mobile will not show your crash data. Message: Explanation: Note: You are using the Override ACRA flag to enable AppPulse Mobile crash reports. You used the -overrideacra flag to add the AppPulse Mobile ACRA library version and override your current ACRA library. This disables your existing ACRA-based reporting mechanism, and you will see crash data in AppPulse Mobile. Message: Explanation: Note: Your application contains some html or javascript components, which are not yet supported. The current version of HP AppPulse Mobile does not yet support monitoring of hybrid components. This capability is coming soon! Message: Explanation: There was a problem in decoding dex file. This application is obfuscated to avoid post-build instrumentation. Your app includes bytecode obfuscation techniques that employ "junk byte injection." Contact HP Support for help with instrumenting your app. Message: SEVERE: Incorrect number of arguments, or illegal character used. SEVERE: The following path was not found: <path> Explanation: The command to add HP AppPulse Mobile to your app must contain the SDK batch location, the application key, and the apk location. Check if your command is missing one of these, or if any parameter in the command contains illegal characters ( ^ < > %). Message: Explanation: Failed to open dex file The classes.dex file is missing from your original apk, and AppPulse Mobile cannot be added unless this file exists. Use a zip viewer (like 7-zip) to see if the classes.dex file exists in your original apk. If it does exist, try to extract this file only from the original apk. You may see that your anti-virus software deletes it immediately. In this case, disable the anti-virus before adding AppPulse Mobile to your app, then re-enable your anti-virus software. HP AppPulse Mobile (1.9) Page 11 of 18

12 AppPulse Mobile SDK AppPulse Mobile SDK In order to add the AppPulse Mobile SDK and use its APIs, add the location of the jar to the classpath in your project dependencies. The jar is located in the following location: <unzipped sdk directory>\sdk\hpapppulsemobile.jar. After you rebuild your project you can use the following APIs: "Handled Exceptions and Crashes API" below "Breadcrumbs API" on the next page "User Action Customization APIs" on page 14 Handled Exceptions and Crashes API AppPulse Mobile automatically identifies and reports crashes. However, there are certain situation where exceptions occur and are caught by the application code, meaning they do not lead to a crash. The following APIs provide you with the ability to report these kind of exceptions with a severity level that will cause them to be displayed in AppPulse Mobile as either crashes or errors, helping you improve application quality and stability. You can use the following APIs to report the exception or crash you would like to monitor. Handled Exceptions A non-fatal exception will be displayed as an event in the Stability > Errors area. AppPulse Mobile will display the exception type, the developer-added description, and a link to show the full stack trace. HpAppPulse.reportException (Exception exception, String description) HpAppPulse.reportException (Exception exception) exception is an object containing all the relevant information of the problem (stack trace, user message). description is an optional field in case you want some text displayed in the errors page. If no description is used, the text will be taken from the exception message. Here's an example in the code: HP AppPulse Mobile (1.9) Page 12 of 18

13 AppPulse Mobile SDK Handled Crashes Use this API when you catch a crash or exception that leads to exit the application. A fatal exception will be displayed as a crash in the Stability > Errors area, and will have the same data as a crash. HpAppPulse.reportCrash(Exception exception) exception is an object containing all the relevant information of the problem (stack trace, user message). Here's an example in the code: Breadcrumbs API This API gives you the ability to add custom breadcrumbs in critical places in your application, containing information on the application's inner state. AppPulse Mobile displays these custom HP AppPulse Mobile (1.9) Page 13 of 18

14 AppPulse Mobile SDK breadcrumbs in reports on crashes, making it easier for you to investigate the source of the problem. HPAppPulse.addBreadcrumb(String name) name is a short logical name which describes the breadcrumb context. This will be displayed in the AppPulse Mobile UI. The following are examples in the code: User Action Customization APIs HP AppPulse Mobile automatically assigns names to your application's screens and user actions (UI controls) based on a number of methods. If you want to customize these screen and control names as they appear in AppPulse Mobile, you can use the following APIs to define naming and grouping as relevant to your needs. This includes the following: "Control Name" on the next page "Control Type" on the next page "Screen Name" on page 16 "Screen Name by Activity " on page 16 "Screen Name by Control Container " on page 16 "Enumeration of Control Types" on page 17 HP AppPulse Mobile (1.9) Page 14 of 18

15 AppPulse Mobile SDK Control Name Sets the name and type for a given control. A control is a View (android.app.view) on which a listener was set. For example, in order to click a button, an onclicklistener is set on this button. For this button, you set the name or type of the control using the following API. If you would like to consider a few separate controls as an identical control (for example two separate lists that really do the same thing), you can group them together by setting the same name and type. For example, suppose you have a list containing three items: Flights to x, Flights to y, and Flights to z, and AppPulse Mobile identifies this as a menu with three distinct actions. You can set each of the options with the same name/id, grouped under the category Flights to a location. void setactionname(view view, String actionname); Example: HpAppPulse.setActionName(myView, myname ); Control Type Sets the type for a given control. (For a definition of HPControlType enum; see "Enumeration of Control Types" on page 17.) For example, you can use this if you want a list to be considered a menu, so AppPulse Mobile will show a separate action for each item and not one action of list. Another example would be if you think the type of control is not what it appears to be, such as a control that looks like a button but has a checkbox and a textview in it, and you would like to see it as a button. void setcontroltype(view view, HPControlType controltype); Example: HpAppPulse.setControlType(myView, HpAppPulse.HPControlType.Button); Here's an example in the code: HP AppPulse Mobile (1.9) Page 15 of 18

16 AppPulse Mobile SDK Screen Name You can set the name for a specific screen by calling the following API on an existing activity. This should be added in the onstart or onresume method of the activity. You can also set the screen name for a specific control. You can use this to group several screen together by setting the same name. Screen Name by Activity Sets the screen name based on the activity. This API needs to be called during the activity onstart or onresume lifecycle methods. void setscreenname(activity activity, String screenname); Example: HpAppPulse.setScreenName(myActivity, myscreenname ); Here's an example in the code: Screen Name by Control Container Sets the screen name based on a given control container. For example, if a list item is clicked and you want the screen name to be based on the list container, the user will call this method on the list rather than on the list item. void setscreenname(view view, String screenname); Example: HpAppPulse.setScreenName(myView, myscreenname ); Here's an example in the code: HP AppPulse Mobile (1.9) Page 16 of 18

17 AppPulse Mobile SDK Enumeration of Control Types public enum HPControlType { Button, RadioButton, Tab, Menu, List, DropDown, CheckBox } Protecting Sensitive Data Collected by the SDK In some cases, you may not want to show specific information collected via the AppPulse Mobile APIs, such as a screen name that includes a sensitive parameter. To mask such data, open the SDK and locate the file <Unzipped SDK directory>\apkinfuser\hpfilter.xml. Uncomment and edit the <SDK> block as needed. This block contains a template for creating masking rules. Each rule has two parts: <detection string> <replacement string>. The detection uses regular expressions. You can add as many rules as needed; each rule is a separate SDKItem node. HP AppPulse Mobile (1.9) Page 17 of 18

18 AppPulse Mobile SDK Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. The information contained herein is subject to change without notice. Restricted Rights Legend Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR and , Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. Copyright Notice Copyright Hewlett-Packard Development Company, L.P. Trademark Notices Apple is a trademark of Apple Computer, Inc., registered in the U.S. and other countries. Google and Android are registered trademarks of Google Inc. HP AppPulse Mobile (1.9) Page 18 of 18

HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App

HP AppPulse Mobile. Adding HP AppPulse Mobile to Your Android App HP AppPulse Mobile Adding HP AppPulse Mobile to Your Android App Document Release Date: April 2015 How to Add HP AppPulse Mobile to Your Android App How to Add HP AppPulse Mobile to Your Android App For

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

AppPulse Mobile. Whitepaper: Overhead, Privacy, and Security. March 2016

AppPulse Mobile. Whitepaper: Overhead, Privacy, and Security. March 2016 AppPulse Mobile Whitepaper: Overhead, Privacy, and Security March 2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the express warranty

More information

HP AppPulse Mobile. Whitepaper: Privacy, Security, and Overhead. Document Release Date: September 2014 (v1.0)

HP AppPulse Mobile. Whitepaper: Privacy, Security, and Overhead. Document Release Date: September 2014 (v1.0) HP AppPulse Mobile Whitepaper: Privacy, Security, and Overhead Document Release Date: September 2014 (v1.0) Introduction Introduction In mobile applications, user experience isn t everything; it s the

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

HP Mobile Remote Control (Select Models Only) User Guide

HP Mobile Remote Control (Select Models Only) User Guide HP Mobile Remote Control (Select Models Only) User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are either trademarks or registered trademarks of Microsoft Corporation

More information

HP Mini Remote Control (Select Models Only) User Guide

HP Mini Remote Control (Select Models Only) User Guide HP Mini Remote Control (Select Models Only) User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are U.S. registered trademarks of Microsoft Corporation. The information

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

HP Cloud Service Automation

HP Cloud Service Automation Technical white paper HP Cloud Service Automation Integration with HP Service Manager Table of contents Introduction 2 Required software components 2 Configuration requirements 2 Downloading the distribution

More information

HP LoadRunner. Software Version: 11.00. Ajax TruClient Tips & Tricks

HP LoadRunner. Software Version: 11.00. Ajax TruClient Tips & Tricks HP LoadRunner Software Version: 11.00 Ajax TruClient Tips & Tricks Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Operations Manager Incent Web Service Integration Gue Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

Service Manager 9.32: Generating SSL Profiles for an F5 HWLB

Service Manager 9.32: Generating SSL Profiles for an F5 HWLB Knowledge Article Service Manager 9.32: Generating SSL Profiles for an F5 HWLB Describes how to create SSL Profiles for an F5 hardware load balancer to communicate with the Service Manager 9.32 server

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties

More information

Service Anywhere. Release Notes

Service Anywhere. Release Notes Service Anywhere Release Notes Document Release Date: 10 January 2016 Software Release Date: 10 January 2016 This Service Anywhere document includes the following: "Fixed defects and enhancements" below

More information

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

HP Data Protector Integration with Autonomy IDOL Server

HP Data Protector Integration with Autonomy IDOL Server HP Data Protector Integration with Autonomy IDOL Server Introducing e-discovery for HP Data Protector environments Technical white paper Table of contents Summary... 2 Introduction... 2 Integration concepts...

More information

HP Mobile Remote Control (Select Models Only) User Guide

HP Mobile Remote Control (Select Models Only) User Guide HP Mobile Remote Control (Select Models Only) User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are U.S. registered trademarks of Microsoft Corporation. The

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

HP Softpaq Download Manager and HP System Software Manager

HP Softpaq Download Manager and HP System Software Manager Technical white paper HP Softpaq Download Manager and HP System Software Manager A Powerful Combination Table of contents Executive summary... 2 Overview of HP SDM and HP SSM... 2 Use case for HP SDM and

More information

Modem and Local Area Networks. Document Part Number: 383057-002

Modem and Local Area Networks. Document Part Number: 383057-002 and Local Area Networks Document Part Number: 383057-002 October 2005 Contents 1 Modem Using the modem cable............................ 2 Using a country-specific modem cable adapter.......... 3 Modem

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 High Availability Fine Tuning - Best Practices Document Release Date: December 2013 Software Release Date:

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Developing In Eclipse, with ADT

Developing In Eclipse, with ADT Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Configuring User Authentication...

More information

HP ThinShell. Administrator Guide

HP ThinShell. Administrator Guide HP ThinShell Administrator Guide Copyright 2014 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of the Microsoft group of companies. Confidential computer

More information

HP INTEGRATED ARCHIVE PLATFORM

HP INTEGRATED ARCHIVE PLATFORM You can read the recommendations in the user guide, the technical guide or the installation guide for HP INTEGRATED ARCHIVE PLATFORM. You'll find the answers to all your questions on the HP INTEGRATED

More information

HP ALM Best Practices Series

HP ALM Best Practices Series HP ALM Best Practices Series For ALM Practitioners Business Process Models Best Practices Document Release Date: June 2015 Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Image Assistant. Table of contents. Quick Start Guide

HP Image Assistant. Table of contents. Quick Start Guide HP Image Assistant Quick Start Guide Table of contents Overview... 2 Glossary... 2 System requirements... 2 Using HPIA... 2 Downloading HPIA... 2 Capturing a Golden Image configuration file... 3 Using

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database HP Vertica Integration with SAP Business Objects: Tips and Techniques HP Vertica Analytic Database HP Big Data Document Release Date: June 23, 2015 Legal Notices Warranty The only warranties for HP products

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Excel Add-in Guide Document Release Date: February 2011 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi

How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi How to read Temperature and Humidity from Am2302 sensor using Thingworx Edge java SKD for Raspberry Pi Revison History Revision # Date ThingWorx Revision Changes Owner 1.0 2.0 21-11-14 3.0 17-12-14 4.0

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos)

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) Document Version 3.23 November 2010 1 Copyright 2007-2010 Hewlett-Packard Development Company, L.P. The information

More information

Instructions for installing Microsoft Windows Small Business Server 2003 R2 on HP ProLiant servers

Instructions for installing Microsoft Windows Small Business Server 2003 R2 on HP ProLiant servers Instructions for installing Microsoft Windows Small Business Server 2003 R2 on HP ProLiant servers integration note Abstract... 2 Installation requirements checklists... 3 HP ProLiant server checklist...

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties

More information

Modem and Local Area Network

Modem and Local Area Network Modem and Local Area Network User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products

More information

HP Server Management Packs for Microsoft System Center Essentials User Guide

HP Server Management Packs for Microsoft System Center Essentials User Guide HP Server Management Packs for Microsoft System Center Essentials User Guide Part Number 460344-001 September 2007 (First Edition) Copyright 2007 Hewlett-Packard Development Company, L.P. The information

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

Android Application Development

Android Application Development Android Application Development Self Study Self Study Guide Content: Course Prerequisite Course Content Android SDK Lab Installation Guide Start Training Be Certified Exam sample Course Prerequisite The

More information

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE You can read the recommendations in the user guide, the technical guide or the installation guide for HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE. You'll find the answers to all your questions on the HP EMAIL

More information

HP Software as a Service

HP Software as a Service HP Software as a Service Software Version: 6.1 Federated SSO Document Release Date: August 2013 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

Witango Application Server 6. Installation Guide for Windows

Witango Application Server 6. Installation Guide for Windows Witango Application Server 6 Installation Guide for Windows December 2010 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: support@witango.com Web: www.witango.com

More information

HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant

HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant Part Number 465399-001 November 2007 (First Edition) Copyright 2007 Hewlett-Packard Development

More information

HP ThinPro. Table of contents. Enabling RemoteFX for RDP. Technical white paper

HP ThinPro. Table of contents. Enabling RemoteFX for RDP. Technical white paper Technical white paper HP ThinPro Enabling RemoteFX for RDP Table of contents Overview... 2 Operating system requirements... 2 USB redirection... 2 Enabling RemoteFX on the RDP server... 2 Windows 7 and

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

Installing the Android SDK

Installing the Android SDK Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today

More information

HP ilo mobile app for Android

HP ilo mobile app for Android HP ilo mobile app for Android User Guide Abstract The HP ilo mobile app provides access to the remote console and scripting features of HP ProLiant servers. HP Part Number: 690350-003 Published: March

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide HP Quality Center Software Version: 9.20 Microsoft Excel Add-in Guide Document Release Date: September 2008 Software Release Date: January 2008 Legal Notices Warranty The only warranties for HP products

More information

HP Access Control Express Installation Guide

HP Access Control Express Installation Guide HP Access Control Express Installation Guide 1 HP Access Control Express Installation Guide Reference number: 20111005 Edition: November 2011 2 Legal notices (c) Copyright 2011 Hewlett-Packard Development

More information

Web Dashboard User Guide

Web Dashboard User Guide Web Dashboard User Guide Version 10.2 The software supplied with this document is the property of RadView Software and is furnished under a licensing agreement. Neither the software nor this document may

More information

HP Software as a Service. Federated SSO Guide

HP Software as a Service. Federated SSO Guide HP Software as a Service Federated SSO Guide Document Release Date: July 2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying

More information

HP IMC User Behavior Auditor

HP IMC User Behavior Auditor HP IMC User Behavior Auditor Administrator Guide Abstract This guide describes the User Behavior Auditor (UBA), an add-on service module of the HP Intelligent Management Center. UBA is designed for IMC

More information

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Excel Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

Send to Network Folder. Embedded Digital Sending

Send to Network Folder. Embedded Digital Sending Send to Network Folder Embedded Digital Sending Embedded Digital Sending Legal Notice Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without

More information

A Practical Guide to creating, compiling and signing an Android Application using Processing for Android.

A Practical Guide to creating, compiling and signing an Android Application using Processing for Android. A Practical Guide to creating, compiling and signing an Android Application using Processing for Android. By Joseph Alexander Boston http://www.jaboston.com IMPORTANT NOTE: EVERYTHING YOU INSTALL SHOULD

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Service Desk Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Installation Manuals Installation and Setup Guide Health Check Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Applications Notes Best Practices for Using SolarWinds' ORION to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

SEZ SEZ Online Manual- DSC Signing with Java Applet. V Version 1.0 ersion 1.0

SEZ SEZ Online Manual- DSC Signing with Java Applet. V Version 1.0 ersion 1.0 SEZ SEZ Online Manual- V Version 1.0 ersion 1.0 Table of Contents 1 Introduction...2 2 DSC signing functionality with java applet...2 3 Troubleshooting...5 4 Annexure I: JAVA Console Setting... 13 5 Annexure

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Installation and Update Guide Table of contents Overview... 3 HPDM Server preparation... 3 FTP server configuration... 3 Windows Firewall settings... 3 Firewall

More information

EasyPush Push Notifications Extension for ios

EasyPush Push Notifications Extension for ios EasyPush Push Notifications Extension for ios Copyright 2012 Milkman Games, LLC. All rights reserved. http://www.milkmangames.com For support, contact info@milkmangames.com To View full AS3 documentation,

More information

Deploying Intellicus Portal on IBM WebSphere

Deploying Intellicus Portal on IBM WebSphere Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com

More information

Installing Microsoft Windows

Installing Microsoft Windows Installing Microsoft Windows on HP Workstations with Advanced Format Hard Drives Technical white paper Table of contents Introduction... 2 Identifying an Advanced Format drive... 2 Installing Windows on

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 Release Notes Abstract This release notes document is for HP 3PAR Recovery Manager 4.5.0 Software for Microsoft

More information

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04 Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Technical white paper Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Table of contents Executive summary... 3 Configuration Manager features... 3 Asset

More information

RHEV 2.2: REST API INSTALLATION

RHEV 2.2: REST API INSTALLATION RHEV 2.2: REST API INSTALLATION BY JAMES RANKIN REVISED 02/14/11 RHEV 2.2: REST API INSTALLATION 1 TABLE OF CONTENTS OVERVIEW PAGE 3 JAVA AND ENVIRONMENT VARIABLES PAGE 3 JBOSS INSTALLATION PAGE 5 REST

More information

Appium mobile test automation

Appium mobile test automation Appium mobile test automation for Google Android and Apple ios Last updated: 4 January 2016 Pepgo Limited, 71-75 Shelton Street, Covent Garden, London, WC2H 9JQ, United Kingdom Contents About this document...

More information

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide HP Quality Center Software Version: 9.20 Version Control Add-in Guide Document Number: QCGENVC9.2/01 Document Release Date: May 2007 Software Release Date: May 2007 Legal Notices Warranty The only warranties

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Integration with software distribution tools Build number: 50 Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

Remote Control (Select Models Only)

Remote Control (Select Models Only) Remote Control (Select Models Only) User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are either trademarks or registered trademarks of Microsoft Corporation

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Use Cases for Integrations with HP Applications Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The

More information

ADT Plugin for Eclipse

ADT Plugin for Eclipse ADT Plugin for Eclipse Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications. ADT extends

More information

HP-UX Support Tools Manager (STM) Release Notes

HP-UX Support Tools Manager (STM) Release Notes HP-UX Support Tools Manager (STM) Release Notes HP-UX 11i v3 Version: B.11.31.23.02 HP Part Number: 820365-001 Published: March 2015 Edition: 1 (April 2015) Legal Notices Copyright 2003, 2015 Hewlett-Packard

More information

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31 HP Service Manager For the Supported Windows and UNIX operating systems Software Version: 9.31 Collaboration Guide Document Release Date: October 2012 Software Release Date: October 2012 Legal Notices

More information

HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination

HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination Technical white paper Table of contents Executive summary... 2 Overview of HP SDM and HP SSM... 2 Use Case for SDM/SSM...

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Citrix XenServer Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

Bluetooth Pairing. User Guide

Bluetooth Pairing. User Guide Bluetooth Pairing User Guide Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft, Windows, and Windows Vista are U.S. registered trademarks of Microsoft Corporation. Bluetooth is a trademark

More information