Releasing an Application for mobile applications in Sony Ericsson phones

Size: px
Start display at page:

Download "Releasing an Application for mobile applications in Sony Ericsson phones"

Transcription

1 Tutorial May 2007 Releasing an Application for mobile applications in Sony Ericsson phones

2 Preface About this tutorial This tutorial has been written by Simon Judge, a freelance mobile developer who develops for Symbian, Java ME and Windows Mobile. This document describes the steps required to build and release an application suitable for use on the phone. Any opinions in this document are those of Simon Judge and not necessarily those of Sony Ericsson. This tutorial is published by: Sony Ericsson Mobile Communications AB, SE Lund, Sweden Phone: Fax: Sony Ericsson Mobile Communications AB, All rights reserved. You are hereby granted a license to download and/or print a copy of this document. Any rights not expressly granted herein are reserved. First edition (May 2007) Publication number: EN/LZT /5 R1A This document is published by Sony Ericsson Mobile Communications AB, without any warranty*. Improvements and changes to this text necessitated by typographical errors, inaccuracies of current information or improvements to programs and/or equipment, may be made by Sony Ericsson Mobile Communications AB at any time and without notice. Such changes will, however, be incorporated into new editions of this document. Printed versions are to be regarded as temporary reference copies only. *All implied warranties, including without limitation the implied warranties of merchantability or fitness for a particular purpose, are excluded. In no event shall Sony Ericsson or its licensors be liable for incidental or consequential damages of any nature, including but not limited to lost profits or commercial loss, arising out of the use of the information in this document. 2 May 2007

3 Sony Ericsson Developer World On developers will find documentation and tools such as phone White papers, Developers guidelines for different technologies, SDKs (Software Development Kits) and relevant APIs (Application Programming Interfaces). The Web site also contains discussion forums monitored by the Sony Ericsson Developer Support team, an extensive Knowledge base, Tips and tricks, example code and news. Sony Ericsson also offers technical support services to professional developers. For more information about these professional services, visit the Sony Ericsson Developer World Web site. Document conventions Terminology ACS SDK Authenticated Content Signing Software Development Kit Typographical conventions Code is written in Courier font: on (keypress "<Up>") { gotoandplay("subscribe"); } 3 May 2007

4 Trademarks and acknowledgements Symbian, Symbian OS and other Symbian marks are all trademarks of Symbian Ltd. Other product and company names mentioned herein may be the trademarks of their respective owners. Document history Change history Version R1A First version 4 May 2007

5 Contents Introduction...6 Customizing the installation...6 Publishing an unsigned application...7 Application signing...7 Using Verisign ACS Publisher ID Certificates...7 Using Developer Certificates...13 Signing for freeware...18 Documentation and further reading May 2007

6 Introduction This document explains how to release your first Symbian based UIQ application. It describes how to customise the installation and, if necessary, sign your application using the Symbian Signed process. This document forms part 5 of the Getting Started series. This document assumes you have read the following documents available on the Sony Ericsson Developer World web site: Part 1: The UIQ Platform Part 2: UIQ SDK and Tools Setup Part 3: Application Integrity and Security Part 4: Working with Code Tutorial 6 will explore ways of distributing your UIQ application. Customizing the installation The previous tutorial, Working with Code, explained how the final install.sis file is defined using a.pkg file that is usually in the project group directory. Prior to release, this file should always be customized. :"Vendor" Change Vendor to either your own name or your company name. #{"MyApp"}, (0xE ), 1, 2, 3, TYPE=SA Change MyApp to be your application name, 0xE to be your application UID, 1 to be your major build number, 2 to be your minor version number and 3 to be your build number. The Type=SA just indicated it is a normal application install as opposed to a patch (SP) or upgrade (PU). Most applications have a readme or license type message that is shown to the user prior to install: "readme.txt"-"", FT, TA This is actually the same as installing an extra file except that no destination is specified (destination is "") because the file is not installed. FT indicates that the file contains text to be displayed during installation and TA (text abort) specifies that dialog will contain an option to abort the installation. If TA is not specified, the dialog will just have a Continue button. Tip: The PKG format also supports advanced features such as multiple language installs, optional installation and dependencies on other software components. Please see the UIQ SDK for further information. 6 May 2007

