GuardPoint Pro XML APIs

Size: px
Start display at page:

Download "GuardPoint Pro XML APIs"

Transcription

1 TABLE OF CONTENTS Introduction 3 How to send / receive commands 4 XML Structure 6 Methods 7 ChangeUserLogin 7 OpenScreen 7 PreviewVideo 7 PreviewReport 8 DisplayMessage 8 MenuPrint (InsertTextinLog) 8 FloodUpdateText (InsertTextinStatusBar) 9 PlaySound 9 ExecuteAction 9 ExecuteProcess 10 CC_RecreateMemoryTables (RecreateMemoryTables) 10 ActivateRelay (SetRelayState) 10 OutputAction (SetRelayState) 11 ActivateInput (SetInputState) 11 ActivateDeactiveInput (SetInputState) 11 ActiveDeactiveInputGroup (SetInputGroupState) 12 Methods with answer 13 GetTimeDate 13 GetDigitalInputStatus 13 GetHardwareVersion 14 GetFirmareVersion 14 GetMemoryOccupation 15 ispollingnow 15 StartPolling 16 StopPolling 16 ImportCardholder 17 Events 21 TreatEvent 21 ControllerCommunicationError 23 ControllerCommunicationOK 23 Refresh_ioXML 23 Appendix A: Screens ID 25 Appendix B: Database Fields 26 Appendix C: Transaction Type 27 Appendix D: Denied Reasons 28

