Latitude Version SDK Release Notes

Size: px
Start display at page:

Download "Latitude Version SDK Release Notes"

Transcription

1 Latitude Version SDK Release Notes In this document you can check out what s new, understand the known issues, and read through the frequently asked questions about the latest version of the Latitude Software Development Kit (SDK). As always, you re encouraged to provide feedback using this link. (EngineeringServices@dvtel.com) Version 6.2.1, released May, 2012

2 Table of Contents WHAT S NEW?... 3 PTZ movement events... 3 Entity References... 4 IExternalDataEntity Additional properties... 4 Monitor SDK application with SafRun... 5.NET4 support... 5 New Samples... 5 KNOWN ISSUES AND GUIDELINES... 6 Breaking Changes... 6 Installation and upgrades:... 6 Admin Center... 6 PTZ Drivers... 6 PTZ Control and Feedback... 6 Directory Plugin Guidelines... 7 Miscellaneous... 7 Samples & Documentation... 7 Plugin Loading... 7 External entity addition by SDK application and plugin... 8 FIXES... 9 FREQUENTLY ASKED QUESTIONS DVTel Latitude V6.2.1 SDK Release notes v1.1 2

3 What s New? PTZ movement events Two new events are introduced: o IPTZMovementStartedEventEntity IUserBaseEntity User { get; } - indicates who is the user that caused the PTZ movement. o IPTZMovementEndedEventEntity SDK applications can identify when a PTZ movement started/ended by registering to those events. It can be used when an application needs to calculate the location of a camera. PTZ movement operation is considered as one of the following operations, that can be done via Latitude clients or via the SDK: o Pan o Tilt o Zoom o Preset o Go to Preset Number o Go to Location o Pattern o Home o Flip Let s define T as the time after the first PTZ movement operation is done on a scene S. IPTZMovementStartedEventEntity will be fired upon the first PTZ movement operation is done on a scene S, and then T countdown will be started. During T, if more PTZ operations are done on S, no other IPTZMovementStartedEventEntity events will be fired. T countdown will be reset upon any PTZ movement operation done on S during T. After T, IPTZMovementEndedEventEntity will be fired. New property of ISystemRootEntity is introduced: o int DelayedPTZMovementEndedValue { get; set; } o It represents T and has a default value of 10 seconds, configurable only via SDK. The relevant scene is the firing entity of the events. The events are part of Latitude: o An action can be configured for these events of the camera actions tab PTZ moved. o Audit support, with default of no auditing. The events names in Latitude are PTZ movement started/ended Disclaimers: o Any commands that are done not via Latitude will not trigger these events. o There is no sample for this feature, but those events are like any other events in the system. DVTel Latitude V6.2.1 SDK Release notes v1.1 3

4 Entity References There wasn t any formal way to understand what the current structure of external entities of integrations. There can be external entities that can be removed or are invalid by the integration rules. Finding these entities is needed mainly for debugging and finding problems. This feature enables SDK applications to retrieve the entities that reference a specific entity and which property. New interface is introduced IEntityReferencer. o Represents an entity which references another entity. It has the following properties: IConfigurationEntity Entity { get;} - Gets the referencing entity from the cache, If only the entity's id is required please use EntityId property for better performance. Enum ReferencingPropertyId { get; } - Gets the referencing property id. Guid EntityId { get; } - Gets the referencing entity id. New method is introduced to IConfigurationEntity: o IList<IEntityReferencer> GetEntityReferencers(); o It retrieves the entities to which a specific entity is referenced by, and by which properties. Code Example: IList<IEntityReferencer> referencers = entity.getentityreferencers(); foreach (IEntityReferencer entityreferencer in referencers) { DVTelTrace.info("Entity {0} is referencing entity {1} with property {2}", entityreferencer.entity.getshortdebugdescription(), entity entityreferencer.referencingpropertyid); } IExternalDataEntity Additional properties There wasn t any straight forward way to get/set additional information of IExternalDataEntity as ExternalId and ExternalType. This information can be used for several integrations and by the common infrastructure. It will simplify the IExternalDataEntity usage and flexibility. The following properties were added to IExternalDataEntity: o ExternalId string {get; set;} o ExternalType - string {get; set;} The default value for both properties will be null, also for upgrade. Today there are only SharedEntitiesCollection properties to IExternalDataEntity. It means that in order to add an integration hierarchy that is built from external entities, the entities should be added one by one. The same goes for update. These operations can take a lot of time, and should be synchronized. The ability to add an integration hierarchy at once will simplify the SDK usage and speed up the performance. The following collection property was added to IExternalDataEntity: o ComposedEntitiesCollection IReadWriteEntitiesCollection<IConfigurationEntity>{get; set;} Entities in the ComposedEntitiesCollection should not be added/updated/removed separately. The entity that holds the collection can be added at once with the entities in the collection. Default is an empty collection, also for upgrade. DVTel Latitude V6.2.1 SDK Release notes v1.1 4

