MS Active Sync: Sync with External Memory Files

Size: px
Start display at page:

Download "MS Active Sync: Sync with External Memory Files"

Transcription

1 Mindfire Solutions MS Active Sync: Sync with External Memory Files Author: Rahul Gaur Mindfire Solutions,

2 Mindfire Solutions Table of Contents Overview 3 Target Audience 3 Conventions Introduction.4 2. RAPI & ActiveSync 5 3. Tools & SDKs Used 6 4. Sample Application Creating Sync Service Providers (SSP) Device Side SSP Desktop Side SSP Registering Desktop SSP Registering Device SSP Synchronizing Conclusion.24

3 Mindfire Solutions Overview How do I quickly start with Active Sync Technology? Can my RAPI code be started when Active Sync starts? Can my RAPI executable be integrated with Active Sync as a Conduit? These are some of the questions most of pocket pc developers need to answer when they start dealing with a sync process of higher complexity. In this document, we have tried to compile our experience of developing and integrating RAPI with ActiveSync, with an aim to provide help to our developer community which faces similar situations in due course of windows mobile application development. Target Audience This document is intended for Windows CE developers who are familiar with Remote APIs (RAPIs) and are looking for a quick way of integrating their RAPI Code with Microsoft Active Sync. Conventions Throughout this document, any important text is in Bold-Times New Roman Font. The code snippets are in Courier New Font with code comments in italics.

4 Mindfire Solutions Introduction Active Sync Conduits are used for PocketPCs to transfer information from PC to PocketPC and vice versa. It can be sync of data or transfer of files or whatever you may want your conduit to achieve. Data synchronization is different from data transfer. A data transfer simply transfers a set of data between two devices without doing any validations, no checking for differences between data on source and destination. Data synchronization, on the other hand, updates the data on both sides based on relevant changes (addition, updating, and deletion) since the last synchronization. Synchronizing application data implies that there are two applications interested in the data being synchronized. One application resides on the device, and the other on the user s desktop computer. Each of these applications implements some mechanism for storing a user s data. The particular data repository for each application is called a Data Store. As a Win-CE developer, one has two options when it comes to Data Synchronization: a) Remote APIs The Win-CE Remote API provides a way for Desktop PC applications to access a connected Win-CE device. These APIs can be used to read files, databases & even registry of the device. One can also write to files, databases, or registry entries on the device. The application, an exe file, resides on the user s desktop computer b) Microsoft ActiveSync Conduit This conduit technology is based on the client/server architecture. The server is implemented by the Win-CE OS and is called ActiveSync Service Manager. It is one of the components of the Win-CE services package that a user installs on a Desktop PC when configuring a device such as a PocketPC or a Smartphone. The clients are called the ActiveSync Service Providers. These are actually two self-registering Dynamic Link Libraries (dll), one residing on the device & the other on the user s PC. The application programmer has to program these two service providers in order to achieve his goal. Majority of the Win-CE developers go with the first choice. The reason is that many Pocket-PC & Smartphone users keep there Data on External Memory like SD Card. ActiveSync simply fails to sync from the External Memory.

5 Mindfire Solutions RAPI and ActiveSync The sync should occur whenever ActiveSync runs, even when we use the RAPI code, otherwise it defeats the purpose of sync. In order to run the RAPI exe when ActiveSync starts we have to make an entry in the Window s Registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows CE Services\AutoStartOnConnect Figure 1: Setting RAPI exe to run with ActiveSync This though has a limitation that we do not see this sync application as a conduit of ActiveSync. Hence the user may find it strange that something which is not showing up in ActiveSync is working with it. Hence, now we have to integrate RAPI app with ActiveSync so that user could manage the sync process using ActiveSync and utilize the powers it shares. A simple way to do it is: 1. Create a Simple File Sync Provider using ActiveSync Application Wizard which creates a dummy file to be used for synching at both ends. 2. Once the ActiveSync Conduit starts it starts our RAPI Application. 3. Wait & Hold the ActiveSync Conduit in its Start State until the processing of RAPI Application completes. 4. Once the RAPI Application completes its execution and exits, it notifies the ActiveSync Conduit so it can continue with its own processing 5. In the End State of the ActiveSync, Conduit checks and deletes the dummy files from both Desktop & Device The following article discusses how the said ideas were transformed into a success by discussing a sample example in detail.

6 Mindfire Solutions Tools & SDKs Used a) Microsoft Embedded Visual C++ with Service Pack 3 b) Microsoft Visual C c) Microsoft Pocket PC 2003 SDK d) Microsoft ActiveSync Sample Application Firstly one needs an Application Wizard File so that VC++ 6 can create ActiveSync service providers. The file is called SyncWiz.awx. It can be found in the directory \Windows CE Tools\wce420\POCKET PC 2003\Activesync\Activesync wizard Figure 2: ActiveSync Wizard File Location

7 Mindfire Solutions Copy the file SyncWiz.awx to \Microsoft Visual Studio\Common\MSDev98\Template directory Figure 3: ActiveSync Wizard File Destination 4.1 Creating Sync Service Providers (SSP) Now we are ready to create our ActiveSync Service Providers. Start Microsoft Visual C++. Click on File & then click on New Figure 4: Create New ActiveSync Project in Visual C++ 6.0