2 Introduction This document is dedicated to explain the existing XML API of GuardPoint Pro It allows an easy integration with Sensor Access control and alarm monitoring software called GuardPoint Pro. This means that an external application could receive many information from GuardPoint Pro such as online events of access control system s (Access granted, Access denied, Start of Alarm, ) and act on Access control system s by o Creating cardholders o Manages doors status, and relays status (Open a door for a while, open constantly, close constantly, or return to default status) o Manage alarm status (disarm a zone / input group) o Executing existing actions and processes of GuardPoint Pro o Login / Logoff o User interface (messages on screen) o Download configuration to controllers (that may be updated directly in DB by an external application) GuardPoint Pro has also other integration gateway such as OPC ModbusTCP Wizcon GuardPoint Pro has existing integration with Visitor management application (Telemaque ) Windows account management (ISLOG ) LPR (Zamir) Outdoor Perimeter Security Systems ( Integration with RFID Readers on Pocket PC/PDA (External Events) Reception of ONSSI Video Systems alarms (External Events) The document is based on GuardPoint Pro Version (June 2008) Most of the commands are supported in previous versions, but in order to simplify we will only work on the basis of the actual version. The communication with GuardPoint Pro is done by a communication engine called Spread. For more information about Spread, see

3 How to send commands SpreadCmd (for command without answer only) Target : D:\DEV\GuardPoint Pro\SpreadCmd.exe DANIEL <perform><cmd>displaymessage</ cmd><param><query><param1> Hi, How are you? </Param1></query></param></perform> Where DANIEL is the PC Name And GuardPoint Pro should be running XMLAPISample See the project source code in VB.NET to see how to connect to Spread and send and receive XML message. Note that GuardPoint Pro should already be running. The example uses a DLL (libtspd.dll) compiled for Windows plateform. For other platforms, please visit or specifically the page on supported platforms (Linux, Mac...). Note the spread version used by GuardPoint Pro is version GuardPoint Pro build the conf file and start the spread daemon on its computer, from the definitions of PCs in GuardPoint Pro software. If you need to work from another PC, there are 2 solutions Run a local daemon and connect to you local daemon (4803@localhost) Do not run any local daemon and connect to GuardPoint Pro PC daemon by connecting to 4803@<PCName or IP of GuardPoint Pro PC>

4 How to receive events / messages In previous versions of GuardPoint Pro, it was enough to listen to group gui to receive all type of events from any sites. From version , we add an optimization that separate the unique listen group in many groups. Now each client should listen to the followings groups names ag_<site ID> for Access granted ot_<site ID> for other type of events dp_<site ID> for debug info where Site ID is the site ID (from table SOC) io_<serverid> for IO dynamic status Where Server ID is the ID of the server (from table PC). XML Structure All XML Sent to and from GuardPoint Pro has the following Structure <perform> <cmd>name of the Command</cmd> <param> <query> <Argument1>Value1</Argument1> <Argument2>Value2</Argument2> <Argument3>Value3</Argument3>... <ArgumentN>ValueN</ArgumentN> </query> </param> </perform> The Cmd define the command name The param contains a list of arguments

5 Methods ChangeUserLogin Send a request to change the user logged in by another one with the user name and password. Syntax Cmd: ChangeUserLogin CmdLine=/us=UserName /pw=password Where UserName and Password are the credential used in Login screen of GuardPoint Pro. Example <perform><cmd>changeuserlogin</cmd><param><query><cmdline>/us=1000/pw=2000</cmdline></ query></param></perform> OpenScreen Send a request to open a screen. The command supports selecting on which record, on which tab and the screen size (Normal, minimize, or maximize). Syntax Cmd: OpenScreen Param1 ScreenID (Cf Appendix A) Param3= MinMax (0= Normal, 1=Minimized, 2 Maximized) Param4= Only for Display Photo screen onrecordid= on which record ID ontabnumber= on which tab number (starting from 0) <perform><cmd>openscreen</cmd><param><query><param1>id_cardholders</param1><param3>0</ Param3><Param4>0</Param4><onRecordID>0</onRecordID><onTabNumber>0</onTabNumber></query></ param></perform> Cf Appendix A (Screens ID) to get all the parameter according to the screen you want to open.

6 PreviewVideo Send a request to preview a camera live video with the db_cameraid (cf Appendix B). Syntax Cmd: PreviewVideo Param1 = db_cameraid (cf Appendix B) Note that this command should be sent to the PC name (in uppercase) where we want the display video to be open. <perform><cmd>previewvideo</cmd><param><query><param1>1</param1></query></param></perform> PreviewReport Send a request to preview an existing report with the report full name. Syntax Cmd: PreviewReport Param1 = report full name with path <perform><cmd>previewreport</cmd><param><query><param1>d:\dev\guardpoint report.rpx</param1></query></param></perform> ProAPI\Reports\Last DisplayMessage Send a request to display a message box with the text. Syntax Cmd: DisplayMessage Param1 = message text <perform><cmd>displaymessage</cmd><param><query><param1> Hi, How are you? </Param1></query></ param></perform>

7 MenuPrint (InsertTextinLog) Send a request to insert message in the Log windows of GuardPoint Pro. Cmd: MenuPrint st = message text Soc = 1 by default. Use to filter information on Multi site / Multi company installation only mstyle = Event Type. Will be display with the same color as defined for the event specified JustinLog (Not used) inviewphotoalso (Not used) <perform><cmd>menuprint</cmd><param><query><st>hi, How are you? </st><soc>1</soc><mstyle>0</ mstyle><justinlog>0</justinlog><inviewphotoalso>0</inviewphotoalso></query></param></perform> FloodUpdateText (InsertTextinStatusBar) Send a request to insert message in the status bar and set the percent of the progress bar. Cmd: FloodUpdateText pb = percentage number (0-100) st = message text srv (Not used) <perform><cmd>floodupdatetext</cmd><param><query><srv></srv><pb>50</pb><st>hi, How are you? </ st></query></param></perform> PlaySound Send a request to play a sound file with the full path of the sound file. Cmd: PlaySound Param1= sound file full name with path <perform><cmd>playsound</cmd><param><query><param1>c:\windows\media\windows Param1></query></param></perform> Notify.wav</

8 ExecuteAction Send a request to execute an existing action with db_actionid (cf Appendix B). Cmd: ExecuteAction pid = db_actionid (cf Appendix B) <perform><cmd>executeaction</cmd><param><query><pid>1</pid></query></param></perform> ExecuteProcess Send a request to preview an existing process with db_processid (cf Appendix B) Cmd: ExecuteProcess pid = db_processid (cf Appendix B) <perform><cmd>executeprocess</cmd><param><query><pid>1</pid></query></param></perform> CC_RecreateMemoryTables (RecreateMemoryTables) Send a request to initialize an existing controller db_controllerid (cf Appendix B) with recreation of memory tables. Cmd: CC_RecreateMemoryTables CtrID = db_controllerid (cf Appendix B) ReStartPolling = WantClearMemory = <perform><cmd>cc_recreatememorytables</cmd><param><query><ctrid>db_controllerid</ CtrID><ReStartPolling>0</ReStartPolling><WantClearMemory>1</WantClearMemory></query></param></ perform>

9 ActivateRelay (SetRelayState) Send a request to modify the relay state with the db_outputid (cf Appendix B). Activate relay is only to activate a relay few seconds Cmd: ActivateRelay OutputID = db_outputid (cf Appendix B) Delay = x seconds (1 to 120 seconds) to activate relay ID 1 during 3 sec: <perform><cmd>activaterelay</cmd><param><query><outputid>1</outputid><delay>3</delay></ query></param></perform> OutputAction (SetRelayState) Send a request to modify the relay state with the db_outputid (cf Appendix B). OutputAction is used to set a relay state that remain permanently (until next change). Cmd: OutputAction OutputID = db_outputid (cf Appendix B) Action = action code 1 for normal mode 6 for constant on 7 for constant off to activate relay ID 1 constant on: <perform><cmd>outputaction</cmd><param><query><outputid>1</outputid><action>6</action></ query></param></perform> Note this command update also the latest state of the relay in GuardPoint Pro. This command allows to control doors relays and other output (e.g. alarm siren)

10 ActivateInput (SetInputState) Send a request to modify the Input state with the db_inputid (cf Appendix B). ActivateInput is used to pulse the input few seconds. Cmd: ActivateInput InputID = db_inputid (cf Appendix B) Delay = multiple x 200ms (1 to 255 x 200 ms) to pulse input ID 1 during delay of 200 ms: <perform><cmd>activateinput</cmd><param><query><inputid>1</inputid><delay>1</delay></query></ param></perform> ActivateDeactiveInput (SetInputState) Send a request to modify the Input state with the db_inputid (cf Appendix B). ActivateDeactiveInput is used to is used to set a input state that remain permanently (until next change). Cmd: ActivateDeactiveInput InputID = db_inputid (cf Appendix B) CodeAction = action code 0 for Normal mode 8 for Deactivated 9 for Activated to deactivate input ID 1: <perform><cmd>activatedeactiveinput</cmd><param><query><inputid>1</inputid><codeaction>8</ CodeAction></query></param></perform> This command allows to control alarms sensors to be arm or not.

11 ActiveDeactiveInputGroup (SetInputGroupState) Send a request to modify the Input group state (Deactivate / Force activate the input group) with the db_inputgroupid (cf Appendix B). Cmd: ActiveDeactiveInputGroup InputGroupID = db_inputgroupid (cf Appendix B) InputGroupMode = action code 9 for Disarm during x seconds 10 for Disarm during x minutes 11 for Constant deactivated 12 for Return to normal mode (Cancel previous delay) 13 for Disarm until next time zone 14 for Activate during x seconds 15 for Activate during x minutes 16 for Constant activated 17 for Normal to normal mode (Cancel previous delay) 18 for Arm until next time zone Delay = x seconds (1 to 60 seconds, minutes) To disarm the input group 1 during 30 seconds <perform><cmd>activedeactiveinputgroup</cmd><param><query><inputgroupid>1</ InputGroupID><InputGroupMode>9</InputGroupMode><Delay>30/Delay></query></param></perform> To arm the input group 1 during 15 minutes <perform><cmd>activedeactiveinputgroup</cmd><param><query><inputgroupid>1</ InputGroupID><InputGroupMode>15</InputGroupMode><Delay>10</Delay></query></param></perform> This command allows to control alarm zones (defined as group of inputs) to be arm or not.

12 Methods with answer GetTimeDate Send a request to get the time and date of a controller db_controllerid (cf Appendix B). Cmd: GetTimeDate CtrID = db_controllerid (cf Appendix B) SyncID = as the answer is return asynchronously, we define an number in the question that is returned in the answer to know the link between the answer and the question. AnswerID contains in myid the group to whom the GuardPoint Pro server should answer. (We recommend to make such a group per PC) Sent to GuardPoint Pro: <perform><cmd>gettimedate</cmd><param><query><ctrid>1</ctrid><syncid>8</syncid><answerid myid="api_daniel" /></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>8</syncid><answer>16/12/ :53:50</ Answer></query></param></perform>

13 GetDigitalInputStatus Send a request to get the input and output status of a controller db_controllerid (cf Appendix B). It returns the logical state of the input (physical state according to NO/NC) and the Cmd: GetDigitalInputStatus CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation The returned string is build of 0/1 in the following order Inputs (1-16) Relays (1-64) Inputs (17-24) Mega specific indication R1, R2, R3, R4, PSF, MS, 0, 0 for Reader1 to 4 (R1-R4 : 1 if connected, 0 if not connected) PSF = Power Supply Failure input on board MS = MS input on board to indicate if box open or not. and two last values not used always 0 Sent to GuardPoint Pro: <perform><cmd>getdigitalinputstatus</cmd><param><query><ctrid>1</ctrid><syncid>3</ SyncID><AnswerID myid="api_daniel" /></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>3</ SyncID><Answer> </Answer></query></param></perform>

14 GetHardwareVersion Send a request to get the hardware version of a controller db_controllerid (cf Appendix B). It returns a string. For more information, consult the TPL User Manual. Cmd: GetHardwareVersion CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation To understand the string return, please consult the TPL user manual. Sent to GuardPoint Pro: <perform><cmd>gethardwareversion</cmd><param><query><ctrid>1</ctrid><syncid>5</ SyncID><AnswerID myid="api_daniel" /></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>5</syncid><answer> C7 07 </Answer></query></param></perform> GetFirmareVersion Send a request to get the firmware version of a controller db_controllerid (cf Appendix B). It returns the Eprom date and checksum. Cmd: GetFirmareVersion CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation The returned string is the date and check sum of the firmware. Sent to GuardPoint Pro: <perform><cmd>getfirmareversion</cmd><param><query><ctrid>1</ctrid><syncid>4</syncid><answerid myid="api_daniel" /></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>4</syncid><answer>10/07/ </ Answer></query></param></perform>

15 GetMemoryOccupation Send a request to get the memory occupation of a controller db_controllerid (cf Appendix B). It returns the number of cardholders stored in the controller memory. Cmd: GetMemoryOccupation CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation Sent to GuardPoint Pro: <perform><cmd>getmemoryoccupation</cmd><param><query><ctrid>1</ctrid><syncid>6</ SyncID><AnswerID myid="api_daniel" /></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>6</syncid><answer> query></param></perform> 9</Answer></ ispollingnow Send a request to know if currently we are polling or not the controllers. It returns True/False. Cmd: GetMemoryOccupation CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation Sent to GuardPoint Pro: <perform><cmd>ispollingnow</cmd><param><query><syncid>7</syncid><answerid myid="api_daniel" / ></query></param></perform> Response from GuardPoint Pro: <perform><cmd>syncgetresult</cmd><param><query><syncid>7</syncid><answer>1</answer></query></ param></perform>

16 StartPolling Send a request to Start Polling the controllers. This command update the polling queues, it adds new controllers or remove controllers have been set as not active. You can specify a specific controller or network. Without defining any controller (CtrID = 0), it starts the communication polling with all the controllers. Cmd: StartPolling CtrID = db_controllerid (cf Appendix B) NetID = db_netwokid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation <perform><cmd>startpolling</cmd><param><query><ctrid>0</ctrid><netid>0</netid><syncid>2</ SyncID><AnswerID myid="api_daniel" /></query></param></perform> Note that we send a SyncID even if we do not require a answer in order to force GuardPoint Pro to finish this request before processing another request. StopPolling Send a request to Stop Polling the controllers. You can specify a specific controller. Without defining any controller (CtrID = 0), it stops all the communication polling with the controllers. Cmd: StopPolling CtrID = db_controllerid (cf Appendix B) SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation <perform><cmd>stoppolling</cmd><param><query><ctrid>0</ctrid><syncid>3</syncid><answerid myid="api_daniel" /></query></param></perform> Note that we send a SyncID even if we do not require a answer in order to force GuardPoint Pro to finish this request before processing another request.

17 ImportCardholder Send a request to import a cardholder in the database and inform the controllers. This allows adding, updating or deleting cardholders. Cmd: ImportOneCardHolderXML SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation Number = Last_Name = name of the cardholder First_Name = first name Type 0 for Cardholder 1 for Visitor 2 for Guard 3 for Deleted Badge = badge code (most of the time 8 digits) Technology 1 for Magnetic 2 for BarCode 3 for Wiegand 4 for Wiegand2 5 for WiegandKeypad 6 for BioSmartCard 7 for Touch 8 for Radio Photo = file name of the picture Department = name of the department Office_Phone Access_Group= name of the access groups (separated with ;) PIN_code = 4 digits From_Date To_Date Validated = 1 for True, 0 for False Street City ZIP Supervisor Label_1 Label_2 Label_3 Label_4 Company Lift_Program = name of lift Program Parking_Users_Group = name of Parking User Group MultiSite_Type 0 for Local 1 for Shared 2 for Global Site = name of the site Personal_WP = name of the Weekly Program Personal_CL= value of the Crisis Level 0-7 Keep_card_on_motorized_reader = 1 for True, 0 for False No_APB = 1 for True, 0 for False No_access_during_holidays = 1 for True, 0 for False Reset_APB = 1 for True, 0 for False Need_Escort = 1 for True, 0 for False Badge_Printing_Layout Visited_person Visited_person_location Visit_purpose Eye_Color = This field is an example of Customized Fields. They should be added in the XML in order to import them.

18 Sent to GuardPoint Pro: <perform><cmd>importonecardholderxml</ cmd><param><query> <SyncID>17</SyncID> <AnswerID myid="api_daniel" /> <Number>Dir784</Number> <Last_Name>Smith</Last_Name> <First_Name>John</First_Name> <Type>1</Type> <Badge> </Badge> <Technology>3</Technology> <Photo></Photo> <Department></Department> <Office_Phone></Office_Phone> <Access_Group>Anytime Anywhere</Access_Group> <PIN_code></PIN_code> <From_Date>01/01/ :00:00</From_Date> <To_Date></To_Date> <Validated>1</Validated> <Street></Street> <City></City> <ZIP></ZIP> <Personal_Phone> </Personal_Phone> Response from GuardPoint Pro: The answer contains the result: 0 for UpdateSuccessfully 1 for InsertSuccessfully 10 for MandatoryFieldMissing 11 for UpdateFailed 12 for InsertFailed 13 for AuthorisationExcedded 14 for CannotChangeGuard 15 for DuplicateName 16 for CardHolderDeleted 17 for BadgeCodeNotOK <Description></Description> <Car_Number></Car_Number> <ID></ID> <Supervisor>1</Supervisor> <Label_1></Label_1> <Label_2></Label_2> <Label_3></Label_3> <Label_4></Label_4> <Company></Company> <Lift_Program></Lift_Program> <Parking_Users_Group></Parking_Users_Group> <MultiSite_Type>0</MultiSite_Type> <Site></Site> <Personal_WP></Personal_WP> <Personal_CL>0</Personal_CL> <Keep_card_on_motorized_reader>1</ Keep_card_on_motorized_reader> <No_APB>1</No_APB> <No_access_during_holidays>1</No_access_during_holidays> <Reset_APB>1</Reset_APB> <Need_Escort>1</Need_Escort> <Badge_Printing_Layout></Badge_Printing_Layout> <Visited_person></Visited_person> <Visited_person_location></Visited_person_location> <Visit_purpose></Visit_purpose> <Eye_Color>Blue</Eye_Color> </query></param></perform> The import creates the cardholder, the badge, the access group if not found, the department if not found, the lift program if not found, the parking user group if not found, the personal weekly program if not found It supports Multiple Access Group (use ; to separate the names of the access group) Dynamic Fields Multi site fields For more details about the import, consult the user manual of GuardPoint Pro about import profiles.

19 Events TreatEvent Wake up the application when information to be displayed in Log windows arrives. Cmd: TreatEvent SyncID = see GetTimeDate explanation AnswerID = see GetTimeDate explanation Trn_Type = Transaction type (see Appendix C) Access Unknown Start of Access granted denied Card Alarm ID db_tablelog_id (cf Appendix B) mdate Date of the event End of Alarm Technical Alarm Trn_Type From_Name Input Name Controller Reader name name Desc1 0 if immediate 2 0 Transaction code if delayed Desc2 Denied Reasons Null 0 (see Appendix D) Desc3 Cardholder name Card code Null EmpPhoto Filename of the employee photo Bus2 if comes from Alarm priority bus NoLogHistory isdoorcontact isrtx 1 if True, 0 if False 1 if True, 0 if False 1 if True, 0 if False DoorName Reader name if RTX or Door contact Reader db_readerid (cf Appendix B)] 0