7 Publishing an unsigned application It is very easy to publish an unsigned application. Just run makesis from the command line or within carbide.c++ as mentioned in the previous tutorial Working with Code. Tip: The UIQ platform allows unsigned applications to be installed. Hence, unlike S60, there is no need to self sign an application. Application signing The signing of applications was explained in the previous tutorial Application Integrity and Security. This section explains some of the more practical aspects. It is important to realize that it is the.sis installation file that is signed, not the contained.exe. If anything within the.sis file has to be changed then the new install has to be re-signed. There are two scenarios where the.sis is signed: 1. Signing with a certificate obtained from Verisign, prior it being sent to a 3rd party test house for Symbian Signed testing. Signing just allows the test house to know the.sis came from you and has not been tampered with. Once the application has passed testing it will be re-signed with a Symbian Signed certificate that matches that within every end-user phone. 2. Signing with a temporary developer certificate (DevCert) obtained from Symbian that allows you to test on a restricted number of phones without having tested and Symbian Signed the application. Using Verisign ACS Publisher ID Certificates Obtaining and using a publisher ID certificate is a lengthy process. It involves enrolling and having your identity checked by Verisign. Once verified, you download a certificate to your web browser. You then export it to a file and process the file with a Symbian command line application to produce.cer and.key files. These files can be used by the Symbian signsis to sign a.sis file. Here is the process step by step: 1. Apply for an ACS Publisher ID at Tip: Take care what you enter when you enroll. Verisign will use this information to verify your company exists. Ideally, use the telephone number that is publicly listed on your web site / 3rd party directories. People used as contacts should be made aware that they are likely to be checked by Verisign. Once your identity has been validated you will receive an asking you to pick up your ACS Publisher ID. 2. Go to 7 May 2007

8 3. Enter the Personal Identification Number (PIN) from your and challenge phrase from your enrolment, and click Continue. 4. Accept the default settings in the Pick Up Certificate page. You may get a Potential Scripting Violation message that you should ignore. Just click on Yes. 8 May 2007

9 5. You may get another Potential Scripting Violation that again you should ignore. Just click Yes. The certificates will be added to your web browser. 6. Select Tools > Internet Options in your web browser and select Content > Certificates to open the Certificates dialog window: 7. Click on the Export button. The Certificate Export Wizard starts. 9 May 2007

10 8. Ensure that the option to export the key is selected. Click Next. 9. Mark the check box to enable strong protection. Click Next. 10 May 2007

11 10. You can optionally enter a password to protect the private key. The fields were left empty in this example. Click Next. 11. Type a unique name for this key. The company name, surerange, was used in this example. 11 May 2007

12 12. Click Next to view the specified settings. You will have a.pfx file in the directory specified by the File Name in the above dialog. 13. Click Finish to complete the Certificate Export Wizard. 14. Download the Symbian Key Export Utility: Extract the contents of the vs_pkcs.zip to a known directory. Copy the previously exported.pfx file to this directory. 16. From the command line, run vs_pkcs specifying the name of the.pfx file: 12 May 2007

13 17. You can now place the output.cer and.key files into the group directory of your project and use signsis to sign your.sis file: where myapp.sis is the sis to be signed and myapp_signed.sis is a new filename for the signed sis file. Tip: When generating SIS within carbide.c++, you can specify the certificate and key files in project properties. Go to Project Properties > Tool Settings tab, then Createsis > General options. However, in practice you tend to need to specify more options than provided by Carbide and may need to use the command line. Tip: It is also possible to specify the certificate and key filenames in the.pkg file so that they do not have to be specified on the signsis command line. See UIQ SDK for further information. Using Developer Certificates Developer Certificates (DevCerts) allow testing of applications on real devices before submitting them for Symbian Signing. Here is the process step by step: 1. You need to register on in order to obtain developer certificates. 2. Once registered, download, install and run the tool called DevCertRequest that will allow you to create a.csr developer certificate request file. 13 May 2007

14 3. Choose a filename for the file you will eventually upload to SymbianSigned.com. 4. Click Next. 14 May 2007

15 5. Click Next. You do not need an ACS publisher ID to get a DevCert. However, if you have one you will be able to use the DevCert on up to 100 specified phones (IMEIs) rather than just one. Tip: Remember the Private key file password in the above dialog. You will need it later when signing your application. 15 May 2007