8 Mindfire Solutions Select Projects Tab and click on ActiveSync Service Provider Wizard. We name the project as SyncApp and set the location to C:\ drive Figure 5: ActiveSync Project Named SyncApp Click on the OK Button. The Wizard starts and displays the Step 1 dialog box. Select the radio button displaying a simple file sync provider text Figure 6: Select Service Provider as File Sync Provider

9 Mindfire Solutions Click on the Next Button. The Wizard now displays the Step 2 dialog box. Change the different editbox texts as shown in the figure below. This step generally displays the information needed to register the SSP (Sync Service Provider) with ActiveSync. Figure 7: Information Type for the SSPs Click on the Next Button. The Wizard now displays the Step 3 dialog box. It displays the options regarding the polling of the service providers by ActiveSync manager. Select the radio button displaying a poll my provider periodically (defaults to 5 secs) text. We will later on change this in the code Figure 8: Select the Polling Frequency

10 Mindfire Solutions Click on the Finish Button. The wizard now shows the details of this project. Figure 9: Details of Our Device Side & Desktop Side Projects As one can see the Wizard generates two projects :- a) SyncApp.dll (Desktop Side SSP) b) DevSyncApp.dll (Device Side SSP) The two projects are now discussed in detail followed by their registration & configuration on Desktop & Device respectively.

11 Mindfire Solutions Device Side SSP Project Both the projects are meant for Visual C++, however if we try to open the Device Side SSP(DevSyncApp.dsw) project in VC++ it displays an Error Message Box. Figure 10: Opening Device Side Project in VC Since it s a Project for building a Win-CE DLL we can use Embedded Visual C++ to help us overcome this issue. Start evc++, click on File & then click on New Figure 11: Creating the Same Device Side Project in evc Step 1

12 Mindfire Solutions Select Projects Tab and click on WCE Dynamic-Link Library. We name the project as DevSyncApp and set the location to C:\SYNCAPP\DEVICE\ Figure 12: Creating the Same Device Side Project in evc Step 2 Click the OK Button and select An empty Windows CE DLL project Figure 13: Creating the Same Device Side Project in evc Step 3

13 Mindfire Solutions Clicking on Finish Button will display the New Project Information dialog. Click OK button to complete the Wizard. Now we have an empty project with an output same as that of Device Side SSP Project i.e. DevSyncApp.dll. We now have to add the corresponding files to this project namely: a) basefolder.h b) DevSyncApp.h c) DevSyncAppFldr.h d) DevSyncAppobjhand.h e) DevSyncApp.cpp f) DevSyncAppFldr.cpp g) DevSyncAppobjhand.cpp h) DevSyncApp.def After adding these files set Active Configuration as Win32(WCE ARMV4) Release, Active Platform as POCKET PC 2003 and Default Device as Pocket PC 2003 Device and build the Project. The output is DevSyncApp.dll in C:\SyncApp\Device\ARMV4Rel directory. In case you get the following error :- fatal error C1083: Cannot open include file: 'cesync.h': No such file or directory you have to set the following path :- \Windows CE Tools\wce420\POCKET PC 2003\Activesync\Inc in the Additional Include Directories: option. Figure 14: Additional Include Directories for evc++ 4.0

14 Mindfire Solutions More changes are required in this Device Side SSP Project namely: a) In DevSyncAppFldr.cpp, change the function CSyncAppFolder::Initialize to: BOOL CSyncAppFolder::Initialize(IReplObjHandler** ppobjhandler, UINT upartnerbit) if(ppobjhandler == NULL) return FALSE; *ppobjhandler = new CSyncAppObjHandler(this); if(*ppobjhandler == NULL) return FALSE; // Store partner info. Which partner are we // connected to - first or second partner. if(upartnerbit & 0x01) m_upartner = 0; else if(upartnerbit & 0x02) m_upartner = 1; return TRUE; b) In DevSyncApp.cpp change the CSyncAppStore::ReportStatus function to: BOOL CSyncAppStore::ReportStatus(LPWSTR lpszobjtype, UINT ucode, UINT uparam) // TODO: Called to inform provider of sync events. // Add code to handle these events. int i = 0; switch(ucode) case RSC_BEGIN_SYNC: break; case RSC_END_SYNC: //Delete Both the Files When Sync Completes for(i = 0; i < SYNCAPP_NUM_FOLDERS; i++) CSyncAppFolder* pfolder = (CSyncAppFolder*)m_pFolders[i]; if(pfolder) ::DeleteFile( pfolder->getdatafilename() ); ::DeleteFile( pfolder->getsyncfilename() ); break; return TRUE;

15 Mindfire Solutions c) Build the Project. You can now delete DevSyncApp.dsw & DevSyncApp.dsp as they are no longer needed. The obvious question in one s mind would be; what does our device side project actually do? And the answer is, it just deletes the files on device after the Active Sync completes itself on the device side. Now we can concentrate on Desktop Side. 4.3 Desktop Side SSP Project This project is for making Self-Registering DLL SyncApp.dll. To avoid registration of this dll each time the project is build, go to the Custom Build tab of the Project Settings and delete the text in: a) Description box b) Commands box c) Outputs box Make sure that the Settings For: choice box has All Configurations Selected. Also set the Active Project Configuration as Win32 Release Figure 15: Deleting the Commands in Custom Build Tab in VC In case the DLL gets registered accidentally, you can run the following command to