5 There is a plugin sample for the feature: DVTel.SDK.Samples.DirectoryPluginComposedTree Monitor SDK application with SafRun SafRun was used to monitor DVTel servers and in order to monitor SDK application on machines without Latitude services, SDK users had to implement their own way of monitoring the SDK application. In this feature we added the ability to monitor SDK applications within SafRun. SafRun will be installed also when SDK pack is selected during the installation. Any installation combination that includes SDK pack should install SafRun. In order to have SafRun app monitored by SafRun, it should be added to the config file. SDK applications and services should be monitored by SafRun by adding them to the SafRun config file, for example: <add key="process1" value="'c:\demo\application\app2run\app.exe' -a " /> <add key="service1" value="'c:\demo\service\runservice.exe',servicename " /> Installation of the SDK application should be responsible to edit SafRun config file either automatically or manually SafRun service and application will NOT start automatically if only SDK is installed. The SafRun section of the service config file will be empty. The SafRun service should be started manually in order it to run, only after the config file was modified..net4 support Latitude is compiled under.net 4.0 which means that all SDK applications and plugins should be recompiled against.net 4.0 in order for them to work. Important note: SDK plug-ins (Directory, Control Center, Presentation, etc ) that were compiled against.net.3.5 might work without the need to recompile them against.net 4, since they run in the context of Latitude services/applications. It is not guaranteed and we highly recommend recompiling them also against.net 4.0. New Samples New directory plugin sample was added to demonstrate the new properties of IExternalDataEntity: DVTel.SDK.Samples.DirectoryPluginComposedTree. DVTel Latitude V6.2.1 SDK Release notes v1.1 5

6 Known Issues and Guidelines Breaking Changes Latitude is compiled under.net 4.0 that means that all SDK applications and plugins should be recompiled against.net 4.0 in order for them to work. Any application compiled in.net 4.0 that uses video component in the system, including video (live or playback), export, DSF and audio should add this line to the application configuration file: <startup uselegacyv2runtimeactivationpolicy="true"> <supportedruntime version="v4.0" sku=".netframework,version=v4.0" /> </startup> Please note, for the GA version it will not be required to add the above entry to the config file. It will be done automatically by a common code that runs during the SDK application initialization. IPtzItemEntity was moved from DVTel.API.Entities.Physical to DVTel.API.Entities.Logical, so if you use it please update a reference. Installation and upgrades: Uninstalling Latitude NVMS V6.2 will completely remove all DVTel folders, thus it is recommended not to keep any new projects under the SDK samples folder. Before uninstalling Latitude NVMS V6.2, all applications or plugins should be uninstalled prior to uninstalling Latitude. Admin Center When two federations are declared with the same name, only one will be saved in the FederationHosts.xml file. Therefore, it is recommended to make sure each federation has a unique name. When adding a collapsible box to a Latitude entity other than an external entity using a presentation plugin (e.g. adding a box to the VideoInSceneEntity general page), the box will only appear if the entity which has your plugin s workspace id is pressed first by the user. Therefore, it is recommended to add the additional GUI to all Latitude entities from the same type (for example: all VideoInSceneEntity entities) PTZ Drivers PTZBase and PTZPerformerBase which used to be internal classes containing the basic functionality for PTZ drivers are now open source! You may find the code under SDK/Samples/Drivers. Instead of inheriting the above mentioned classes, just add the code to your PTZ driver and you re good to go. This way you can easily modify or extend those classes. PTZ Control and Feedback IPTZPerformer has a new method GetLocation which enables you to get the current Pan, Tilt and Zoom of a PTZ camera which supports a location feedback. DVTel Latitude V6.2.1 SDK Release notes v1.1 6

7 The GotoLocation method will send the PTZ camera to the desired pan tilt and zoom location. When using PTZ lock, in order to unlock it you should explicitly call the Unlock method (disposing the session is not enough) or it will stay locked until the user logs out of the system. This enhancement is effective from 6.0 SP1. Although the Latitude SDK supports PTZ absolute positioning via the GoToLocation and GetCurrentLocation methods of IPtzClient, the support of the functionality is also dependent on the PTZ driver being used (for example Pelco D), as well as the hardware being used (camera or encoder). For example, some hardware devices might not support communication from the device to the Latitude system and therefore calling GetCurrentLocation would fail with a timeout. Directory Plugin Guidelines A Directory Plugin should be used in order to intervene with basic directory operations on entities in Latitude NVMS.e.g. in order to modify each camera just before it is added to the Directory server, you can add an AddEntityListener which will be invoked whenever a new entity is about to be saved. No caching of entities need to be done in a Directory Plugin. Modifying entities (i.e. using IAdministrationAPI) must always be performed synchronously, within a transaction. Therefore, if you re performing an operation not within a transaction you should use ExecuteInTransaction method. Events returned by the Directory Application API listener callbacks are already inside a transaction, i.e. no need to open a new transaction (e.g. performing some operations within the EntityAdded event). Do not keep a local reference to an entity. Getting an entity within a transaction (that was not received as a parameter of the listener callback) should be done by invoking the method GetTransactionalEntity(Guid). Miscellaneous When registering to an event, make sure that all actions you perform when receiving this event are performed in a new thread. This is in order to prevent a situation in which the SDK event dispatcher is waiting for your code to complete before dispatching the next event in queue. When using the DVTelTrace class to write messages to the log, always check that your trace level is compatible with your message trace level. Example: If (DVTelTrace.Error()) { DVTelTrace.error("Archiver is null"); } Samples & Documentation SDK API Samples located under the solution DVTel.SDK.Samples are now compiled in.net4. Also the SDK Plugins Samples are now compiled in.net 4. Samples can be compiled only on VS2010. Samples are not supported in VS2005/2008 Plugin Loading Verify that the plugin code is executed by specific servers/clients only after receiving the callback when the relevant application API is ready. Verify the relevant plugin code runs only by the relevant server/client. For example, Directory plugin code is executed only in the Directory and etc. DVTel Latitude V6.2.1 SDK Release notes v1.1 7