16 6. Fill in your personal information as the example below illustrates: 7. Click Next. 16 May 2007

17 8. Enter IMEI(s) and click Next. Tip: There is also a Symbian Developer Certificate Request Wizard Plug-in for Carbide.c++ available to download from the symbiansigned.com web site. 9. When you have a.csr certificate request file, go back to the symbiansigned web site and click on Request under Developer Certificates. 17 May 2007

18 10. Enter the.csr filename and click send to upload the request. The certificate will be created automatically and can be downloaded immediately. 11. To sign the sis file, download the certificate (.cer) file and put it in your project group directory. You will also need the key (.key) file that was created by the certificate request tool. Note: myapp.sis is the sis to be signed, myapp_signed_devcert.sis is a new filename for the signed sis file and test is the password you used in the certificate request tool. Signing for freeware There is process, run by Cellmania, that offers free Symbian Signed testing for freeware developers. Cellmania currently provides this service. While you may need a DevCert to test your application, it does not have to be signed in any way prior to being sent to Cellmania. Cellmania takes applications from third parties, signs them with their own Cellmania ACS, tests them and if they pass Symbian Signs them. Documentation and further reading Signing applications for Sony Ericsson UIQ 3 phones: 18 May 2007

19 Verisign Content Signing: index.html. Freeware Route to Market: Sony Ericsson Channel Certification Form: 19 May 2007

Application Integrity and Security for mobile applications in Sony Ericsson phones

Application Integrity and Security for mobile applications in Sony Ericsson phones Tutorial March 2007 Application Integrity and Security for mobile applications in Sony Ericsson phones Preface About this tutorial This tutorial has been written by Simon Judge, a freelance mobile developer

More information

Streaming with Project Capuchin for Adobe Flash Lite developers

Streaming with Project Capuchin for Adobe Flash Lite developers Tutorial March 2009 Streaming with Project Capuchin for Adobe Flash Lite developers Preface About this tutorial This Project Capuchin tutorial illustrates how images stored in different locations can be

More information

Setting up Java environment for Project Capuchin development with Sony Ericsson phones

Setting up Java environment for Project Capuchin development with Sony Ericsson phones Instructions October 2008 Setting up Java environment for Project Capuchin development with Sony Ericsson phones Preface About this document This document contains a step by step description of how to

More information

Video calls. July Keep in touch using voice and video

Video calls. July Keep in touch using voice and video Video calls July 2007 Keep in touch using voice and video Contents Introduction... 2 Before you start... 2 Making a video call... 3 Answering and ending a video call... 3 Zooming... 4 Sharing pictures

More information

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Product information August 2008 Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Document history Change history 2008-05-01 Doc. No. 1212.4799.1 First version 2008-08-18 Doc. No.

More information

White paper. April Security

White paper. April Security White paper April 2011 Security This document This Sony Ericsson White paper is intended to give enterprise users an overview of specific smartphone features and provide details in relevant areas of technology.

More information

Xperia TM. Read about how Xperia TM devices manage and synchronisation in a corporate IT environment

Xperia TM. Read about how Xperia TM devices manage  and synchronisation in a corporate IT environment Xperia TM in Business Email, Calendar and Contacts Read about how Xperia TM devices manage email and synchronisation in a corporate IT environment Exchange ActiveSync IMAP4 and POP3 The Xperia Email application

More information

White paper. April Messaging

White paper. April Messaging White paper April 2011 Messaging This document This Sony Ericsson White paper is intended to give enterprise users an overview of specific smartphone features and provide details in relevant areas of technology.

More information

SmartWatch. February Specification. Developer World sonymobile.com/developer

SmartWatch. February Specification. Developer World sonymobile.com/developer February 2013 SmartWatch Specification *All implied warranties, including without limitation the implied warranties of merchantability or fitness for a particular purpose, are excluded. In no event shall

More information

White paper. April Connectivity

White paper. April Connectivity White paper April 2011 Connectivity This document This Sony Ericsson White paper is intended to give enterprise users an overview of specific smartphone features and provide details in relevant areas of

More information

Managing files. July Organize your files

Managing files. July Organize your files Managing files July 2007 Organize your files Contents Introduction... 2 Installing the software... 3 Installing the PC Suite from the CD... 4 Downloading the PC Suite from the Web... 4 Installing PC Suite