16 Mindfire Solutions unregister it: regsvr32 /s /u "C:\SyncApp\Release\SyncApp.dll" Now for the changes required in this Desktop Side SSP Project. We assume that our RAPI Application named SampleRAPIApp.exe resides in the C:\ directory a) In SyncAppStore.h, modify the class definition of CSyncAppStore by adding some variables & functions as given below :- private: //A variable that stores the Time Gap value in milliseconds //so that our RAPI application does not run again //in one ActiveSync Session; ULONG m_synctimegap; //Its a check variable //In case the SampleRAPIApp.exe is not found //this variable will prevent the Active Sync from //running into an infinite while loop in RSC_ENDCHECK bool m_stopsync; //Stores the time value in millisecond ULONG m_timervalue; public: //A Function that starts the RAPI Application void StartRapiApp(); //A Function that makes our Application Wait for the RAPI // Application to finish bool WaitForRapiApp(); //Gets the time in millisecond unsigned long GetCurrentTimeMilli() return GetTickCount(); b) Many changes are required in SyncAppStore.cpp namely :- 1. In the CSyncAppStore constructor, add following m_synctimegap = 5000; m_timervalue = 0; m_stopsync = false; 2. In the CSyncAppStore::GetStoreInfo function change pinfo->uflags to pinfo->uflags = SCF_SINGLE_THREAD; 3. Add the definition of CSyncAppStore::StartRapiApp as given below

17 Mindfire Solutions void CSyncAppStore::StartRapiApp() //First find whether it is already running //If yes then set it as foreground window and If no //then start it HWND hcal = FindWindow(NULL, "SampleRAPIApp"); if(hcal!= NULL) SetForegroundWindow(hCal); else UINT returnval = WinExec("C:\\SampleRAPIApp.exe", SW_SHOW); //Not Successful //Set the check variable as true as it will //prevent the Active Sync to run into an Empty //Loop if(returnval <= 31) m_stopsync = true; 4. Add the definition of CSyncAppStore::WaitForRapiApp as given below bool CSyncAppStore::WaitForRapiApp() HKEY htestkey; BYTE buffer[128]; DWORD rec = 0, size = 128; //Open the Key HKEY_LOCAL_MACHINE\\SOFTWARE\\SampleRapiApp if( RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\SampleRapiApp\\"), 0, KEY_READ, &htestkey) == ERROR_SUCCESS ) memset(buffer, NULL, size); //Query the Value of RAPIAPPSTATE RegQueryValueEx(hTestKey,"RAPIAPPSTATE", NULL, &rec, buffer, &size); RegCloseKey(hTestKey); //If ON return true if( strcmp( (char*)buffer, "ON" ) == 0 ) return true; return false; 5. Changes in CSyncAppStore::ReportStatus function. This function is called by the

18 Mindfire Solutions ActiveSync Manager to report the status on the sync process. Three statuses are important to us - RSC_END_SYNC, RSC_BEGIN_CHECK & RSC_END_CHECK. The modifications are as follows case RSC_BEGIN_CHECK: //Check the m_timervalue variable. If the next call is within the // m_synctimegap period, SampleRAPIApp.exe should not be called if( GetCurrentTimeMilli() - m_timervalue < m_synctimegap ) //We don't need to start the Active Sync session m_stopsync = true; else //Setting the Timer Value to zero again m_timervalue = 0; //Yes we need to start the Active Sync session m_stopsync = false; break; //If m_stopsync = false, start our RapiApp if(!m_stopsync) StartRapiApp(); case RSC_END_CHECK: if(!m_stopsync) //Holding Application from completing itself // until & unless Our RAPI Application completes while( WaitForRapiApp() ) Sleep(200); //Our Application is ON, Checking it Again //This is done in case some failure occurs //while reading the registry or the App //accidentally exits, SampleRAPIApp is the //caption name on dialog based RAPI App if(!findwindow(null, "SampleRAPIApp") ) //We Break out break; //Get the time in millisecond m_timervalue = GetCurrentTimeMilli(); break;

19 Mindfire Solutions case RSC_END_SYNC: int i = 0; CSyncAppFolder* pappfolder =(CSyncAppFolder*)m_pFolders[i]; //Delete the Files When Sync Completes for(i = 0; i < SYNCAPP_NUM_FOLDERS; i++) ::DeleteFile( pappfolder->getsyncfilename() ); The Desktop Side is also complete. Build the project. The output would be SyncApp.dll in C:\SyncApp\Release folder. What does our desktop side project actually do? Without diving deep into the ActiveSync s technological jargon, our desktop project does a very simple task - It calls the RAPI Application and holds the Desktop Side SSP from completing itself until RAPI code returns. For this project one can say that the two notifications RSC_BEGIN_CHECK & RSC_END_CHECK together constitute one ActiveSync Session. In RSC_BEGIN_CHECK we call SampleRAPIApp.exe. This executable opens a Registry Key - HKEY_LOCAL_MACHINE\SOFTWARE\SampleRapiApp. This Registry Key is made by the Desktop Installer which installs our RAPI application & Desktop Side SSP on the user's PC. This Key has a String Value of RAPIAPPSTATE with default value OFF. For trial purpose one can create the said registry by using regedit*. When our SampleRAPIApp.exe starts it sets RAPIAPPSTATE as ON and when it ends it sets RAPIAPPSTATE as OFF. After RSC_BEGIN_CHECK the ActiveSync Manager sets the status as RSC_END_CHECK. It is in this notification or status that we hold our application from completing itself. As long as the RAPIAPPSTATE is set to ON, our application is struck in a while loop. As soon as the SampleRAPIApp.exe completes its task, the RAPIAPPSTATE is set to OFF and the processing of RSC_END_CHECK completes. Ultimately when the status of the ActiveSync Session is RSC_END_SYNC, we delete the desktop side file (sample.txt). These two projects (Desktop and Device side) need to be properly configured and registered so that the ActiveSync Conduit can actually work. Since we won t discuss any Desktop or Device Side Installer, some points need to be kept in mind before configuring the two projects: 1) SampleRAPIApp.exe is in C:\ drive 2) There is no Registry entry for SampleRAPIApp.exe in