8 Plugin should be installed on all machines. External entity addition by SDK application and plugin When using directory plugin for AddGetTreeParentsListener / AddGetAdditionalChildrenLocationsListener and SDK application to add/update an external entity, please note that the plugin code will run asynchronous; hence the SDK can receive the call back for entity added/updated before the directory plugin AddGetTreeParentsListener / AddGetAdditionalChildrenLocationsListener callbacks ended. The solution is to register at the SDK application for the right event, fired after the directory plugin finished its code. If you need to create an hirerchi of external entities at once, you can use ComposedEntitiesCollection of the IExternalDataEntity that was introduced in DVTel Latitude V6.2.1 SDK Release notes v1.1 8

9 Fixes # Name Description Sample Browser SDK Samples get stuck when file browser window is supposed to be displayed. It works from the sample itself WPF sample WPF Sample does not display live video on.net Application server Application server - ServingStop event is not fired when killing the service via Safrun Application server Application server's cache does not receive status events Casebuilder sample CB sample process remains open even after sample is closed Help Files Help files - DVTEL icon is missing Users Sample SDK - Users sample - Exception is thrown when performing remove to user when running from VS debug\release Connect Encoder To Decoder sample Cross thread exception when performing connect between encoder and decoder - no functional aspect Export Sample sample crashes after trying to save export configuration on JIT exception Player Sample sample process remains open even after sample is closed Application Server On release environment only - Application server fails to start from the batch file General SDK Application never exits before forced timeout of 30 seconds Install / Uninstall SDK should not be install if key is not provide in ini.file from C:\Windows\Downloaded Installations\{1669F4B0}\Features\SDKPack Export Sample Sample throws an exception when trying to perform an export with a format different than DVT and with specific units Upgrade Upgrade when SDK exists fails, installation key is missing Installation Installing when SDK key is missing - an error message pops up indicating that installation key is missing. This error message should not appear StreamingAPI IStreamingAPI - "Not supported" General SDK integrations - consider adding capability to add.net4 framework entry support in integrations config file programmatically Installation Installation - win7 x64 - Uninstall of client with SDK doesn't remove DVTEL folder containing other folders under program files Upgrade Upgrade - Upgrade of Client + SDK creates two entries (6.2 and 6.2.1) under start programs Installation SDK component installation via "Modify" fails DVTel Latitude V6.2.1 SDK Release notes v1.1 9

10 19389 Help Files IArchiveController API documentation is incorrect General AddGetTileContextMenuActionsListener works for live streams but fails for archived Sample Browser SDK - Sample Browser - SDK Samples get stuck when file browser window is supposed to be displayed. It works from the sample itself Help Files Maps HTML code snippets in the help file contain extra spaces/carriage returns DVTel Latitude V6.2.1 SDK Release notes v1.1 10

11 Frequently Asked Questions Q When working with the SDK Samples solution, I get a Loader Lock Exception each time I m in debug mode. How can I avoid that? A In order to avoid that, go to Debug->Exceptions page (usually Ctrl+Alt+E), click Find, and search for LoaderLock, then uncheck the Thrown checkbox. Q When using a ControlCenter plugin (ActionBox) can I get notified when one of my External Entities is focused in a ControlCenter tile? A Register to the IControlCenterAPI.ExternalEntityFocusGained event to get a notification whenever a tile containing an External Entity gains focus. DVTel Latitude V6.2.1 SDK Release notes v1.1 11

Latitude Network Video Management System

Latitude Network Video Management System Latitude Network Video Management System PRODUCT DESCRIPTION: The Latitude Network Video Management System (NVMS) is a fully-digital, IPbased video surveillance system that brings together in one system

More information

Video Monitoring. Contents CHAPTER

Video Monitoring. Contents CHAPTER CHAPTER 13 This chapter describes how to view live and recorded video streams from security cameras configured in the Cisco Video Surveillance Manager (Cisco VSM) system. Using Cisco PAM, you can associate

More information

Hills Training Institute. DVTel Latitude 6. ControlCenter User Guide. Learner guide. version 6.0.1

Hills Training Institute. DVTel Latitude 6. ControlCenter User Guide. Learner guide. version 6.0.1 Hills Training Institute DVTel Latitude 6 ControlCenter User Guide Learner guide version 6.0.1 This page left almost Blank intentionally for double sided printing Page 2 of 45 Version 6.0.1 Table of Contents

More information

Video Monitoring. Contents CHAPTER

Video Monitoring. Contents CHAPTER CHAPTER 15 This chapter describes how to view live and recorded video streams from security cameras configured in the Cisco Video Surveillance Manager (Cisco VSM) system. Using Cisco PAM, you can associate

More information

VideoXpert Integration - Symmetry Professional User Guide

VideoXpert Integration - Symmetry Professional User Guide VideoXpert Integration - Symmetry Professional User Guide USER GUIDE V1.2 26-Jul-17 Contents 1. Introduction... 3 2. Abbreviations... 3 3. Version Information... 3 3.1. Integration Component Version...

More information

Video Insight Release Notes IP Enterprise Version 5.0. IP Enterprise version Release Notes

Video Insight Release Notes IP Enterprise Version 5.0. IP Enterprise version Release Notes IP Enterprise version 5.0.0.18 Release Notes Table of Contents A. New Camera Integrations and Updates... 2 B. Video Communication Systems (VCS) Integration... 7 C. Camera probing using Ping... 8 D. Ability

More information

IOI SD. Release Notes. Firmware Version

IOI SD. Release Notes. Firmware Version IOI SD Release Notes Firmware Version 2.1.3.149 Ver. 3 March 22, 2017 2017 FLIR Systems, Inc. All rights reserved worldwide. Names and marks appearing on the products herein are either registered trademarks

More information

W Box VMS BOX T E C H N O L O G I E S.

W Box VMS BOX T E C H N O L O G I E S. W Box VMS BOX T E C H N O L O G I E S www.wboxtech.eu Contents Contents... 1 Overview... 3 1.1 Description... 3 1.2 Running Environment... 3 1.3 Function Modules... 3 Live view... 6 2.1 User Registration