More information

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment

Xperia TM. Read about how Xperia TM devices can be administered in a corporate IT environment Xperia TM in Business Mobile Device Management Read about how Xperia TM devices can be administered in a corporate IT environment Device management clients Exchange ActiveSync The my Xperia service Third

More information

Smart Wireless Headset pro Specification

Smart Wireless Headset pro Specification February 2013 Smart Wireless Headset pro Specification Copyright 2013 Sony Mobile Communications AB. All rights reserved. Xperia is a trademark of Sony Mobile Communications AB. Other brands, company or

More information

Symantec Managed PKI. Integration Guide for AirWatch MDM Solution

Symantec Managed PKI. Integration Guide for AirWatch MDM Solution Symantec Managed PKI Integration Guide for AirWatch MDM Solution ii Symantec Managed PKI Integration Guide for AirWatch MDM Solution The software described in this book is furnished under a license agreement

More information

The UIQ Platform for mobile applications in Sony Ericsson phones

The UIQ Platform for mobile applications in Sony Ericsson phones Tutorial January 2007 The UIQ Platform for mobile applications in Sony Ericsson phones Preface About this tutorial This tutorial has been written by Simon Judge, a freelance mobile developer who develops

More information

Quick Start. 2.1 Hello World Project Template. 2.2 Running Carbide.c++ IDE

Quick Start. 2.1 Hello World Project Template. 2.2 Running Carbide.c++ IDE 2 Quick Start This chapter explains how to create a Hello World application for Symbian OS and deploy it to a smartphone. You will also learn how to make a small modification to the Hello World application.

More information

Sony Xperia Configurator Cloud User Instructions

Sony Xperia Configurator Cloud User Instructions Sony Xperia Configurator Cloud User Instructions This document is published by: Sony Mobile Communications Inc., 1-8-15 Konan, Minato-ku, Tokyo 108-0075, Japan www.sonymobile.com Sony Mobile Communications

More information

SafeNet MobilePKI for BlackBerry V1.2. Administration Guide

SafeNet MobilePKI for BlackBerry V1.2. Administration Guide SafeNet MobilePKI for BlackBerry V1.2 Administration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV and/or its subsidiaries who shall have

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for REST and JSON Installation. Software Release 1.0 November 2012

TIBCO ActiveMatrix BusinessWorks Plug-in for REST and JSON Installation. Software Release 1.0 November 2012 TIBCO ActiveMatrix BusinessWorks Plug-in for REST and JSON Installation Software Release 1.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH

More information

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at Document Date: May 16, 2017 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide Using SafeNet Authentication Service as an Identity Provider for Tableau Server All information herein is either public information or is the property of

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Recording Server Maintenance Tool

Recording Server Maintenance Tool A-EE9-100-12 (1) Recording Server Maintenance Tool User s Guide Software Version 2.0.0 and Later NSR-500 NSR-1000 Series RealShot Manager Advanced 2012 Sony Corporation Table of Contents Copyright Notice...

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Xperia TM. in Business. Product overview. Read about the enterprise policies and features supported in Xperia devices.

Xperia TM. in Business. Product overview. Read about the enterprise policies and features supported in Xperia devices. Xperia TM in Business Product overview Read about the enterprise policies and features supported in Xperia devices February 2017 About this document Products covered This document describes Xperia in Business

More information

Tanium Network Quarantine User Guide

Tanium Network Quarantine User Guide Tanium Network Quarantine User Guide Version 1.0.2 August 14, 2018 The information in this document is subject to change without notice. Further, the information provided in this document is provided as

More information

Authentication Manager Self Service Password Request Administrator s Guide

Authentication Manager Self Service Password Request Administrator s Guide Authentication Manager Self Service Password Request 9.0.2 Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Xperia TM. in Business. Product overview. Read about the enterprise policies and features supported in Xperia devices. March 2018

Xperia TM. in Business. Product overview. Read about the enterprise policies and features supported in Xperia devices. March 2018 Xperia TM in Business Product overview Read about the enterprise policies and features supported in Xperia devices March 2018 About this document Products covered This document describes Xperia in Business

More information