20 minput Controller 1 if escort else 0 db_controllerid (cf Appendix B) db_inputid (cf Appendix B) Cardholder db_cardholderid (cf Appendix B) 0 0 User 0 in these case, db_userid (cf Appendix B) for Login.. SOC db_socid (cf Appendix B) CH_Trans Acknowledged Confirmed tmpstyle Soc2 Not used 0 (useful only for multi company sites) CameraID db_cameraid (cf Appendix B) 0 Examples: <perform><cmd>treatevent</cmd><param><query><id>0</id><mdate>16/12/ :40:57</ mdate><trn_type>1</trn_type><from_name>rdr01 / Mega</From_Name><Desc1>0</Desc1><Desc2>0</ Desc2><Desc3>Smith John </Desc3><Reader>1</Reader><mInput>0</mInput><Controller>1</ Controller><Cardholder>4</Cardholder><User>0</User><Soc>1</Soc><Soc2>1</Soc2><CH_Trans>1</ CH_Trans><Acknowledged>0</Acknowledged><Confirmed>0</Confirmed><tmpStyle>0</ tmpstyle><nologhistory>0</nologhistory><empphoto></empphoto><isdoorcontact>0</ isdoorcontact><isrtx>0</isrtx><doorname></doorname><cameraid>0</cameraid></query></param></ perform> 16/12/08 14:40:57 Access Granted 'Smith John ' From reader 'Rdr01 / IC4000' <perform><cmd>treatevent</cmd><param><query><id>0</id><mdate>16/12/ :41:47</ mdate><trn_type>3</trn_type><from_name>rdr02 / Mega</From_Name><Desc1>0</Desc1><Desc2>8</ Desc2><Desc3>Smith John </Desc3><Reader>2</Reader><mInput>0</mInput><Controller>1</ Controller><Cardholder>4</Cardholder><User>0</User><Soc>1</Soc><Soc2>1</Soc2><CH_Trans>1</ CH_Trans><Acknowledged>0</Acknowledged><Confirmed>0</Confirmed><tmpStyle>0</ tmpstyle><nologhistory>0</nologhistory><empphoto></empphoto><isdoorcontact>0</ isdoorcontact><isrtx>0</isrtx><doorname></doorname><cameraid>0</cameraid></query></param></ perform> 16/12/08 14:41:47 Access Denied 'Smith John ' From reader 'Rdr02 / IC4000' - Not Authorized at this time