More information

CCURE Access Control Plugin and Video Integration Guide 3.2. Click here for the most recent version of this document.

CCURE Access Control Plugin and Video Integration Guide 3.2. Click here for the most recent version of this document. CCURE Access Control Plugin and Video Integration Guide 3.2 Click here for the most recent version of this document. Document last updated: November 22, 2017 Copyright notice Genetec Inc., 2017 Genetec

More information

SecureGuard VMS. SecureGuard All-In-One Quick Install Guide V. 2.5

SecureGuard VMS. SecureGuard All-In-One Quick Install Guide V. 2.5 SecureGuard VMS Quick Install Guide V. 2.5 9/30/2018 2 Table of Contents Purpose... 3 Installation... 3 Setup... 4 Startup & Live View... 26 3 Purpose This is a step-by-step guide to installing the current

More information

Avigilon Control Center 5.4 Release Notes

Avigilon Control Center 5.4 Release Notes Notes Version 5.4.0.30 Released Tuesday November 4th, 2014 Release Summary This is the first scheduled service release for Avigilon Control Center 5.4. Users experiencing issues listed in the Issues Fixed

More information

Avigilon Control Center 5.6 Release Notes

Avigilon Control Center 5.6 Release Notes Notes Version 5.6.0.28 Released Monday August 31 st, 2015 Release Summary This is a service release for Avigilon Control Center 5.6. Users experiencing issues listed in the Issues Fixed list should consider

More information

Manual Version: V1.15. Video Management Software Guard Station User Manual

Manual Version: V1.15. Video Management Software Guard Station User Manual Manual Version: V1.15 Video Management Software Guard Station User Manual Thank you for purchasing our product. If there are any questions, or requests, please do not hesitate to contact the dealer. Disclaimer

More information

Pelco VideoXpert SDK 1.1 Quick Start Guide. VideoXpert_SDK_QSG-B 03 / 2016

Pelco VideoXpert SDK 1.1 Quick Start Guide. VideoXpert_SDK_QSG-B 03 / 2016 Pelco VideoXpert SDK 1.1 Quick Start Guide 03 / 2016 Contents Contents What Is the Pelco VideoXpert SDK?...3 Before Installing the Pelco VideoXpert SDK...5 Installing the Pelco VideoXpert SDK...6 Running

More information

General. Storage Server. Live View

General. Storage Server. Live View General 1. Change the button as flat style on device management page, the same as ivms-5200. 2. Change the GUI for playback interface, keep the style same as ivms-5200. 3. Highly improved decoding capacity

More information

Guarding Expert (Android) Mobile Client Software

Guarding Expert (Android) Mobile Client Software Overview Guarding Expert (Android) V3.2 mobile client software, which is designed for mobile phone on the basis of Android OS (Version 2.3.3 or higher), can be used to remotely monitor the live video from

More information

Quick Operation Guide of ivms-4200

Quick Operation Guide of ivms-4200 Quick Operation Guide of ivms-4200 V1.02 2012-02-22 Description ivms-4200 is a video management software using a distributed structure to manage all the connectable devices. It can manage the NVR, DVR,

More information

HikCentral Mobile Client. User Manual (Android) UD06889B

HikCentral Mobile Client. User Manual (Android) UD06889B HikCentral Mobile Client User Manual (Android) UD06889B User Manual COPYRIGHT 2017 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others,

More information

Avigilon Control Center 5.6 Release Notes

Avigilon Control Center 5.6 Release Notes Version 5.6.0.22 Released Thursday July 30 th, 2015 Release Summary This is a service release for Avigilon Control Center 5.6. Users experiencing issues listed in the Issues Fixed list should consider

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

UltraNetCam3 HSPI User s Guide

UltraNetCam3 HSPI User s Guide UltraNetCam3 HSPI User s Guide A HomeSeer HS3 plug-in used to capture snapshots from network cameras for surveillance and security purposes. Copyright 2014 ultrajones@hotmail.com Revised 12/21/2014 This

More information

Guarding Expert Mobile Client Software

Guarding Expert Mobile Client Software Guarding Expert Mobile Client Software User Manual Thank you for purchasing our product. This manual applies to Guarding Expert (iphone) mobile client software; please read it carefully for the better

More information

UltraView Security Center 5.0 SP1 Release Notes

UltraView Security Center 5.0 SP1 Release Notes UltraView Security Center 5.0 SP1 Release Notes ISS 2017-03-06 Table of contents Introduction 1 Description of new features 1 Recommendations 8 Installation instructions 8 Upgrade instructions 8 Known

More information

Digital Recorder End User Guide. Official UK distribution partner

Digital Recorder End User Guide. Official UK distribution partner Digital Recorder End User Guide Official UK distribution partner 2 Installer Information Contents General Operation Mouse Operation Logging into the System Quick Menu PTZ Control 4 5 5 6 Playback Operation

More information

DSS Professional FAQ. Ver:

DSS Professional FAQ. Ver: DSS Professional FAQ Ver: 7.00.000 Contents 1 Installation and Deployment... 1 1.1 What kind of OS can install DSS Professional?... 1 1.2 What kind of performance of server can install DSS Professional?...

More information

XProtect Go 2016 R2. Specification Sheet

XProtect Go 2016 R2. Specification Sheet XProtect Go 2016 R2 Specification Sheet Contents Feature Overview... 3 XProtect Go server modules... 3 XProtect Go client modules... 3 Detailed Product Features... 4 XProtect Go server modules... 4 XProtect

More information

NVMS User Manual