Creating and Installing SSL Certificates (for Stealthwatch System v6.10)

Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Copyrights and Trademarks 2017 Cisco Systems, Inc. All rights reserved. NOTICE THE SPECIFICATIONS AND INFORMATION REGARDING THE

More information

Symantec Managed PKI. Integration Guide for ActiveSync

Symantec Managed PKI. Integration Guide for ActiveSync Symantec Managed PKI Integration Guide for ActiveSync ii Symantec Managed PKI Symantec Managed PKI Integration Guide for ActiveSync The software described in this book is furnished under a license agreement

More information

Sony Smart headset products Developer specifications

Sony Smart headset products Developer specifications November 2013 Sony Smart headset products Developer specifications Copyright 2013 Sony Mobile Communications AB. All rights reserved. Xperia is a trademark of Sony Mobile Communications AB. Other brands,

More information

Corona SDK Device Build Guide

Corona SDK Device Build Guide Corona SDK Device Build Guide November 29, 2009 2009 ANSCA Inc. All Rights Reserved. 1 ANSCA Inc. 2009 ANSCA Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements.

Toad Data Point - Professional Edition. The Toad Data Point Professional edition includes the following new features and enhancements. Toad Data Point Version 3.4 New in This Release November 08, 2013 Contents Toad Data Point - Professional Edition Toad Data Point - Base and Professional Editions Idea Pond Toad Data Point - Professional

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for sftp Release Notes

TIBCO ActiveMatrix BusinessWorks Plug-in for sftp Release Notes TIBCO ActiveMatrix BusinessWorks Plug-in for sftp Release Notes Software Release 1.1.0 January 2015 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide F O R U M N O K I A Series 40 6th Edition SDK, Feature Pack 1 Installation Guide Version Final; December 2nd, 2010 Contents 1 Legal Notice...3 2 Series 40 6th Edition SDK, Feature Pack 1...4 3 About Series

More information

TIBCO Spotfire Web Player Release Notes. Software Release 5.5 May 2013

TIBCO Spotfire Web Player Release Notes. Software Release 5.5 May 2013 TIBCO Spotfire Web Player Release Notes Software Release 5.5 May 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide Using SafeNet Authentication Service as an Identity Provider for SonicWALL Secure Remote Access All information herein is either public information or is

More information

Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers

Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers Version 5.5 August 31, 2013 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone

More information

Cisco UCS Director API Integration and Customization Guide, Release 5.4

Cisco UCS Director API Integration and Customization Guide, Release 5.4 Cisco UCS Director API Integration and Customization Guide, Release 5.4 First Published: November 03, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

TIBCO iprocess Workspace (Windows) Installation

TIBCO iprocess Workspace (Windows) Installation TIBCO iprocess Workspace (Windows) Installation Software Release 11.4.1 September 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH

More information

TIBCO Spotfire Server Release Notes. Software Release April 2014

TIBCO Spotfire Server Release Notes. Software Release April 2014 TIBCO Spotfire Server Release Notes Software Release 6.5.0 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS

More information

SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6. Getting Started Guide

SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6. Getting Started Guide SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6 Getting Started Guide Copyright 2017 SonicWall Inc. All rights reserved. SonicWall is a trademark or registered trademark of SonicWall Inc.

More information

Stonesoft Management Center. Release Notes for Version 5.6.1

Stonesoft Management Center. Release Notes for Version 5.6.1 Stonesoft Management Center Release Notes for Version 5.6.1 Updated: January 9, 2014 Table of Contents What s New... 3 Fixes... 3 System Requirements... 6 Basic Management System Hardware Requirements...

More information

SafeNet MobilePASS+ for Android. User Guide

SafeNet MobilePASS+ for Android. User Guide SafeNet MobilePASS+ for Android User Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep the

More information

SonicWall Global VPN Client Getting Started Guide

SonicWall Global VPN Client Getting Started Guide SonicWall Global VPN Client 4.10 Getting Started Guide Copyright 2017 SonicWall Inc. All rights reserved. SonicWall is a trademark or registered trademark of SonicWall Inc. and/or its affiliates in the

More information

TIBCO OpenSpirit Adapter for Petrel Release Notes

TIBCO OpenSpirit Adapter for Petrel Release Notes TIBCO OpenSpirit Adapter for Petrel Release Notes Software Release 24.0.0 August 2015 ii Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Register ME. Administrator's Guide