20 Mindfire Solutions HKEY_ LOCAL_MACHINE\SOFTWARE\Microsoft\Windows CE Services\AutoStartOnConnect 3) There is a Registry Key by the name of SampleRapiApp in HKEY_ LOCAL_MACHINE\SOFTWARE with a String Value of RAPIAPPSTATE set to OFF 4) The Test Machine should be in Administrator Mode so that the registries can be easily read & modified *Possible only in Administrator mode 4.4 Registering Desktop Side SSP It can be easily registered from the command line by using following command regsvr32 /s "C:\SyncApp\Release\SyncApp.dll" For unregistering use following command regsvr32 /s /u "C:\SyncApp\Release\SyncApp.dll" 4.5 Registering Device Side SSP 1. Copy the DevSyncApp.dll from C:\SyncApp\Device\ARMV4Rel folder to the device s root directory manually using the ActiveSync Mobile Devices Folder window. 2. Open the file register.bat in C:\SyncApp\Device folder and enter the complete path for the cabwiz.exe. The cabwiz.exe file can be found under \Windows CE Tools\wce420\Pocket PC 2003\Tools\ directory. 3. Run the register.bat file (Make sure that the device is connected) which will create all the required registry entries on the device. Now the Device Side SSP is also registered. For unregistering it go to the Remove Programs on Device. Select CompanyName SyncApp & click on Remove. This will remove the corresponding registry entries from the device. Now delete DevSyncApp.dll from the device s root directory.

21 Mindfire Solutions Synchronizing When both Desktop & Device Side SSPs are registered, disconnect & re-connect the device. Select Standard Partnership Figure 16: Selecting the Standard Partnership Select Synchronize with this desktop computer Figure 17: Selecting Desktop or Server for Synchronization

22 Mindfire Solutions Enter a unique name for your device Figure 18: Entering a Unique Name for the Device Select your Active Sync Service Provider(SyncApp) and click on the Next Button Figure 19: Selecting Our SyncApp Service Provider

23 Mindfire Solutions The setup for enabling Standard Partnership is complete. Click on the Finish Button Figure 20: Selecting Our SyncApp Service Provider The SyncApp Conduit starts and in turns call our RAPI Application. You can start your RAPI application in a minimized state so that the user is not disturbed Figure 22: Our SyncApp Service Provider Running

24 Mindfire Solutions Conclusion Hope you found a quick and a convinient way of integarting an existing RAPI code into an ActiveSync Conduit. If you have any questions, please contact us and we would be glad to extend our support where we can. ========================= THE END ========================= Author of this article is associated with Mindfire Solutions ( which is an offshore software development company and provides customized software solutions to global clients.

FAQ CE 5.0 and WM 5.0 Application Development

FAQ CE 5.0 and WM 5.0 Application Development FAQ CE 5.0 and WM 5.0 Application Development Revision 03 This document contains frequently asked questions (or FAQ s) related to application development for Windows Mobile 5.0 and Windows CE 5.0 devices.

More information

Capture Pro Software FTP Server System Output

Capture Pro Software FTP Server System Output Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

HOST INSTALLATION GUIDE

HOST INSTALLATION GUIDE HOST INSTALLATION GUIDE Netop Mobile and Embedded Version 10.50 Copyright 1981-2015 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments

More information

Avalanche Remote Control User Guide. Version 4.1.3

Avalanche Remote Control User Guide. Version 4.1.3 Avalanche Remote Control User Guide Version 4.1.3 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

VRC 7900/8900 Avalanche Enabler User s Manual

VRC 7900/8900 Avalanche Enabler User s Manual VRC 7900/8900 Avalanche Enabler User s Manual WLE-VRC-20030702-02 Revised 7/2/03 ii Copyright 2003 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite

More information

Smartphone Development Tutorial

Smartphone Development Tutorial Smartphone Development Tutorial CS 160, March 7, 2006 Creating a simple application in Visual Studio 2005 and running it using the emulator 1. In Visual Studio 2005, create a project for the Smartphone

More information

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS

STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS data analysis data mining quality improvement web-based analytics Notes STATISTICA VERSION 11 CONCURRENT NETWORK LICENSE WITH BORROWING INSTALLATION INSTRUCTIONS 1. The installation of the Concurrent network

More information

Python for Series 60 Platform

Python for Series 60 Platform F O R U M N O K I A Getting Started with Python for Series 60 Platform Version 1.2; September 28, 2005 Python for Series 60 Platform Copyright 2005 Nokia Corporation. All rights reserved. Nokia and Nokia

More information

Manage CE. Version 1

Manage CE. Version 1 Manage CE Version 1 Table of Contents Introduction... 3 Overview of Manage CE... 3 The Manage CE Environment... 4 About Synchronizing Content... 5 Technical Support... 7 Installing Manage CE... 8 Hardware/Software

More information

NAS 253 Introduction to Backup Plan

NAS 253 Introduction to Backup Plan NAS 253 Introduction to Backup Plan Create backup jobs using Backup Plan in Windows A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Create backup

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Configuration Guide. Remote Backups How-To Guide. Overview

Configuration Guide. Remote Backups How-To Guide. Overview Configuration Guide Remote Backups How-To Guide Overview Remote Backups allow you to back-up your data from 1) a ShareCenter TM to either a Remote ShareCenter or Linux Server and 2) Remote ShareCenter

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Microsoft Project Server Integration with SharePoint 2010

Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server Integration with SharePoint 2010 Microsoft Project Server 2010: brings together the business collaboration platform services of SharePoint Server 2010 with structured execution

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