NVMS User Manual NVMS-1000 User Manual Contents 1 Software Introduction...1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall the Software...

More information

PONEMAH V5.30 WITH NOLDUS MEDIA RECORDER 4.0 QUICK START GUIDE

PONEMAH V5.30 WITH NOLDUS MEDIA RECORDER 4.0 QUICK START GUIDE TECHNICAL NOTE PONEMAH V5.30 WITH NOLDUS MEDIA RECORDER 4.0 QUICK START GUIDE DSI has partnered with Noldus Information Technology, the leading solution provider for human and animal behavioral research

More information

VMS-A1 Client Software. User Manual

VMS-A1 Client Software. User Manual VMS-A1 Client Software User Manual Contents Contents... 2 Chapter1. Overview... 4 1.1 Description... 4 1.2 Features & Functions... 4 Chapter2. Update Info... 6 Chapter3. Starting VMS-A1... 7 3.1 Installing

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

XMEye IOS APP User Manual. Writer:Overseas technical support Compile Date: Version:V2.8.3

XMEye IOS APP User Manual. Writer:Overseas technical support Compile Date: Version:V2.8.3 XMEye IOS APP User Manual Writer:Overseas technical support Compile Date:2017.03.01 Version:V2.8.3 Contents 1. Product Profile... 3 1.1 Product overview... 3 1.2 Main function of product... 3 2. Software

More information

Digital Recorder End User Guide

Digital Recorder End User Guide Digital Recorder End User Guide metcalfeallen www.metcalfeallen.co.uk - 01884 38222 - admin@metcalfeallen.co.uk Installer Information Metcalfe Allen Ltd Unit 7 Saunders Way Kingsmill Industrial Estate

More information

TS View Client Software. User Manual

TS View Client Software. User Manual TS View Client Software User Manual 2016-03-03 User Manual About this Manual This Manual is applicable to TS View Client Software. The Manual includes instructions for using and managing the product. Pictures,

More information

Sipelia User Guide 2.0 GA. Click here for the most recent version of this document.

Sipelia User Guide 2.0 GA. Click here for the most recent version of this document. Sipelia User Guide 2.0 GA Click here for the most recent version of this document. Copyright notice 2015 Genetec Inc. All rights reserved. Genetec Inc. distributes this document with software that includes

More information

ivms-5260m Mobile Client User Manual (ios) UD06066B

ivms-5260m Mobile Client User Manual (ios) UD06066B ivms-5260m Mobile Client User Manual (ios) UD06066B User Manual COPYRIGHT 2017 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others, wordings,

More information

Manual Version: V1.01. ISS Manager Video Management Software User Manual

Manual Version: V1.01. ISS Manager Video Management Software User Manual Manual Version: V1.01 ISS Manager Video Management Software User Manual Notice The information in this manual is subject to change without notice. Every effort has been made in the preparation of this

More information

Quick Start Guide (V1.03) UD.6L0201B1064A01

Quick Start Guide (V1.03) UD.6L0201B1064A01 ivms-4200 PCNVR Quick Start Guide (V1.03) UD.6L0201B1064A01 Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact the dealer. This manual applies

More information

Avigilon Control Center 5.6 Release Notes

Avigilon Control Center 5.6 Release Notes Notes Version 5.6.0.18 Released Tuesday July 7 th, 2015 Release Summary This is the first scheduled service release for Avigilon Control Center 5.6. Users experiencing issues listed in the Issues Fixed

More information

Milestone Systems XProtect Advanced VMS System Architecture. 1

Milestone Systems XProtect Advanced VMS System Architecture.  1 Milestone Systems XProtect Advanced VMS 2014 www.milestonesys.com 1 Content Copyright, trademarks and disclaimer... 3 Introduction... 4 Target audience and purpose... 4 Overall system architecture... 5

More information

Central Management System

Central Management System Central Management System NCS System Installation User Manual Ver. 1.6.0.110630.001 Table of Contents Table of Contents Table of Contents... ii Part 1: NCS Overview... 4 System Introduction... 5 Client/Server

More information

Teradici PCoIP Virtual Channel Software Development Kit

Teradici PCoIP Virtual Channel Software Development Kit Teradici PCoIP Virtual Channel Software Development Kit Version 1.1 Developers' Guide TER1502008-1.1 Document History The following table records changes and revisions made to this document since the inaugural

More information

HikCentral Control Client. User Manual

HikCentral Control Client. User Manual HikCentral Control Client User Manual Legal Information User Manual 2018 Hangzhou Hikvision Digital Technology Co., Ltd. About this Manual This Manual is subject to domestic and international copyright

More information

NVR Management Software

NVR Management Software NVR Management Software Quick Installation Guide Ver. 1.0 User Interface Overview 1 Live Video This is the section where the live videos are displayed Menu Bar This is where all functions can be accessed

More information

IOI SD. Release Notes. Firmware Version

IOI SD. Release Notes. Firmware Version IOI SD Release Notes Firmware Version 2.3.0.2 Ver. 1 November 28, 2017 2017 FLIR Systems, Inc. All rights reserved worldwide. Names and marks appearing on the products herein are either registered trademarks

More information

NVMS7000 Client Software

NVMS7000 Client Software NVMS7000 Client Software User Manual User Manual About this Manual This Manual is applicable to NVMS7000 Client Software. The Manual includes instructions for using and managing the product. Pictures,

More information

NVMS1000. User Manual

NVMS1000. User Manual NVMS1000 User Manual Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall the Software...

More information

Updates for WEBCON BPS version

Updates for WEBCON BPS version WEBCON BPS Updates for WEBCON BPS version 2017.1 Version history 2017.1.1.127 ------------------------------------------------------------------------------------------------------------------------------------------