Register ME. Administrator's Guide Register ME Administrator's Guide May 2013 www.lexmark.com Contents 2 Contents Overview...3 Configuring Lexmark Register ME...4 Configuring application settings...4 Verifying that the application is configured

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes Software Release 1.0.0 February 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

SafeNet Authentication Service Agent for Cisco AnyConnect Client. Installation and Configuration Guide

SafeNet Authentication Service Agent for Cisco AnyConnect Client. Installation and Configuration Guide SafeNet Authentication Service Agent for Cisco AnyConnect Client Installation and Configuration Guide All information herein is either public information or is the property of and owned solely by Gemalto

More information

Document Signing Certificate Getting Started Guide

Document Signing Certificate Getting Started Guide Certificate Services Document Signing Certificate Getting Started Guide Using the SafeNet Authentication Client: 8.3 Document issue: 1.0 Date of issue: March 2017 For software release 12.1 Document Signing

More information

Ericsson Mobile Organizer 5.1

Ericsson Mobile Organizer 5.1 Preface Welcome to Ericsson Mobile Organizer (EMO) 5.1, which offers a full range of mobile office applications to help you keep up with your important emails, calendar and contacts. EMO 5.1 uses Push

More information

Price List Utilities. For Dynamics CRM 2016

Price List Utilities. For Dynamics CRM 2016 Price List Utilities For Dynamics CRM 2016 Page 1 of 19 Price List Utilities 2016 Copyright Warranty disclaimer Limitation of liability License agreement Copyright 2016 Dynamics Professional Solutions.

More information

TIBCO BusinessConnect Palette Release Notes

TIBCO BusinessConnect Palette Release Notes TIBCO BusinessConnect Palette Release Notes Software Release 6.2.0 August 2014 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

ZL UA Exchange 2013 Archiving Configuration Guide