Installing FileMaker Pro 11 in Windows

Installing FileMaker Pro 11 in Windows Installing FileMaker Pro 11 in Windows Before you begin the installation process, please exit other open programs and save your work. Installation notes Before you install FileMaker Pro, review the following

More information

Remote Management System

Remote Management System RMS Copyright and Distribution Notice November 2009 Copyright 2009 ARTROMICK International, Inc. ALL RIGHTS RESERVED. Published 2009. Printed in the United States of America WARNING: ANY UNAUTHORIZED

More information

NetIQ Advanced Authentication Framework - Administrative Tools. Installation Guide. Version 5.1.0

NetIQ Advanced Authentication Framework - Administrative Tools. Installation Guide. Version 5.1.0 NetIQ Advanced Authentication Framework - Administrative Tools Installation Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 NetIQ Advanced Authentication

More information

Getting Started with STATISTICA Enterprise Programming

Getting Started with STATISTICA Enterprise Programming Getting Started with STATISTICA Enterprise Programming 2300 East 14th Street Tulsa, OK 74104 Phone: (918) 749 1119 Fax: (918) 749 2217 E mail: mailto:developerdocumentation@statsoft.com Web: www.statsoft.com

More information

CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE

CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE User Guide CONTACTS SYNCHRONIZER FOR IPAD USER GUIDE Product Version: 1.0 CONTENTS 1. INTRODUCTION...4 2. INSTALLATION...5 2.1 DESKTOP INSTALLATION...5 2.2 IPAD INSTALLATION...9 3. USING THE CONTACTS SYNCHRONIZER

More information

Developing, Deploying, and Debugging Applications on Windows Embedded Standard 7

Developing, Deploying, and Debugging Applications on Windows Embedded Standard 7 Developing, Deploying, and Debugging Applications on Windows Embedded Standard 7 Contents Overview... 1 The application... 2 Motivation... 2 Code and Environment... 2 Preparing the Windows Embedded Standard

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation User Guide for OpenDrive Application v1.6.0.4 for MS Windows Platform 20150430 April 2015 Table of Contents Installation 4 Standard Installation Unattended Installation Installation (cont.) 5 Unattended

More information

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration Installation Instruction STATISTICA Concurrent Network License with Borrowing Domain Based Registration Notes: ❶ The installation of the Concurrent network version entails two parts: a) a server installation,

More information

Networking Best Practices Guide. Version 6.5

Networking Best Practices Guide. Version 6.5 Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form

More information

CentreWare Internet Services Setup and User Guide. Version 2.0

CentreWare Internet Services Setup and User Guide. Version 2.0 CentreWare Internet Services Setup and User Guide Version 2.0 Xerox Corporation Copyright 1999 by Xerox Corporation. All rights reserved. XEROX, The Document Company, the digital X logo, CentreWare, and

More information

Getting Started. Install the Omni Mobile Client

Getting Started. Install the Omni Mobile Client Getting Started This Quick Start Guide is for Windows Mobile Smart Phones (no touch-screen support) devices. There is a separate Quick Start Guide for Pocket PC and Windows Mobile touch-screen PDA and

More information

Global Image Management System For epad-vision. User Manual Version 1.10

Global Image Management System For epad-vision. User Manual Version 1.10 Global Image Management System For epad-vision User Manual Version 1.10 May 27, 2015 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements 3 3. GIMS-Server

More information

SAM Backup and Restore Guide. SafeNet Integration Guide

SAM Backup and Restore Guide. SafeNet Integration Guide SAM Backup and Restore Guide SafeNet Integration Guide April 2011 Introduction Copyright 2011 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

for Android Windows Desktop and Conduit Quick Start Guide

for Android Windows Desktop and Conduit Quick Start Guide for Android Windows Desktop and Conduit Quick Start Guide HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

DocumentsCorePack Client

DocumentsCorePack Client DocumentsCorePack Client for MS CRM 2015 v.7.3 - January 2015 Client Installation Guide (How to install and configure DocumentsCorePack Client for MS CRM 2015) The content of this document is subject to

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Sync Exchange for MS Access Conduit for Windows Version 4 Manual

Sync Exchange for MS Access Conduit for Windows Version 4 Manual Sync Exchange for MS Access Conduit for Windows Version 4 Manual Revision Date 11/30/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Configuration of Microsoft Time Server