More information

Central Management Software for NVR-915 / NVR-1615 CV5-M256

Central Management Software for NVR-915 / NVR-1615 CV5-M256 Central Management Software for NVR-915 / NVR-1615 Table of Contents Chapter 1. Main Console... 4 1.1 Tool Bar... 4 1.2 NVR List... 5 1.3 Division List... 7 1.4 Group List... 9 1.5 PTZ Panel...11 1.6 Operation

More information

ivms-5200 Mobile Client User Manual (Android Phone) UD03186B

ivms-5200 Mobile Client User Manual (Android Phone) UD03186B ivms-5200 Mobile Client User Manual (Android Phone) UD03186B User Manual COPYRIGHT 2016 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others,

More information

NVMS1000. User Manual

NVMS1000. User Manual NVMS1000 User Manual Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall the Software...

More information

NVMS User Manual

NVMS User Manual NVMS-1000 User Manual Contents 1 Software Introduction...1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall the Software...

More information

Milestone Systems. XProtect VMS 2017 R2. System Architecture Document. XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+

Milestone Systems. XProtect VMS 2017 R2. System Architecture Document. XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+ Milestone Systems XProtect VMS 2017 R2 System Architecture Document XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+ Contents Introduction... 6 Target audience and purpose...

More information

Admin Center User Guide

Admin Center User Guide United VMS 8.0 Admin Center User Guide Latitude Version 1.0 i 2017 FLIR Systems, Inc. All rights reserved worldwide. No parts of this manual, in whole or in part, may be copied, photocopied, translated,

More information

IOI SD. Release Notes. Firmware Version

IOI SD. Release Notes. Firmware Version IOI SD Release Notes Firmware Version 2.2.0.16 Ver. 12 August 16, 2017 2017 FLIR Systems, Inc. All rights reserved worldwide. Names and marks appearing on the products herein are either registered trademarks

More information

VideoXpert&Digital Sentry Integration - AccessXpert Release Note

VideoXpert&Digital Sentry Integration - AccessXpert Release Note VideoXpert&Digital Sentry Integration - AccessXpert RELEASE NOTE V1.2 11-Sep-17 Contents 1. Introduction... 3 2. Abbreviations... 3 3. About this Release... 3 4. Version Information... 3 4.1. Integration

More information

SkyPoint Administrator. User Manual

SkyPoint Administrator. User Manual SkyPoint Administrator User Manual SkyPoint Administrator User Manual Contents Table of Contents INTRODUCTION... 1 OVERVIEW... 2 SYSTEM DIAGRAM... 3 GETTING STARTED WITH SKYPOINT... 4 PREREQUISITES...

More information

Android Mobile Client. User Guide

Android Mobile Client. User Guide Android Mobile Client. User Guide 1. General information about the Android mobile client..................... 3 2. Connecting to the Axxon Next server and working with servers in the Android client. 3

More information

Guarding Expert (Android) Mobile Client Software User Manual (V3.2)

Guarding Expert (Android) Mobile Client Software User Manual (V3.2) Guarding Expert (Android) Mobile Client Software User Manual (V3.2) UD.6L0202D1247A01 Thank you for purchasing our product. This manual applies to Guarding Expert (Android) mobile client software; please

More information

What s in the Box Get Started Hardware Installation For Mobile Device Set Up Camera... 6

What s in the Box Get Started Hardware Installation For Mobile Device Set Up Camera... 6 Quick Start Guide Table of Contents What s in the Box... 1 Get Started... 1 Hardware Installation... 2 For Mobile Device... 2 Set Up Camera... 6 Set Up Wi-Fi Without Network Cable... 8 View in Windows

More information

Mirasys NVR. User s Guide

Mirasys NVR. User s Guide Mirasys NVR User s Guide CONTENTS Contents... 2 Before you start... 3 Introduction... 6 Logging in... 9 User interface... 13 Navigator... 16 Cameras... 25 Video outputs... 41 Digital outputs... 46 Digital

More information

New Service Release Advisor Management Software: SP7

New Service Release Advisor Management Software: SP7 New Service Release Advisor Management Software: SP7 New Features 33144 - Added card details also to the search when the card deck is being searched 32918 - Monitor - Allowing to define keyboard shortcuts

More information

VSPlayer Software User Manual

VSPlayer Software User Manual VSPlayer Software User Manual UD03888B User Manual COPYRIGHT 2016 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others, wordings, pictures,

More information

HikCentral V1.1 What s New

HikCentral V1.1 What s New HikCentral V1.1 What s New This document briefly introduces the new functions and features in the HikCentral 1.1 updated from Version 1.0. The content of this manual is furnished for informational use

More information

Milestone Systems. XProtect MIP SDK Application Catalog

Milestone Systems. XProtect MIP SDK Application Catalog Milestone Systems XProtect MIP SDK Application Catalog Contents Scope for this document... 4 Introduction to Milestone Integration Platform Software Development Kit (MIP SDK)... 5 Protocol integration...

More information

Table of Contents Surveillance Center Overview...3 Log...30 Live Camera Panel...31 Live Camera Panel Explained I...32

Table of Contents Surveillance Center Overview...3 Log...30 Live Camera Panel...31 Live Camera Panel Explained I...32 Surveillance Center Overview...3 Introduction...3 System Requirements... 4 Features... 5 Checking the Hardware Requirements... 6 Installing and Accessing the Module... 8 Connecting a Camera to the Network...

More information

XProtect Essential 2017 R1 Specification Sheet. Specification Sheet