21 <perform><cmd>treatevent</cmd><param><query><id>0</id><mdate>16/12/ :53:02</ mdate><trn_type>11</trn_type><from_name>i05 / Mega</From_Name><Desc1>2</Desc1><Desc2></ Desc2><Desc3></Desc3><Reader>0</Reader><mInput>5</mInput><Controller>1</ Controller><Cardholder>0</Cardholder><User>0</User><Soc>1</Soc><Soc2>0</Soc2><CH_Trans>0</ CH_Trans><Acknowledged>0</Acknowledged><Confirmed>0</Confirmed><tmpStyle>0</ tmpstyle><nologhistory>0</nologhistory><empphoto></empphoto><isdoorcontact>0</ isdoorcontact><isrtx>0</isrtx><doorname></doorname><cameraid>0</cameraid></query></param></ perform> 16/12/08 14:53:02 End of alarm From input 'i05 / IC4000' <perform><cmd>treatevent</cmd><param><query><id>0</id><mdate>16/12/ :53:03</ mdate><trn_type>10</trn_type><from_name>i01 / Mega</From_Name><Desc1>0</Desc1><Desc2></ Desc2><Desc3></Desc3><Reader>0</Reader><mInput>1</mInput><Controller>1</ Controller><Cardholder>0</Cardholder><User>0</User><Soc>1</Soc><Soc2>0</Soc2><CH_Trans>0</ CH_Trans><Acknowledged>0</Acknowledged><Confirmed>0</Confirmed><tmpStyle>0</ tmpstyle><nologhistory>0</nologhistory><empphoto></empphoto><isdoorcontact>1</ isdoorcontact><isrtx>0</isrtx><doorname>rdr01 / Mega</DoorName><CameraID>0</CameraID></ query></param></perform> 16/12/08 14:53:03 Start of Alarm From input 'i01 / Mega'- Immediate. Door forced 'Rdr01 / IC4000'

22 ControllerCommunicationError Wake up the application when a controller starts to be in Communication error. It returns the text to be displayed in Log windows. <perform><cmd>pollingerror</cmd><param><query><text>16/12/ :32: Communication error Mega - Error 263. Timeout</Text><CtrSoc>1</CtrSoc></query></param></perform> ControllerCommunicationOK Wake up the application when a controller returns to be in Communication OK. It returns the text to be displayed in Log windows. <perform><cmd>comok</cmd><param><query><text>16/12/ :33:58 Communication OK Mega</ Text><CtrSoc>1</CtrSoc></query></param></perform> Refresh_ioXML Wake up the application when changes on input output status logical status arrives. It returns the states of all input outputs of all the controllers. Cf GetDigitalInputStatus methods for the format of the io string. <perform><cmd>refresh_ioxml</cmd><param><io server="daniel"><ctr1 io=" " server="daniel"/><ctr2 io=" " server="daniel"/></io></param></perform>

23 Appendix A: Screens ID Screens ID ID_APBLevel ID_Area ID_Departement ID_Diagnostic ID_Visitor ID_AccessGroup ID_Actions ID_Badge ID_Cardholders ID_Computer ID_Configuration ID_Controllers ID_Counters ID_DailyProgram ID_EventHandlingProgram ID_GlobalReflex ID_InputGroup ID_OutputGroup ID_Holiday ID_Log ID_Network ID_Process ID_WeeklyProgram ID_ParkingDefinition ID_Company ID_ZoneID ID_User ID_AuthorisationsLevels ID_Icons Description Anti Pass Back Level Area Department Diagnose Visitor Access Group Action Badge All Cardholders Computer Customized Label Controller Counter Daily Program Event Handling Program Global Reflex Input Group Output Group Holiday Active Alarms Network Process Weekly Program Parking Lot Company / Site Parking User Group Users Authorisation Levels Icons / Symbols

24 ID_Maps ID_Positions ID_LiftAuthorisationGroups ID_LiftProgram ID_TimeAttendance ID_CrisisLevel ID_ExecuteProcess ID_GuardDefinition ID_ViewPhoto ID_PatrolTour ID_CheckPoint ID_PatrolStatus ID_DisplayJournalSmall ID_CreateagroupofBadges ID_ImportProfile ID_CustomizedFields ID_Camera ID_Matrix ID_LocationStatus Maps Position Lift Authorisation group (only when Lift per Reader) Lift program Roll Call Send a Crisis Level Execute Process Guard Definition View Photo Patrol Tour Checkpoints Patrol status Report wizard Group of Badge Import profiles Customized fields Camera Matrix Location Status

25 Appendix B: Database Fields The database fields db_controllerid db_readerid db_inputid db_ouputid db_networkid Select ID, Name from Controller Select ID, Name from Reader Select ID, Name from [Input] Select ID, Name from [Output] Select ID, Name from Network db_socid db_readersocid db_cardholdersocid db_tablelog_id Select ID, Name from SOC Select ID from LOG db_cardholderid db_cameraid db_inputgroupid db_actionid db_processid Select ID, Last_Name & & First_Name as Name from CRDHLD Select ID, Name from Camera Select ID, Name from IGrp Select ID, Name from [Action] Select ID, Name from Process

26 Appendix C: Transaction Type The TRN_TYPE is describe in Param database in table Log_Events: 1 Access Granted 2 Access Granted + Duress code 3 Access Denied 4 Access Denied + unsuccessful successive trials 10 Start of Alarm 11 End of alarm 12 Line short 13 Line cut 14 Status 1 (Analog Input) 15 Status 2 (Analog Input) 16 Status 3 (Analog Input) 17 Status 4 (Analog Input) 22 Table Error 23 Low Battery 24 Power Down 25 Power Up 26 Power Supply Failure (input PSF closed) 27 Power Supply OK (input PSF opened) 28 Box Opened (input MS opened) 29 Box Closed (input MS closed) 31 Communication OK 32 Communication Error 33 Satellite alarm 3 Reader disconnected 35 Reader connected 40 User Acknowledgment 50 User Confirmation 51 User Comment 61 Unknown Card 62 Unknown card + unsuccessful successive trials 63 Non Allocated Badge 70 New record 71 Save record 72 Delete record 81 Application Login 82 Application Logout 90 Arrival 91 Early Arrival 92 No arrival on time 93 Late Arrival 94 Start guard tour 100 Scheduler 200 Initialize Controller

27 Appendix D: Denied Reasons The denied reasons is decimal value that indicate a combination of 8 reasons If the value = 250 means Supervisor If the value = 255 means Access Group For other values, the value should be change in binary. 1 - wrong finger 2 - Wrong Keypad Code 4 - Full / Lock / No answer from Door 8 - Not Authorized at this time 16 - Anti-Pass Back 32 - Reader not allowed 64 - Site Code not ok Inhibited Cardholder If escort 1 - Card Unknown 2 - Wrong Keypad Code 4 - No card after 10 sec 8 - Not Authorized at this time 16 - Anti-Pass Back 32 - Inhibited Cardholder 64 - Site Code not ok Escort not authorized

Modbus IP Server User Guide

Modbus IP Server User Guide Preface The GuardPointPro, since version 1.6.043, supports integration of Modbus IP. This support enables external SCADA (Supervisory Control and Data Acquisition) applications to communicate with the

More information

GuardPoint Pro OPC Server User Guide

GuardPoint Pro OPC Server User Guide The OPC Standard The OPC standard defines common interfaces for the data exchange between devices, PLC's and Windows applications. OPC The OPC standard has been introduced by a group of major USA companies,

More information

Amadeus 5 User Manual

Amadeus 5 User Manual Amadeus 5 User Manual Publication No. 10UE600 V2.3 DDS 2012 About this User Manual: This User Manual describes the general functioning of Amadeus 5 software, how to install it and how to define all the

More information

Webpass IP Reader. WEB Configuration Manual