Configuration of Microsoft Time Server APPLICATION N0TE ST-0123 November 16, 2005 Product: ShoreTel System System version: ShoreTel 6 Configuration of Microsoft Time Server Correctly configuring a time server that works is important so the

More information

Getting Started with the LabVIEW Mobile Module Version 2009

Getting Started with the LabVIEW Mobile Module Version 2009 Getting Started with the LabVIEW Mobile Module Version 2009 Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that

More information

Pocket ESA Network Server Installation

Pocket ESA Network Server Installation Pocket ESA Network Server Installation This document details the installation and configuration of the networked version of Pocket ESA on a computer with Microsoft Windows XP/2000. Installation After agreeing

More information

How to Synchronize your Windows CE or Pocket PC Calendar with Microsoft Outlook and MyFAU. PART I: Backup Data, Install Sun ONE Sync Software

How to Synchronize your Windows CE or Pocket PC Calendar with Microsoft Outlook and MyFAU. PART I: Backup Data, Install Sun ONE Sync Software How to Synchronize your Windows CE or Pocket PC Calendar with Microsoft Outlook and MyFAU These procedures illustrate the installation and configuration of Sun ONE synchronization software needed to synchronize

More information

Peachtree Installation

Peachtree Installation Peachtree Installation Quick Tips for Network Install Use the following tips to help you install Peachtree on a network: Always install Peachtree FIRST on the computer that will store your Peachtree company

More information

Capture Pro Software FTP Server Output Format

Capture Pro Software FTP Server Output Format Capture Pro Software FTP Server Output Format Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible

More information

Install Guide for Time Matters and Billing Matters 11.0

Install Guide for Time Matters and Billing Matters 11.0 Install Guide for Time Matters and Billing Matters 11.0 Copyright and Trademark Notice LexisNexis, the Knowledge Burst logo, Lexis, lexis.com, Shepard's, Shepardize, martindale.com and Martindale-Hubbell

More information

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes

More information

PTC Integrity Eclipse and IBM Rational Development Platform Guide

PTC Integrity Eclipse and IBM Rational Development Platform Guide PTC Integrity Eclipse and IBM Rational Development Platform Guide The PTC Integrity integration with Eclipse Platform and the IBM Rational Software Development Platform series allows you to access Integrity

More information

SharePoint AD Information Sync Installation Instruction

SharePoint AD Information Sync Installation Instruction SharePoint AD Information Sync Installation Instruction System Requirements Microsoft Windows SharePoint Services V3 or Microsoft Office SharePoint Server 2007. License management Click the trial link

More information

NetIQ Advanced Authentication Framework - Password Filter. Installation Guide. Version 5.1.0

NetIQ Advanced Authentication Framework - Password Filter. Installation Guide. Version 5.1.0 NetIQ Advanced Authentication Framework - Password Filter Installation Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 System Requirements 4 Installing

More information

Moxa Device Manager 2.0 User s Guide

Moxa Device Manager 2.0 User s Guide First Edition, March 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. Moxa Device Manager 2.0 User Guide The software described in this manual

More information

MetroPro Remote Access OMP-0476F. Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455

MetroPro Remote Access OMP-0476F. Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455 MetroPro Remote Access OMP-0476F Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455 Telephone: (860) 347-8506 E-mail: inquire@zygo.com Website: www.zygo.com ZYGO CUSTOMER SUPPORT

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Getting to Know the Tools

Getting to Know the Tools Getting to Know the Tools CHAPTER 3 IN THIS CHAPTER Using SQL Server Management Studio One main limitation of the SQL CE 2.0 database released in 2002 was the need to manage the database either using a

More information

Administration guide. Host software WinCCU Installation. Complete gas volume and energy data management

Administration guide. Host software WinCCU Installation. Complete gas volume and energy data management Administration guide Host software WinCCU Installation Complete gas volume and energy data management Contents 1 Introduction... 1 Safety first... 1 Warning... 1 Typographic conventions... 1 Product versioning...

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

EAE-MS SCCAPI based Version Control System

EAE-MS SCCAPI based Version Control System EAE-MS SCCAPI based Version Control System This document is an implementation guide to use the EAE-MS SCCAPI based Version Control System as an alternative to the existing EAE Version Control System. The

More information

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide

Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide INFOIMAGE FOLDER ON WINDOWS NT Connector for Microsoft Exchange Unisys Getting Started Guide Copyright 1999 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.

More information

Considerations for Mobile Application Development

Considerations for Mobile Application Development Intermec Technologies Considerations for Mobile Application Development Developer Support, 2012 Intermec Technologies 1/3/2012 Table of Contents What is an AKU?... 3 Device OS / IVA (SSPB)... 3 Operating

More information

Hyperoo 2.0 A (Very) Quick Start

Hyperoo 2.0 A (Very) Quick Start Hyperoo 2.0 A (Very) Quick Start Download and install the Hyperoo 2.0 beta Hyperoo 2.0 is a client/server based application and as such requires that you install both the Hyperoo Client and Hyperoo Server

More information

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide Live Maps for System Center Operations Manager 2007 R2 v6.2.1 Installation Guide CONTENTS Contents... 2 Introduction... 4 About This Guide... 4 Supported Products... 4 Understanding Live Maps... 4 Live

More information

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x Out n About! for Outlook Electronic In/Out Status Board Administrators Guide Version 3.x Contents Introduction... 1 Welcome... 1 Administration... 1 System Design... 1 Installation... 3 System Requirements...