XProtect Essential 2017 R1 Specification Sheet. Specification Sheet Contents Feature Overview... 3 XProtect Essential server modules... 3 XProtect Essential client modules... 3 Detailed Product Features... 4 XProtect Essential server modules... 4 XProtect Essential Server

More information

Vicon Valerus VMS 18R2 Update1 (Build 2)

Vicon Valerus VMS 18R2 Update1 (Build 2) Release Notes March 2019 Vicon Valerus VMS 18R2 Update1 (Build 2) General Description Vicon is releasing a new version of the Valerus VMS, version 18 R2 U1 (Build 2). This version provides updates and

More information

NVMS-7000 Client Software User Manual Version 1.03

NVMS-7000 Client Software User Manual Version 1.03 NVMS-7000 Client Software User Manual Version 1.03 Contents Chapter 1. Overview... 3 1.1 Description... 3 1.2 Running Environment... 3 Chapter 2. Starting NVMS-7000... 4 2.1 User Registration... 4 2.2

More information

CompleteView & C CURE 9000 Integration Quick Start Guide Salient CompleteView

CompleteView & C CURE 9000 Integration Quick Start Guide Salient CompleteView CompleteView & C CURE 9000 Integration Quick Start Guide Salient CompleteView i CompleteView - CCURE 9000 Integration Quick Start Guide Table of Contents Introduction... 3 Supported Operating Systems...

More information

Senstar Symphony. 7.1 Release Notes

Senstar Symphony. 7.1 Release Notes Senstar Symphony 7.1 Release Notes Contents Contents Release 7.1.1 (October 2018)...3 Release 7.1.0.2 (October 2018)...8 Release 7.1.0.1 (September 2018)... 9 Release 7.1 (September 2018)... 10 Legal information...

More information

UNITED VMS 8.0 Rel

UNITED VMS 8.0 Rel UNITED VMS 8.0 Rel 8.0.0.6100 Rel 8.0.0.6100 Latitude / Horizon / Meridian Ver. 1.0 December 28, 2017 2017 FLIR Systems, Inc. All rights reserved worldwide. No parts of this manual, in whole or in part,

More information

UltraNetCam HSPI User s Guide A HomeSeer HS2 plug-in used to capture snapshots from network cameras for surveillance and security purposes.

UltraNetCam HSPI User s Guide A HomeSeer HS2 plug-in used to capture snapshots from network cameras for surveillance and security purposes. UltraNetCam HSPI User s Guide A HomeSeer HS2 plug-in used to capture snapshots from network cameras for surveillance and security purposes. Copyright 2013 ultrajones@hotmail.com Revised 02/03/2013 This

More information

Avigilon Control Center Enterprise Web Client User Guide. Version 5.8.4

Avigilon Control Center Enterprise Web Client User Guide. Version 5.8.4 Avigilon Control Center Enterprise Web Client User Guide Version 5.8.4 2006-2016, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are trademarks

More information

Viewer for Luma Fisheye IP Surveillance Camera. Software Manual

Viewer for Luma Fisheye IP Surveillance Camera. Software Manual Viewer for Luma Fisheye IP Surveillance Camera Software Manual Important Notes This software is a third-party program that allows you to view, in a normal view, surveillance recordings that were made in

More information

HikCentral HD Mobile Client. User Manual (Android Tablet) UD04971B

HikCentral HD Mobile Client. User Manual (Android Tablet) UD04971B HikCentral HD Mobile Client User Manual (Android Tablet) UD04971B User Manual COPYRIGHT 2017 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among

More information

Pelco Video Server 2.7 / Software House C CURE 9000 v2.7 Troubleshooting Guide C5638M-F 10 / 2018

Pelco Video Server 2.7 / Software House C CURE 9000 v2.7 Troubleshooting Guide C5638M-F 10 / 2018 Pelco Video Server 2.7 / Software House C CURE 9000 v2.7 Troubleshooting Guide 10 / 2018 Contents Contents Preface: Introduction... iv Chapter 1: Adding and Editing Pelco Video Server and Cameras... 5

More information

Video Capture Card Manual

Video Capture Card Manual Video Capture Card Manual 1. System Login System installation is completed, will generate desktop < DVR Surveillance System> icon, please double-click operation. Or choose Start -> All Programs -> DVR

More information

Manual Version: V1.01. Video Management Server Client Software User Manual

Manual Version: V1.01. Video Management Server Client Software User Manual Manual Version: V1.01 Video Management Server Client Software User Manual Thank you for purchasing our product. If there are any questions, or requests, please do not hesitate to contact the dealer. Notice

More information

Algo Lync Interface for SIP Audio Alerter User Guide

Algo Lync Interface for SIP Audio Alerter User Guide Algo Lync Interface for 8180 SIP Audio Alerter User Guide Introduction The Algo Lync Interface enables Algo 8180 SIP Audio Alerter devices to register indirectly to the Lync server by registering on behalf

More information

Control Center User Guide

Control Center User Guide United VMS 8.0 Control Center User Guide Latitude, Horizon, Meridian Version 1.0 i 2017 FLIR Systems, Inc. All rights reserved worldwide. No parts of this manual, in whole or in part, may be copied, photocopied,

More information

PCMS User Manual. User Manual PCMS. A-Series DVR (Cloud)

PCMS User Manual. User Manual PCMS. A-Series DVR (Cloud) PCMS User Manual A-Series DVR (Cloud) User Manual PCMS User Manual PCMS A-Series DVR (Cloud) 1 PCMS User Manual A-Series DVR (Cloud) Contents 1. Brief Introduction... 3 2. Application... 3 3. OS Compatibility...

More information

Blue v2 INSPIRE DVR RANGE USER MANUAL