Webpass IP Reader. WEB Configuration Manual Webpass IP Reader WEB Configuration Manual WEBPASS version : v0.09 Aug-24 th -2009 (HW.1.0) WEBPASS Web version : v1.4 Build date : Aug-18 th -2009 Revision History 1. Newly added Event Type : Alarm and

More information

TCS Access Control System Cheat Sheet

TCS Access Control System Cheat Sheet TCS Access Control System Cheat Sheet Access Control Main Screen 1 Toolbar 2 Device View Toolbar No. Name Function 1 Login Logs in the ASServer. 2 Logout Logs out the ASServer. 3 Devices Defines controllers

More information

MICROTRAK EVOLUTION.NET USER GUIDE

MICROTRAK EVOLUTION.NET USER GUIDE MAN047-08 AUGUST 2016 GETTING STARTED Microtrak Evolution.NET consists of easy to use, intuitive modules. They cover the main areas of operation - User Management, Personnel Management, Facility Management,

More information

Portals 14 What is a portal? 14 Hardware 15 RS232 to RS USB to RS TCP/IP to RS Add a Serial Portal 16 Add a Network portal 16

Portals 14 What is a portal? 14 Hardware 15 RS232 to RS USB to RS TCP/IP to RS Add a Serial Portal 16 Add a Network portal 16 PROS LITE User Manual Version 2.0.0 www.visual-plus.com Table of Contents Getting Started 5 Starting PROS Lite 5 Create a Portal 5 Adding a control panel 6 Adding a user 7 Upload users to a controller

More information

Integriti User Guide

Integriti User Guide Integriti User Guide Table of Contents InTEGRITI SOFTWARE 1 Software Applications 2 LOGIN Window 2 Integriti Servers SOFTWARE NAVIGATION 3 USER INTERFACE 3 Ribbon 4 Review Panel 4 Actions Panel 4 NAVIGATION

More information

R A D I O N I C S. READYKEY K6100 Readykey for Windows. User Guide. Logging In. Logging Out. If an ID device has been issued:

R A D I O N I C S. READYKEY K6100 Readykey for Windows. User Guide. Logging In. Logging Out. If an ID device has been issued: R A D I O N I C S READYKEY K6100 Readykey for Windows User Guide Logging In If an ID device has been issued: 1. Use your ID device with the desktop administration or Central Network Controller (CNC) reader,

More information

SEMAC-D1. WEB Configuration Manual

SEMAC-D1. WEB Configuration Manual SEMAC-D1 WEB Configuration Manual For SEMAC-D Series Only: 1.00.00,Dec 23 2013(HW1.1) SEMAC Web Ver1.0 / Build Date 12/23/2013 Contents WEB Configuration...1 Logon WEB...1 Premise... 1 WEB IE Browser...1

More information

Pro-Watch 3.8 Eco System Galaxy Dimension Integration Guide

Pro-Watch 3.8 Eco System Galaxy Dimension Integration Guide Pro-Watch 3.8 Eco System Galaxy Dimension Integration Guide Document Date : Aug 2010 Pro-Watch 3.8 Galaxy Integration Guide.doc Page 1 of 15 Table of Contends Chapter Page Scope of this document 3 Installation

More information

USER MANUAL. 7" Intelligent Digital Video Doorphone Indoor Unit TIP-DPH-INT7. Product Overview Product Description

USER MANUAL. 7 Intelligent Digital Video Doorphone Indoor Unit TIP-DPH-INT7. Product Overview Product Description 7" Intelligent Digital Video Doorphone Indoor Unit Product Overview...1 Product Description...1 Basic Function...2 UI Interface Introduction and Operation Instruction...3 Installation Instruction...18

More information

SmartLock Surf OPERATOR GUIDE

SmartLock Surf OPERATOR GUIDE SmartLock Surf OPERATOR GUIDE May 2015 Table of Contents Introduction... 5 Server PC Requirements... 7 Client PC Requirements... 7 Step 1. Software Installation... 8 Step 2. Firewall... 8 Step 3. Port

More information

Controlsoft Identity and Access Management Software Controlsoft Identity Access Management Software

Controlsoft Identity and Access Management Software Controlsoft Identity Access Management Software Controlsoft Identity Access Management Software IA Server Software Installation Guide v8.0.229 2018 Controlsoft Ltd 9010-0050 Issue 6 Page 1 of 39 29/10/2018 Contents 1. Introduction... 3 1.1. PC Specifications...

More information

GV-ASManager. User's Manual V ASMV40-A-EN

GV-ASManager. User's Manual V ASMV40-A-EN GV-ASManager User's Manual V4.2.0.0 ASMV40-A-EN 2012 Guardian Security Solutions, L.C. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

GV-ASManager. User's Manual V1.1

GV-ASManager. User's Manual V1.1 GV-ASManager User's Manual V1.1 2008 GeoVision, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of GeoVision. Every effort

More information

Installation & operation manual SUPERVISOR SOFTWARE KaDe Premium Plus II

Installation & operation manual SUPERVISOR SOFTWARE KaDe Premium Plus II Installation & operation manual SUPERVISOR SOFTWARE KaDe Premium Plus II V 1.1.0026.138B Update: 15-05-2018 R2 CONTENTS Chapter 1 Introduction 1.1 General information................. 5 1.2 System functions

More information

Antipassback, Parking and Access Areas. Technical Support Engineering Rosslare Security NA For more information please see

Antipassback, Parking and Access Areas. Technical Support Engineering Rosslare Security NA For more information please see Antipassback, Parking and Access Areas Technical Support Engineering Rosslare Security NA For more information please see www.axtraxng.com Antipassback prevents a user from using the same credential multiple

More information

2015/09/24. M-Touch

2015/09/24. M-Touch M-Touch 2.00.12 VERSION HISTORY (> 1.00) Graphics Maps: by means of Graphic Maps it s possible to display the alarm zones simply by tapping icons on the map shown on keypad screen. It s very simple to

More information

IS2000. Administrative Operator s Guide

IS2000. Administrative Operator s Guide IS2000 Administrative Operator s Guide Table of Contents Logging Off... 7 Event Manager... 7 HARDWARE MANAGER... 8 Maneuvering the Hardware Tree... 8 Unlocking the Module... 8 Viewing the Hardware Tree...

More information

Access Control Unit User s Guide

Access Control Unit User s Guide NetAXS Access Control Unit User s Guide The configurations described in this document have not been reviewed by Underwriters Laboratories Inc. June 2007 2007 Honeywell. All rights reserved. 800-00233,

More information

MorphoManager User Manual. Table of Contents

MorphoManager User Manual. Table of Contents User Manual Table of Contents Introduction... 4 Support... 4 Overview... 5 What is a client?... 5 What is a server?... 5 What is a fingerprint enrollment device?... 5 What is a MorphoAccess?... 6 What

More information

Legrand Access System Software USER GUIDE

Legrand Access System Software USER GUIDE Legrand Access System Software USER GUIDE Introduction The Legrand Access System Software package is part of a series of tools developed by Legrand to manage building access control in the tertiary sector.

More information

SPC Connect Configuration V2.0

SPC Connect Configuration V2.0 SPC Connect Configuration V2.0 I-200090-2 Copyright Copyright Technical specifications and availability subject to change without notice. Copyright Vanderbilt We reserve all rights in this document and

More information

Integra32. Quick Reference Guide. Step 1: Install the Software. Installation from CD

Integra32. Quick Reference Guide. Step 1: Install the Software. Installation from CD Step 1: Install the Software Integra32 Installation from CD 1. Before installing the Integra32 software please read carefully the document TB63_InstallIntegra32r4.2.doc in the documents directory of the

More information

Alarm Monitoring User Guide

Alarm Monitoring User Guide Alarm Monitoring User Guide ReadykeyPRO Unlimited, Version 6.5 Bosch ReadykeyPRO Unlimited Alarm Monitoring User Guide, product version 6.5 This guide is part 1 of a 2-document suite, item number DOC-201-01-2-026,