More information

TECHNICAL NOTE TNOI27

TECHNICAL NOTE TNOI27 TECHNICAL NOTE TNOI27 Title: FTP Synchronization Product(s): G3, DSP and Enhanced Modular Controller ABSTRACT The purpose of this document is to describe the G3 s FTP feature and the configuration steps

More information

BillQuick Agent 2010 Getting Started Guide

BillQuick Agent 2010 Getting Started Guide Time Billing and Project Management Software Built With Your Industry Knowledge BillQuick Agent 2010 Getting Started Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

DS License Server V6R2013x

DS License Server V6R2013x DS License Server V6R2013x DS License Server V6R2013x Installation and Configuration Guide Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology

More information

Remote Access Server - Dial-Out User s Guide

Remote Access Server - Dial-Out User s Guide Remote Access Server - Dial-Out User s Guide 95-2345-05 Copyrights IBM is the registered trademark of International Business Machines Corporation. Microsoft, MS-DOS and Windows are registered trademarks

More information

Export the address book from the Blackberry handheld to MS Outlook 2003, using the synchronize utility in Blackberry Desktop Manager.

Export the address book from the Blackberry handheld to MS Outlook 2003, using the synchronize utility in Blackberry Desktop Manager. Export the address book from the Blackberry handheld to MS Outlook 2003, using the synchronize utility in Blackberry Desktop Manager. Revised 2/25/07 Creating a New Contacts Folder in Outlook Open Outlook

More information

4cast Client Specification and Installation

4cast Client Specification and Installation 4cast Client Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements The client requires Administrative rights

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

VERITAS Backup Exec TM 10.0 for Windows Servers VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software

More information

Using Microsoft Internet Explorer 6 (Windows 2000/ Windows XP/ Windows Server 2003)

Using Microsoft Internet Explorer 6 (Windows 2000/ Windows XP/ Windows Server 2003) Security Alert Dialog Box When installing the program with SSL selected, a Windows security alert dialog box may appear each time you open Internet Explorer. This section describes how to prevent the display

More information

Sage 100 ERP. Installation and System Administrator s Guide

Sage 100 ERP. Installation and System Administrator s Guide Sage 100 ERP Installation and System Administrator s Guide This is a publication of Sage Software, Inc. Version 2014 Copyright 2013 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android with TouchDown 1 Table

More information