ZL UA Exchange 2013 Archiving Configuration Guide ZL UA Exchange 2013 Archiving Configuration Guide Version 8.0 January 2014 ZL Technologies, Inc. Copyright 2014 ZL Technologies, Inc.All rights reserved ZL Technologies, Inc. ( ZLTI, formerly known as

More information

Overview. NETRON TECHNICAL NOTE February 2008 Summary

Overview. NETRON TECHNICAL NOTE February 2008 Summary NETRON TECHNICAL NOTE February 2008 Summary The Netron Fusion 3.4 toolset is compatible with Windows Vista (a.k.a. Windows version 6). However, due to changes in the security model, the Installation procedure

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

StoneGate SSL VPN. Release Notes for Version 1.4.5

StoneGate SSL VPN. Release Notes for Version 1.4.5 StoneGate SSL VPN Release Notes for Version 1.4.5 Created: March 3, 2011 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 StoneGate Appliances... 4 Build Version...

More information

EAM Portal User's Guide

EAM Portal User's Guide EAM Portal 9.0.2 User's Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

4. Save as expressly set out herein no license is granted in respect of any intellectual property rights vested in F1000 or other third parties.

4. Save as expressly set out herein no license is granted in respect of any intellectual property rights vested in F1000 or other third parties. Legal information The website F1000.com is operated by Faculty of 1000 Limited, a company registered in England and Wales with Company Number 3739756, with registered offices at Middlesex House, 34-42

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.4 Created: December 17, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

Samsung Theme Designer Quick Start Guide

Samsung Theme Designer Quick Start Guide Samsung Theme Designer Quick Start Guide By Junyoung LEE Published by Samsung Developers Version 2.0.4 May 2012 Change history 13 October 2010 Version 1.0.0 Initial document release 26 November 2010 Version

More information

Last Updated: 14 February 2011 Version 6.5. Page 1

Last Updated: 14 February 2011 Version 6.5. Page 1 Last Updated: 14 February 2011 Version 6.5 Page 1 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current view of Propalms Ltd. on the issues discussed

More information

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018 Compatibility Matrix Good Control and Good Proxy June 4, 2018 Published: 2018-06-04 SWD-20180604161707961 Contents Introduction... 4 Legend... 4 Good Control server... 5 Operating system...5 Database server...5

More information

Relativity Designer Installation Guide

Relativity Designer Installation Guide Liant Software Corporation Relativity Designer Installation Guide Version 5 Copyright 1994-2003 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Compatibility Guide All information herein is either public information or is the property of and owned solely by Gemalto. and/or its subsidiaries who shall have and keep

More information

Upgrading BankLink Books

Upgrading BankLink Books Upgrading BankLink Books Contents Upgrading BankLink Books... 4 Upgrading BankLink Books using the automatic upgrade 4 Upgrading BankLink Books when asked to upgrade 5 Upgrading BankLink Books Page 2 of

More information

TIBCO Spotfire Connector for Oracle MySQL Release Notes. Software Release May 2013

TIBCO Spotfire Connector for Oracle MySQL Release Notes. Software Release May 2013 TIBCO Spotfire Connector for Oracle MySQL Release Notes Software Release 1.0.0 May 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

SafeNet Authentication Manager

SafeNet Authentication Manager SafeNet Authentication Manager Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

TIBCO Kabira Adapter Factory for SNMP Installation. Software Release December 2017

TIBCO Kabira Adapter Factory for SNMP Installation. Software Release December 2017 TIBCO Kabira Adapter Factory for SNMP Installation Software Release 5.9.5 December 2017 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Scan to Digitech v1.0

Scan to Digitech v1.0 Scan to Digitech v1.0 Administrator's Guide June 2009 www.lexmark.com Lexmark and Lexmark with diamond design are trademarks of Lexmark International, Inc., registered in the United States and/or other

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep the sole right to

More information

Device Pack. Network Video Management System Standard Edition. Release Note. Software Version: 9.5a Sony Corporation

Device Pack. Network Video Management System Standard Edition. Release Note. Software Version: 9.5a Sony Corporation Network Video Management System Standard Edition Device Pack Release Note Software Version: 9.5a Revision 1 (Last Modified: December 18, 2017) 2017 Sony Corporation Copyright Notice This document may not

More information

Installation and Configuration Guide for Visual Voic Release 8.5

Installation and Configuration Guide for Visual Voic Release 8.5 Installation and Configuration Guide for Visual Voicemail Release 8.5 Revised October 08, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

SafeNet Authentication Service. Java Authentication API Developer Guide

SafeNet Authentication Service. Java Authentication API Developer Guide SafeNet Authentication Service Java Authentication API Developer Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries who

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Push OTP Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have

More information

SonicWall SonicOS 5.9

SonicWall SonicOS 5.9 SonicWall SonicOS 5.9 April 2017 This provides instructions for upgrading your SonicWall network security appliance to SonicOS 5.9 from a previous release. NOTE: On SonicWall TZ series and some smaller

More information

S60 3rd Edition SDK for Symbian OS Installation Guide

S60 3rd Edition SDK for Symbian OS Installation Guide S60 3rd Edition SDK for Symbian OS Installation Guide Version 1.0 December 22, 2005 l a t f o r m S60 p DN0539831 S60 3rd Edition SDK for Symbian OS Installation Guide 2 Legal Notice Copyright 2005 Nokia

More information

Xperia Panel certification requirements Sony Ericsson

Xperia Panel certification requirements Sony Ericsson Specification April 2009 Xperia Panel certification requirements Sony Ericsson Preface Sony Ericsson Developer World At www.sonyericsson.com/developer, developers find the latest technical documentation

More information

Polycom Updater Release Notes Applies to SoundStation IP 6000 and IP 7000

Polycom Updater Release Notes Applies to SoundStation IP 6000 and IP 7000 Polycom Updater 5.0.2 Release Notes Applies to SoundStation IP 6000 and IP 7000 Updater 5.0.2 May 2012 3804-11069-502 Trademarks 2012, Polycom, Inc. All rights reserved. POLYCOM, the Polycom "Triangles"

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries who shall have and keep the

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

Cisco UCS Virtual Interface Card Drivers for Windows Installation Guide

Cisco UCS Virtual Interface Card Drivers for Windows Installation Guide Cisco UCS Virtual Interface Card Drivers for Windows Installation Guide First Published: 2011-09-06 Last Modified: 2015-09-01 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

Stellar WAB to PST Converter 1.0

Stellar WAB to PST Converter 1.0 Stellar WAB to PST Converter 1.0 1 Overview Stellar WAB to PST Converter software converts Outlook Express Address Book, also known as Windows Address Book (WAB) files to Microsoft Outlook (PST) files.

More information

FUJITSU Cloud Service S5 Certificate Management

FUJITSU Cloud Service S5 Certificate Management FUJITSU Cloud Service S5 Certificate Management This guide describes the process for reissuing, importing and exporting Certificates in the FUJITSU Cloud Service S5 How to Manage Certificates For security

More information

TIBCO BusinessConnect EBICS Protocol Installation and Configuration. Software Release 1.0 December 2011

TIBCO BusinessConnect EBICS Protocol Installation and Configuration. Software Release 1.0 December 2011 TIBCO BusinessConnect EBICS Protocol Installation and Configuration Software Release 1.0 December 2011 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14

Installation and Configuration Manual. Price List Utilities. for Microsoft Dynamics CRM Dynamics Professional Solutions Ltd 1 / 14 Installation and Configuration Manual Price List Utilities for Microsoft Dynamics CRM 2011 Dynamics Professional Solutions Ltd 1 / 14 Copyright Warranty disclaimer Limitation of liability License agreement

More information

StoneGate SSL VPN Release Notes for Version 1.2.1

StoneGate SSL VPN Release Notes for Version 1.2.1 StoneGate SSL VPN Release Notes for Version 1.2.1 Created: February 25, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

LinkOne WebView Release Notes 3.3

LinkOne WebView Release Notes 3.3 3.3 Copyright 2010 by Mincom. All rights reserved. This document is copyright and may contain proprietary information. Except as expressly permitted under relevant copyright law, neither this document,

More information

Secure Held Print Jobs. Administrator's Guide

Secure Held Print Jobs. Administrator's Guide Secure Held Print Jobs Administrator's Guide April 2013 www.lexmark.com Contents 2 Contents Overview... 3 Configuring Secure Held Print Jobs...4 Configuring and securing the application... 4 Using Secure

More information

SonicWall Mobile Connect ios 5.0.0

SonicWall Mobile Connect ios 5.0.0 SonicWall Mobile Connect ios 5.0.0 October 2017 These release notes provide information about the SonicWall Mobile Connect ios 5.0.0 release. Topics: About Mobile Connect ios 5.0.0 Supported Platforms

More information

XDCAM Browser. Installation Guide Before operating the unit, please read this manual thoroughly and retain it for future reference.

XDCAM Browser. Installation Guide Before operating the unit, please read this manual thoroughly and retain it for future reference. 4-261-700-16 (1) XDCAM Browser Installation Guide Before operating the unit, please read this manual thoroughly and retain it for future reference. 2010 Sony Corporation NOTICE TO USERS Documentation 2010,

More information

SafeSign Identity Client Standard

SafeSign Identity Client Standard This document contains information of a proprietary nature. No part of this manual may be reproduced or transmitted in any form or by any means electronic, mechanical or otherwise, including photocopying

More information

Access Control 5.3 Implementation Considerations for Superuser Privilege Management ID-Based Firefighting versus Role-Based Firefighting Applies to:

Access Control 5.3 Implementation Considerations for Superuser Privilege Management ID-Based Firefighting versus Role-Based Firefighting Applies to: Access Control 5.3 Implementation Considerations for Superuser Privilege Management ID-Based Firefighting versus Role-Based Firefighting Applies to: Access Control 5.3 Summary GRC Access Control identifies

More information

Enterprise Vault Requesting and Applying an SSL Certificate and later

Enterprise Vault Requesting and Applying an SSL Certificate and later Enterprise Vault Requesting and Applying an SSL Certificate 10.0.3 and later Enterprise Vault : Requesting and Applying an SSL Certificate Last updated: 2018-04-12. Legal Notice Copyright 2018 Veritas

More information

A Foxit Software Company White Paper

A Foxit Software Company White Paper A Foxit Software Company White Paper www.foxitsoftware.com Foxit Software Company, LLC. June 2009 TABLE OF CONTENTS Abstract... 3 Introduction... 4 The Need for Data Security Policies... 4 PDF in the Enterprise...

More information

Mobile Phone Programming

Mobile Phone Programming agenda Symbian OS Introduction Why Symbian? Overview Symbian Development considerations UI Platforms Series 60/80/90, UIQ etc. agenda Development for S60 Available IDE s Getting the SDK and using the Carbide.c++

More information