More information

Configuring Personnel and Badges

Configuring Personnel and Badges CHAPTER 10 This chapter describes how to create the personnel records and badges used to access doors in the Cisco Physical Access Control system. Note For instructions to synchronize Cisco PAM with personnel

More information

Zodiac iclass OPERATOR GUIDE

Zodiac iclass OPERATOR GUIDE Zodiac iclass OPERATOR GUIDE June 2008 Page 2 of 19 Table of Contents Introduction... 4 PC Requirements... 4 Installing the USB Fingerprint Scanner (Hamster)... 5 Installing the USB Smartcard Programmer...

More information

Watch Tour Manager Operations Manual

Watch Tour Manager Operations Manual Watch Tour Manager Operations Manual INTRODUCTION... 1 SECTION 1 - DEFINING WATCH TOURS... 1 1.1 DEFINING LOCATIONS... 1 1.2 DEFINING SCHEDULES... 2 1.2.1 Defining a Frequency Based Schedule... 4 1.2.2

More information

User Guide V6.1g / 48730B

User Guide V6.1g / 48730B READYKEY User Guide Readykey for Windows Software 17231 V6.1g / 48730B UL Listings Trademarks UL 294 - Access Control System Units Microsoft, Windows, Windows NT are either registered trademarks or trademarks

More information

PROFESSIONAL FIRMWARE VERSION 1 de marzo de PROFESSIONAL FIRMWARE VERSION User guide V1.0

PROFESSIONAL FIRMWARE VERSION 1 de marzo de PROFESSIONAL FIRMWARE VERSION User guide V1.0 2013 PROFESSIONAL FIRMWARE VERSION 1 de marzo de 2013 PROFESSIONAL FIRMWARE VERSION User guide V1.0 Index: Getting started... 3 1.1 Fingerprint Placement... 3 1.2 Instruction for Card Swipe... 3 1.3 Precautions...

More information

Quick Reference Guide Quick Reference Guide. Integra32. Quick Reference Guide. RBH Access Technologies Inc. RBH Access Technologies Inc.

Quick Reference Guide Quick Reference Guide. Integra32. Quick Reference Guide. RBH Access Technologies Inc. RBH Access Technologies Inc. Integra32 Quick Reference Guide Page 1 Page 2 Step 1: Install the Software Step 2: Start Program To install the software from a CD: 1. Load the CD. 2. Browse the CD and locate Setup.exe. 3. Run Setup.exe

More information

ATS1190 Smart Card Reader Programming Manual

ATS1190 Smart Card Reader Programming Manual ATS1190 Smart Card Reader Programming Manual Version 2.0 Aritech and Tecom are Interlogix Companies 2001 Interlogix B.V.. All rights reserved. Interlogix B.V. grant the right to reprint this manual for

More information

Product Overview. Revision 1.3

Product Overview. Revision 1.3 Product Overview Revision 1.3 Revision History Revision 1.0 Initial release. Revision 1.1 HS changed to CP - page 7& 8 Revision 1.2 CP changed to Secure Changed Drawing on page 8 Revision 1.3 Added Off-Line

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

Configuring Door and Device Templates

Configuring Door and Device Templates CHAPTER 8 This chapter describes how to create and modify door and device templates. Device templates define common settings for device types, such as Gateways, readers and locks. Door templates define

More information

Smart Access Control System Software User Manual (Client Version)

Smart Access Control System Software User Manual (Client Version) Disclaimer Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be reproduced

More information

Access Control Software Operation Guide

Access Control Software Operation Guide Access Control Software Operation Guide Mar. 25, 2014 CONTENTS Part 1 Installation and Unload of Software... 5 1.1 Basic Steps of Installation... 5 1.2 Basic requirements for hardware of Installation...

More information

Connect Alarm app App operation quick guide

Connect Alarm app App operation quick guide SECURITY PRODUCTS If you can read this Click on the icon to choose a picture or Reset the slide. To Reset: Right click on the slide thumbnail and select reset slide or choose the Reset button on the Home

More information

ACCO SOFT. Configuration program for ACCO NET access control system. User Manual

ACCO SOFT. Configuration program for ACCO NET access control system. User Manual ACCO SOFT Configuration program for ACCO NET access control system User Manual Program version 1.15.8 acco soft_en 11/17 SATEL sp. z o.o. ul. Budowlanych 66 80-298 Gdańsk POLAND tel. +48 58 320 94 00 www.satel.eu

More information

PL- AC02B6 AZ. WEB Configuration Manual

PL- AC02B6 AZ. WEB Configuration Manual PL- AC02B6 AZ WEB Configuration Manual Applied for : 3.00.00,May/15/2013 (HW1.2) PL- AC02B6 AZ Series: Web Ver1.0 Build Date: May/15/2013 Contents -WEB Configuration-... 1 WEB Logon... 1 Preparation...

More information

2010 Product Line Catalog

2010 Product Line Catalog 2010 Product Line Catalog emerge Embedded Software Systems w Part of Access SySTEM From enterprise-wide security management to small and mid-size access control, Linear s IEI brand has a choice of, giving

More information

USER MANUAL. smartengine 30 RELEASE DATE: 15/06/2010

USER MANUAL. smartengine 30 RELEASE DATE: 15/06/2010 USER MANUAL smartengine 30 RELEASE DATE: 15/06/2010 Disclaimer The instructions in this document have been carefully checked for accuracy and are presumed to be reliable. Smart I Electronics Systems Pvt

More information

BF-631W. WEB User Manual

BF-631W. WEB User Manual BF-631W WEB User Manual Applied for : 1.01.02,May/15/2013 (HW1.1) BF-631W Series: Web Ver1.1 Build Date:Jan/30/2013 Contents -WEB Configuration-...1 WEB Logon...1 Preparation...1 How to search BF-631W...1

More information

Table of Contents. Introduction. Loading the Software. Assigning the RFID Tags

Table of Contents. Introduction. Loading the Software. Assigning the RFID Tags Table of Contents Introduction Loading the Software Assigning the RFID Tags Getting Started Planning and Tag Placement Initial Software Setup After Software Configuration Configuring PATROL MANAGER PRO

More information

ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL

ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL 01/2004 Centaur is a registered trademark of Position Technology INC. Pro-Report, Tracker, FrontGuard and FrontView are trademarks of Position Technology Inc.

More information

R o g e r A c c e s s C o n t r o l S y s t e m 5. Application note no. 007 Document version: Rev. C. CCTV in RACS 5

R o g e r A c c e s s C o n t r o l S y s t e m 5. Application note no. 007 Document version: Rev. C. CCTV in RACS 5 R o g e r A c c e s s C o n t r o l S y s t e m 5 Application note no. 007 Document version: Rev. C CCTV in RACS 5 Introduction RACS 5 system can be enhanced with additional functionalities when linked

More information

AxTraxNG Access Control Management Software Software Manual (Version 27.x)

AxTraxNG Access Control Management Software Software Manual (Version 27.x) AxTraxNG Access Control Management Software Software Manual (Version 27.x) Copyright 2017 by Rosslare. All rights reserved. This manual and the information contained herein are proprietary to ROSSLARE

More information

Technical documentation

Technical documentation Document type: Technical documentation Scope: Galaxy Integration Product: IFTER EQU Prepared: 2015 1 Contents 1.0 IFTER EQU Visualization software 4 2.0 Honeywell Galaxy control units visualization 6 3.0

More information

SmartLock Pro Plus OPERATOR GUIDE

SmartLock Pro Plus OPERATOR GUIDE SmartLock Pro Plus OPERATOR GUIDE April 2014 Table of Contents Introduction... 5 PC Requirements... 6 Step 1. Software Installation... 6 Program Navigation... 7 Step 2. System Properties... 8 Serial Communication

More information

ALARM MONITORING USER GUIDE