Set up My Sites (SharePoint Server

Set up My Sites (SharePoint Server 1 of 8 5/15/2011 9:14 PM Set up My Sites (SharePoint Server 2010) Published: May 12, 2010 This article describes how to set up My Sites in Microsoft SharePoint Server 2010. Like other tasks in SharePoint

More information

RUNNING TRACKER ON A TERMINAL SERVER

RUNNING TRACKER ON A TERMINAL SERVER RUNNING TRACKER ON A TERMINAL SERVER RUNNING TRACKER ON A TERMINAL SERVER Tracker can be run on a Windows 2003 Terminal Server, provided the Windows Terminal Server is properly configured. Depending on

More information

Install Pocket Inventory in a Windows Server 2003 R2 Standard Environment

Install Pocket Inventory in a Windows Server 2003 R2 Standard Environment One Blue Hill Plaza, 16th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Install Pocket Inventory in a Windows Server 2003 R2 Standard

More information

Speech and Debate Timekeeper User Manual

Speech and Debate Timekeeper User Manual Speech and Debate Timekeeper User Manual Version 2.3 Table of Contents Introduction Features Supported Systems Installing Speech and Debate Timekeeper Windows Mac OS X Linux & Unix Palm OS Windows Mobile

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

Appendix E. Captioning Manager system requirements. Installing the Captioning Manager

Appendix E. Captioning Manager system requirements. Installing the Captioning Manager Appendix E Installing and configuring the Captioning Manager The Mediasite Captioning Manager, a separately sold EX Server add-on, allows users to submit and monitor captioning requests through Automatic

More information

Creating a Java application using Perfect Developer and the Java Develo...

Creating a Java application using Perfect Developer and the Java Develo... 1 of 10 15/02/2010 17:41 Creating a Java application using Perfect Developer and the Java Development Kit Introduction Perfect Developer has the facility to execute pre- and post-build steps whenever the

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

CHAPTER 23: USING ODBC

CHAPTER 23: USING ODBC Chapter 23: Using ODBC CHAPTER 23: USING ODBC Training Objectives In this section, we introduce you to the Microsoft Business Solutions Navision NODBC driver. However, it is recommended that you read and

More information

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca!

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! Quick Start Guide Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! How to Setup a File Server with Cerberus FTP Server FTP and SSH SFTP are application protocols

More information

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

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

More information

How To Use Outlook On A Virtual Desktop On A Pc Or Macbook

How To Use Outlook On A Virtual Desktop On A Pc Or Macbook Virtual Desktop Frequently Asked Questions 1. How do I download the VMWare agent? 2. I downloaded the client from another computer. Why don t I see the shortcut on the desktop of this computer? 3. How

More information

Getting Started with the LabVIEW Mobile Module

Getting Started with the LabVIEW Mobile Module Getting Started with the LabVIEW Mobile Module Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that run on Windows

More information

E-Notebook SQL 12.0 Desktop Database Migration and Upgrade Guide. E-Notebook SQL 12.0 Desktop Database Migration and Upgrade Guide

E-Notebook SQL 12.0 Desktop Database Migration and Upgrade Guide. E-Notebook SQL 12.0 Desktop Database Migration and Upgrade Guide E-Notebook SQL 12.0 Desktop Database Migration and Upgrade Guide 1. Introduction... 3 2. Database System... 3 2.1. Software requirements... 3 2.2. Analysis of E-Notebook 10.0 and 11.0 database... 4 2.3.

More information

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

INFUSION BUSINESS SOFTWARE Installation and Upgrade Guide

INFUSION BUSINESS SOFTWARE Installation and Upgrade Guide INFUSION BUSINESS SOFTWARE Installation and Upgrade Guide 27/01/2016 Published by Infusion Business Software Ltd All Rights Reserved Copyright Infusion Business Software Ltd 2012 Copyright No part of this

More information

Setting up Your Acusis Email Address. Microsoft Outlook

Setting up Your Acusis Email Address. Microsoft Outlook Setting up Your Acusis Email Address in Microsoft Outlook Click on your Microsoft Outlook Version you are using: Microsoft Outlook 2002/XP Microsoft Outlook 2003 Microsoft Outlook 2007 Microsoft Outlook

More information

Version 1.0 Revision 1.01. MODBUS/TCP Ethernet Communication Interface API for the Intelligent Instrumentation WinCE Platform SETUP MANUAL

Version 1.0 Revision 1.01. MODBUS/TCP Ethernet Communication Interface API for the Intelligent Instrumentation WinCE Platform SETUP MANUAL Version 1.0 Revision 1.01 SETUP MANUAL MODBUS/TCP Ethernet Communication Interface API for the DASTEC Corporation 457A Carlisle Drive Herndon, VA USA 20170 Tel: 1-703-709-0515 Fax: 1-703-709-0515 Web Site:

More information

8.5 Using Your Phone As a Modem (Internet Sharing)

8.5 Using Your Phone As a Modem (Internet Sharing) Getting Connected 61 Using Windows Live Messenger With this mobile version of Windows Live Messenger, you can send and receive instant messages. To sign in to Windows Live Messenger and start a conversation

More information

Image Acquisition Toolbox Adaptor Kit User's Guide

Image Acquisition Toolbox Adaptor Kit User's Guide Image Acquisition Toolbox Adaptor Kit User's Guide R2015b How to Contact MathWorks Latest news: www.mathworks.com Sales and services: www.mathworks.com/sales_and_services User community: www.mathworks.com/matlabcentral

More information

Oracle Beehive. Using Windows Mobile Device Release 2 (2.0.1.7)

Oracle Beehive. Using Windows Mobile Device Release 2 (2.0.1.7) Oracle Beehive Using Windows Mobile Device Release 2 (2.0.1.7) E28326-01 July 2012 Document updated July, 2012 This document describes how to access Oracle Beehive from your Windows Mobile device using

More information

USING SSL/TLS WITH TERMINAL EMULATION

USING SSL/TLS WITH TERMINAL EMULATION USING SSL/TLS WITH TERMINAL EMULATION This document describes how to install and configure SSL or TLS support and verification certificates for the Wavelink Terminal Emulation (TE) Client. SSL/TLS support

More information

How to Use JCWHosting Reseller Cloud Storage Solution

How to Use JCWHosting Reseller Cloud Storage Solution How to Use JCWHosting Reseller Cloud Storage Solution Go to https://www.internetspace.co.za and log in with your Cloud Reseller account username and password. How to Use create a cloud account for your

More information

GIGATRAK CLIENT INSTALL HANDHELD TERMINAL

GIGATRAK CLIENT INSTALL HANDHELD TERMINAL GIGATRAK CLIENT INSTALL HANDHELD TERMINAL GIGATRAK CLIENT INSTALL HANDHELD TERMINAL A mobile, handheld data terminal runs like a mini PC with an abbreviated version of Windows OS (CE). GigaTrak products

More information

BioWin Network Installation

BioWin Network Installation BioWin Network Installation Introduction This document outlines the procedures for installing the network version of BioWin. There are three parts to the network version installation: 1. The installation

More information

Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager

Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager Adding Outlook to a Blackberry, Downloading, Installing and Configuring Blackberry Desktop Manager The following instructions work for the District provided Blackberrys from Sprint, but I think it should

More information

Tech Tips Helpful Tips for Pelco Products

Tech Tips Helpful Tips for Pelco Products DX4104 UPDATING FROM THE NETWORK SERVER October 29, 2009 DX4104 UPDATING FROM THE NETWORK SERVER The Operation/Configuration manual provides users an option for updating the server through the network

More information

Setting Up and Using the Funambol Windows Mobile Sync Client v7.1

Setting Up and Using the Funambol Windows Mobile Sync Client v7.1 Setting Up and Using the Funambol Windows Mobile Sync Client v7.1 (For use in both Pocket PCs and Smartphones) Contents Introduction.......................................... 2 Requirements for PC-to-Device

More information

Labtech Learning Management System. Windows Installation. Standart Version 1.0

Labtech Learning Management System. Windows Installation. Standart Version 1.0 Labtech Learning Management System Windows Installation Standart Version 1.0 Table of Contents 1. Introduction...3 1.1. Requirements...3 2. Installation...4 2.1 User Acount Control...4 2.2 Welcome Screen...4

More information