Blue v2 INSPIRE DVR RANGE USER MANUAL INSPIRE Blue v2 DVR RANGE USER MANUAL Contents Logging into the DVR Mouse menu Live viewing Playback Smartphone viewing setup Smartphone viewing Copy to USB/Disc Using Cop player 2 playback software Using

More information

Milestone Systems. XProtect Smart Client User Manual

Milestone Systems. XProtect Smart Client User Manual Milestone Systems XProtect Smart Client 2016 User Manual Contents Copyright, trademarks and disclaimer... 10 Target audience for this manual... 11 Minimum system requirements... 12 Get started with XProtect

More information

IPVideo Corporation. Mosaic TM Smart Client 2016 R2. User Manual

IPVideo Corporation. Mosaic TM Smart Client 2016 R2. User Manual IPVideo Corporation Mosaic TM Smart Client 2016 R2 User Manual Mosaic Smart Client Contents Target audience for this manual... 9 Minimum system requirements... 10 Get started with Mosaic Smart Client...

More information

Table of Contents. Service Pack Release Letter

Table of Contents. Service Pack Release Letter When printed, uncontrolled copy Service Pack Release Letter Version: 01.04 Table of Contents 1. Introduction 2 1.1 Disclaimer of Warranty 2 1.2 Purpose 2 1.3 Scope 2 1.4 Definitions, Acronyms, and Abbreviations

More information

Avigilon Control Center 6 Release Notes

Avigilon Control Center 6 Release Notes Version 6.2.0.24 Released April 19 th, 2017 Release Summary This is an initial release of Avigilon Control Center 6.2. This release introduces a new ACC Mobile application to support remote alarm handling

More information

Intel Unite Plugin for Logitech GROUP* and Logitech CONNECT* Devices INSTALLATION AND USER GUIDE

Intel Unite Plugin for Logitech GROUP* and Logitech CONNECT* Devices INSTALLATION AND USER GUIDE Intel Unite Plugin for Logitech GROUP* and Logitech CONNECT* Devices INSTALLATION AND USER GUIDE November 2017 You may not use or facilitate the use of this document in connection with any infringement

More information

CCTV Web. CCTV Web Application User Manual. Frederick J. Botha AfriCONNECT

CCTV Web. CCTV Web Application User Manual. Frederick J. Botha AfriCONNECT CCTV Web CCTV Web Application User Manual Frederick J. Botha AfriCONNECT Accessing via Web Browser Hikvision DVR/NVR can be accessed via web browsing. It provides the functionalities of live view, playback,

More information

Milestone Systems. XProtect VMS 2018 R2. System Architecture Document. XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+

Milestone Systems. XProtect VMS 2018 R2. System Architecture Document. XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+ Milestone Systems XProtect VMS 2018 R2 System Architecture Document XProtect Corporate XProtect Expert XProtect Professional+ XProtect Express+ Contents Introduction... 6 Target audience and purpose...

More information

HIP2P Network Video Camera Client Terminal User Manual

HIP2P Network Video Camera Client Terminal User Manual HIP2P Network Video Camera Client Terminal User Manual Document version:5.1 Page 1 of 34 } Preface Thank you for using our company's products. The network video camera client terminal is used to implement

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

Avigilon Control Center Standard Web Client User Guide. Version 5.6

Avigilon Control Center Standard Web Client User Guide. Version 5.6 Avigilon Control Center Standard Web Client User Guide Version 5.6 2006-2015, Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with respect to any copyright,

More information

TruVision Navigator 7.0 Release Notes

TruVision Navigator 7.0 Release Notes TruVision Navigator 7.0 Release Notes P/N 1073274A-EN REV A ISS 20APR17 Introduction This is the TruVision Navigator 7.0 Release Notes with additional information not covered in the user manual. For the

More information

Release Notes - Version

Release Notes - Version Release Notes - Version 3.4.0.2 Important Information for Updating Fixed Bugs and Improved Functionality Appendix Known Limitations You will find the latest system requirements for several products on

More information

AS-525AV. ViTrax AC-525 Video Management Software. Software Manual

AS-525AV. ViTrax AC-525 Video Management Software. Software Manual AS-525AV ViTrax AC-525 Video Management Software Software Manual August 2010 Table of Contents Table of Contents 1. Introduction... 5 1.1 Software Security... 5 1.2 AS-525AV ViTrax Server and Client...

More information

icms Central Management Software User Manual

icms Central Management Software User Manual icms Central Management Software User Manual 1 Contents 1. icms Installation... 3 1-1. System Requirements... 3 1-2. Bandwidth Requirements... 3 1-3. Installation... 4 2. Start to icms... 6 2-1. icms Introduction...

More information

NVR Equipment WEB Operation Guide ISSUE V1.1 DATE

NVR Equipment WEB Operation Guide ISSUE V1.1 DATE NVR Equipment WEB Operation Guide ISSUE V1.1 DATE 2018-05-15 About This Document About This Document Purpose This document describes how to use the web management system for NVR and the cameras managed

More information

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas ArcGIS Enterprise: Advanced Topics in Administration Thomas Edghill & Moginraj Mohandas Outline Overview: Base ArcGIS Enterprise Deployment - Key Components - Administrator Endpoints Advanced Workflows:

More information

RAS (Remote Administration System)

RAS (Remote Administration System) RAS (Remote Administration System) Digital Video Recorder Software User Guide Document 900.0314 Rev 2.00 RAS User Guide Revisions Issue Date Revisions 1.00 08/04 New document. 1.01 04/05 Update template,

More information

NVMS User Manual. Version 2.1.0

NVMS User Manual. Version 2.1.0 NVMS-1000 User Manual Version 2.1.0 Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall

More information