ALARM MONITORING USER GUIDE ONGUARD ET ALARM MONITORING USER GUIDE Lenel OnGuard ET Alarm Monitoring User Guide, product version 5.10.210 This guide is part 1 of a 2-document suite, Item number DOC-203, revision 63, September 2002

More information

First Access Express OPERATOR GUIDE

First Access Express OPERATOR GUIDE First Access Express OPERATOR GUIDE October 2016 Cutting edge simplicity Table of Contents Introduction... 4 PC Requirements... 5 Step 1. Software Installation... 5 Complete Installation Server and Client...

More information

Browser Managed Security With No Software Installation

Browser Managed Security With No Software Installation Browser Managed Security With No Software Installation Sonitrol eaccess is an Integrated Security Management System with embedded software. It combines powerful systems integration with an easy-to-use

More information

CCM/CCMx Version Release Notes Copyright , Identiv. Updated on April 6, 2018.

CCM/CCMx Version Release Notes Copyright , Identiv. Updated on April 6, 2018. CCM/CCMx Version 7.6.01 Release Notes Copyright 2014-2018, Identiv. Updated on April 6, 2018. Overview This document describes the changes in the CCM and CCMx firmware since version 7.5.70. To make it

More information

BioSense III. WEB Configuration Manual

BioSense III. WEB Configuration Manual BioSense III WEB Configuration Manual Applied to: 1.00.03,Apr 16 2014(HW1.2) BioSense-III-COMBO Web Ver1.0 Build Date 04/03/2014 Contents -WEB Configuration-...1 WEB Logon...1 Preparation...1 How to search

More information

Installation Guidelines for KODAK SA101 Alarm System

Installation Guidelines for KODAK SA101 Alarm System Installation Guidelines for KODAK SA101 Alarm System CONTENTS I- Installing the central unit Pages 3-4 II- Home page Page 5 III- Central unit set-up Page 6 IV- Installation and settings: Pages 7-13 cameras

More information

OnGuard Integration User Guide. v

OnGuard Integration User Guide. v OnGuard Integration User Guide v. 17.01.30 Table of Contents Introduction 1- StoneLock Pro Hardware Configuration 2- Installation 2.1- Installing the SLMS and Service Applications 2.2- Configuring for

More information

AxTraxNG Access Control Management Software Software Manual (Version 27.x)

AxTraxNG Access Control Management Software Software Manual (Version 27.x) AxTraxNG Access Control Management Software Software Manual (Version 27.x) Copyright 2015 by Rosslare. All rights reserved. This manual and the information contained herein are proprietary to ROSSLARE

More information

Configuring Cisco Access Policies

Configuring Cisco Access Policies CHAPTER 11 This chapter describes how to create the Cisco Access Policies assigned to badge holders that define which doors they can access, and the dates and times of that access. Once created, access

More information

time. This feature saves time and cost of the personal. their various attendance and leave details.

time. This feature saves time and cost of the personal. their various attendance and leave details. Leave Requests and Approvals With just a single click of the mouse, employees instantly submit their leave request and those requests are routed to reporting officer and HR's window. Reporting office or

More information

INT-TSI Brief User Manual

INT-TSI Brief User Manual int-tsi_u_en 03/15 Keypad INT-TSI Brief User Manual SATEL sp. z o.o. ul. Budowlanych 66 80-298 Gdańsk POLAND tel. 58 320 94 00 info@satel.pl www.satel.eu Firmware version 1.04 WARNINGS Please read this

More information

GV-Access for ios and Android Mobile Devices

GV-Access for ios and Android Mobile Devices GV-Access for ios and Android Mobile Devices Contents Introduction... 2 Connecting to GV-ASManager... 3 Managing Controllers... 5 Managing LPR... 8 Push Notification... 10 GeoVision Inc. 1 Revision Date:

More information

Protege WX End User Guide

Protege WX End User Guide PRT-WX-DIN Protege WX End User Guide The specifications and descriptions of products and services contained in this document were correct at the time of printing. Integrated Control Technology Limited

More information

USER MANUAL. Disclaimer

USER MANUAL. Disclaimer USER MANUAL Disclaimer The instructions in this document have been carefully checked for accuracy and are presumed to be reliable. Smart I Electronics Systems Pvt. Ltd. and its writers assume no responsibility

More information

USER GUIDE for ios 1

USER GUIDE for ios 1 USER GUIDE for ios 1 CONTENTS GETTING STARTED 3 DOWNLOAD THE SECURESMART APP 3 LOGIN 3 DASHBOARD 4 MENU 5 SETTING UP TOUCH ID 6 USING THE APPLICATION 7 SECURITY SYSTEM KEYPAD 7 HOME AUTOMATION 8 VIEWING

More information

Roger Access Control System

Roger Access Control System Roger Access Control System Integration of RACS 5 Through Web Services API Software version: 1.3 Document version: Rev. C INTEGRATION CONCEPT The RACS 5 system can be integrated with other systems via

More information

WebPass IP Reader. WEB Configuration Manual

WebPass IP Reader. WEB Configuration Manual WebPass IP Reader WEB Configuration Manual Applied for 1.50.03: May-13rd-2013 (HW1.1) WEBPASS Web Ver4.3 Build Date May-13rd-2013 Contents -WEB Configuration-...1 WEB Logon...1 Preparation...1 How to search

More information

DSC PowerSeries Neo Integration

DSC PowerSeries Neo Integration DN2120-1015 DSC PowerSeries Neo Integration The purpose of this application note is to explain how to setup the DSC PowerSeries Neo integration with a KT-400 or a KT-1-M (or PCB) using an RS-232 or IP

More information

3 inches Facial & Fingerprint Recognition

3 inches Facial & Fingerprint Recognition 3 inches Facial & Fingerprint Recognition Series Product User Manual Version: 3.0 Date: Nov. 2011 About This Manual This document introduces the user interface and menu operations of 3 inches Facial &

More information

Acceptance Test Plan

Acceptance Test Plan Acceptance Test Plan Terminus Security Contents Power Control... 5 Door Lock... 5 Video Capture... 6 Motion Detection... 7 Temperature Sensing... 7 UPS... 8 Token Authentication... 8 Logging System...

More information

GV-ASManager. User's Manual V2.11

GV-ASManager. User's Manual V2.11 GV-ASManager User's Manual V2.11 2009 GeoVision, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of GeoVision. Every

More information

U-FLASH Setup Guide U-FLASH.

U-FLASH Setup Guide U-FLASH. U-FLASH Setup Guide Thank you for purchasing the U-FLASH. This guide will assist you in the setup of the system. You can call for FREE technical support to get help anytime at 757-258-0910. Please note,

More information

VTH16 Series User s Manual

VTH16 Series User s Manual VTH16 Series User s Manual V1.0.0 Table of Contents 1 General Introduction... 4 1.1 Model List... 4 1.2 Front Panel... 4 1.3 Rear Panel... 5 2 Product Function... 7 2.1 Basic Function... 7 2.1.1 Main Menu...

More information

Telephone and Reporting Setup in ElkRP

Telephone and Reporting Setup in ElkRP Telephone and Reporting Setup in ElkRP 1. To add a telephone, right click on Telephones under Folder items on the left side of the screen. Then select New Telephone. 2. On the New Telephone IDs screen,

More information

BioSense II. (T/A System) WEB Configuration Manual

BioSense II. (T/A System) WEB Configuration Manual BioSense II (T/A System) WEB Configuration Manual 1.00.00, Jan/28/2014 (HW1.2) BioSense II (TA SYSTEM) Series: Web Ver1.1 Build Date: Jan/28/2014 Contents WEB Configuration...1 WEB Logon...1 Preparation...1

More information

Integrated Security and Access Control. User Manual

Integrated Security and Access Control. User Manual Integrated Security and Access Control User Manual Introduction Table of Contents Introduction About Inception 3 Site Details 4 System Notes 5 User Interfaces Connecting to the Web Interface 6 Elite /

More information

GETTING STARTED. Installing the System 2000 Hardware. Configuring Your System 2000 Hardware. Troubleshooting. Configuring Your System 2000 Network

GETTING STARTED. Installing the System 2000 Hardware. Configuring Your System 2000 Hardware. Troubleshooting. Configuring Your System 2000 Network SYSTEM 2000 GETTING STARTED Installing the System 2000 Hardware Whether you are upgrade an existing System 2, or this is a brand new installation, there will be some hardware installation involved. We

More information

Digital computer management software

Digital computer management software TCP/IP Digital computer management software 0000000000 0000000000 00000 000000000000000000000 000000000000000000000000000 000000000000000000000000000 000000000000000000000000000 Reading Information...

More information

ACCESS CONTROL QUICK INSTALL GUIDE. tel: +44 (0) fax: +44 (0) web:

ACCESS CONTROL QUICK INSTALL GUIDE. tel: +44 (0) fax: +44 (0) web: ACCESS CONTROL QUICK INSTALL GUIDE tel: +44 (0)1457 874 999 fax: +44 (0)1457 829 201 email: sales@cop-eu.com web: www.cop-eu.com WIRING CONFIGURATION - ACS CONTROLLERS CONNECTIONS Dahua access controllers

More information

User's Manual. Access Control System. Version April 2001

User's Manual. Access Control System. Version April 2001 Win Access 2000 Version 3.00 User's Manual Version 3.00 April 2001 Access Control System The manufacture has taken due care in preparing this documentation. Due to lead time required for printing, some

More information

E5 Series. Installation and Setup Guide

E5 Series. Installation and Setup Guide 801 Avenida Acaso, Camarillo, Ca. 90312 (805) 494-0622 Fax: (805) 494-8861 www.sdcsecurity.com E-mail: service@sdcsecurity.com E5 Series Installation and Setup Guide P:\Installation Instructions\Access

More information

M1 APPLICATION NOTE. Access Control Interface to Ness IP Access Control Systems (i.e. Edge, V2000 and V1000 Controllers)

M1 APPLICATION NOTE. Access Control Interface to Ness IP Access Control Systems (i.e. Edge, V2000 and V1000 Controllers) M1 APPLICATION NOTE Access Control Interface to Ness IP Access Control Systems (i.e. Edge, V2000 and V1000 Controllers) The M1 can interface with the Ness IP Access Control Series of controllers (Edge,

More information

OT Message Center for Android Smartphone

OT Message Center for Android Smartphone OT Message Center for Android Smartphone User Manual OpenTouch Message Center OpenTouch Business Edition OpenTouch Mutimedia Services R2.2 1646 1. INTRODUCTION 1-3 2. START THE APPLICATION 2-3 2.1 SIGN

More information

XR500/XR100 Command Processor Review. a) Zone expanders c) Output expanders b) All of these d) Single point detectors

XR500/XR100 Command Processor Review. a) Zone expanders c) Output expanders b) All of these d) Single point detectors Name Answer Key Company Address City, State, Zip Instructor Date Your email User Name = Password = XR500/XR100 Command Processor Review 1. may be connected to the LX-Bus. a) Zone expanders c) Output expanders

More information

Senstar Symphony. 7.1 User Guide

Senstar Symphony. 7.1 User Guide Senstar Symphony 7.1 User Guide Contents Contents Introduction...5 Network configuration... 5 Getting started...6 Symphony Server... 8 Log in to the server configuration interface...8 Devices...8 Cameras...

More information

Edge App User Guide V 4.5

Edge App User Guide V 4.5 Edge App User Guide V 4.5 Table of Contents Introduction... 4 Trial Version... 4 Logging In... 5 1. Home... 7 2. View Notes... 8 2.1. View Notes List & Tab View... 8 2.2. View Notes Map View... 17 3. View

More information

Aperio Programming Application Manual

Aperio Programming Application Manual Aperio Programming Application Manual Document No: ST-001321-E, Issue date: 1 August 2014 1 The global leader in Aperio Online Programming Application Manual, Document No: ST-001321-E Date: 1 augusti 2014

More information

VISOR V USER GUIDE

VISOR V USER GUIDE VISOR V2.0.0.24 USER GUIDE Getting started... 6 First launch of the software... 7 Installations management... 8 Creating an installation... 8 Single-station installation (Access database):... 9 Client/server

More information

Monitoring Supervisor Guide. Access Control Manager Software Version

Monitoring Supervisor Guide. Access Control Manager Software Version Monitoring Supervisor Guide Access Control Manager Software Version 5.10.10 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, ACCESS CONTROL MANAGER, ACM, ACM VERIFY AND TRUSTED

More information

IVS 2.0 Software Manual for Air, Vac & Water Machines

IVS 2.0 Software Manual for Air, Vac & Water Machines IVS 2.0 Software Manual for Air, Vac & Water Machines Development Draft Ver. 7.13.07 Table of Contents PREFACE...1 CHAPTER 1-INCORPORATING IVS 2.0 INTO YOUR BUSINESS...2 Overview... 2 Menu Selections...

More information

Pathway Net User s Guide

Pathway Net User s Guide Pathway Net User s Guide TABLE OF CONTENTS 3. Logging onto Pathway Net 4. Changing Passwords 5. Transaction View 7. Viewing Transaction Detail 8. Reallocating Transactions 9. Splitting Transactions 11.

More information

Access Easy Controller 2.1

Access Easy Controller 2.1 Systems Access Easy Controller 2.1 Access Easy Controller 2.1 4 access Wiegand readers expandable to 16 Capacity up to 20,480 card holders and 100,000 transactions Classify cardholders based on 254 access

More information

GLOSSARY. See also: Access point

GLOSSARY. See also: Access point GLOSSARY A Access level A set of access points, each with a corresponding time schedule, that determine where and when a badge holder has permission to pass through an access point. See also: Access point

More information

ACTpro Single Door IP Controller. Operating & Installation Instructions

ACTpro Single Door IP Controller. Operating & Installation Instructions ACTpro 1500 Single Door IP Controller Operating & Installation Instructions 18-00079 Issue 1 This manual refers to the ACTpro 1500 a TCP/IP based control unit supporting up to 32 doors. Access Control

More information

Using triggers and actions

Using triggers and actions Using triggers and actions Important For Triggers and Actions to function correctly, the server must be running at all times. Triggers and Actions is a powerful feature. It can be used to report on specific

More information

Micro/5-PXN Open Protocol Messages

Micro/5-PXN Open Protocol Messages CASI RUSCO Micro/5-PXN Open Protocol Messages Introduction This reference document provides detailed information on the Micro/5-PXN Open Protocol (MOP) messages and functionality. It also includes specifications

More information

WebStation User Manual

WebStation User Manual DN1709-1107/ Version 5.00 Copyright 2011 Tyco International Ltd. and its respective companies. All Rights Reserved. All specifications were current as of publication date and are subject to change without

More information

B.A.S.I.S. Offline User Guide

B.A.S.I.S. Offline User Guide B.A.S.I.S. Offline User Guide Copyright 2014 Stanley Security, Inc. All rights reserved. Information in this document is subject to change without notice and does not represent a commitment on the part

More information

Integra32. Integrated Alarm Monitoring and Access Control USER MANUAL

Integra32. Integrated Alarm Monitoring and Access Control USER MANUAL Integra32 Integrated Alarm Monitoring and Access Control USER MANUAL C o p y r i g h t N o t i c e Copyright 1995 2010 by All rights reserved Worldwide. Printed in Canada. This publication has been provided

More information

Getting Started with Nokē Pro

Getting Started with Nokē Pro Quick-Start Guide Getting Started with Nokē Pro 1. Go to www.nokepro.com Enter your company name, email address and password to login. 2. Download and install the Nokē Pro app on your mobile device. ios:

More information