SISTEMA MULTI-AGENTE COMPOSTO POR VÁRIOS AGENTES QUE COMUNICAM ATRAVÉS DUMA CENTRAL Exemplo de Resolução

Size: px
Start display at page:

Download "SISTEMA MULTI-AGENTE COMPOSTO POR VÁRIOS AGENTES QUE COMUNICAM ATRAVÉS DUMA CENTRAL Exemplo de Resolução"

Transcription

1 SISTEMA MULTI-AGENTE COMPOSTO POR VÁRIOS AGENTES QUE COMUNICAM ATRAVÉS DUMA CENTRAL Exemplo de Resolução % %% ======== switchboard_demo ========= % % load the tcp library and the agent toolkit files, % start the tcp software and the agent toolkit :- ensure_loaded library'\agent\agload', agent_load_files. :- ensure_loaded library'\agent\agutil' %for trace mode %:- ensure_loaded systemagutil %for trace mode - v.3240 :- ensure_loaded library'\tcp\txtwin' %dialog utils %:- ensure_loaded systemtxtwin %dialog utils - v.3240 % start the switchboard agent that opens connections with all the agents % present in the environment :- initialization go. :- dynamic broadcastfailed/1. go :- agent_reset, switch_initializeparams, EventHandlers, agent_create Params, Me, agent_initialize, agent_declare handlers, EventHandlers, init_window, agent_post_event switch_start, _, agutil_trace0.1 % agent_start. % initialize the test agent switch_initialize Params, Handlers :- Params = [nameswitchboard, port3000], Handlers = [incoming_msg, cannot_send, cannot_connect, switch_event_handler, switch_event_handler, switch_event_handler,

2 connection_accepted, switch_comms, connection_closed, switch_event_handler, send_msg, switch_event_handler, switch_start, switch_start_handler, switch_stop, switch_stop_handler ]. init_window :- switch_dlg, window_handlerswitch, switch_win_handler switch_dlg :- _S1 = [ws_sysmenu,ws_caption, dlg_ownedbydesktop,ws_thickframe, ws_minimizebox,ws_popup], _S2 = [ws_child,ws_visible,ss_right], _S3 = [ws_child,ws_visible,ss_left], _S4 = [ ws_child, ws_visible, ws_tabstop, ws_border, es_left ], _S5 = [ ws_child,ws_visible, ws_tabstop,ws_border, es_left ], _S6 = [ws_child,ws_visible,ws_tabstop, bs_pushbutton ], _S7 = [ws_child,ws_visible, ws_tabstop,ws_border, es_left,es_readonly], _S8 = [ws_child,ws_visible, ws_tabstop,ws_border, es_left,es_multiline, ws_hscroll,ws_vscroll ], _S9 = [ws_child,ws_visible,ws_tabstop,ws_border,es_left], wcreate switch,dialog,`switchboard`,620, 20, 400, 250, 16'80cb0000, wccreate switch,4, edit, ``, 10, 10, 330, 20, _S7, wccreate switch,1, edit, ``, 10, 40, 375, 175, _S8, show_dialogswitch, wfocusswitch, true. switch_win_handlerswitch, 'msg_close', Data, Result:- agent_post_event urgent, switch_stop, _, wcloseswitch true % ---- switch event handlers ---- switch_start_handler switch_start, _ :- switch_introduce, retractallagent_presented_,_,_ true

3 switch_stop_handler switch_stop, Params :- write '~M~JStopping..', ttyflush, agent_post_event agent_stop, _ switch_event_handler incoming_msg, MesNo,Channel :- one agent_incoming MesNo, Channel, Msg, _, writewswitch, `~M~JMsg No`:MesNo - `Message`:Msg, ttyflush, retractall agent_incomingmesno,_,_,_, agutil_msg2term Msg, Term, E, msg_handlerterm, Channel switch_event_handler send_msg, Channel, Msg :- writewswitch, `~M~JSending..`, ttyflush, agent_send Channel, Msg, writewswitch, `~M~JSent!`, ttyflush. switch_event_handler connection_closed, Channel :- nl, write `CONNECTION LOST on Channel`: Channel ~> Msg, writew switch, Msg, agent_presentedname,_,channel, nl, write `Agent`: Name, tab1, write`is gone!` ~> Msg1, writew switch, Msg1, retractagent_presentedname,_,channel switch_introduce:- agent_id_det ID, namen, protocolproto, hosth, portp, targettarget, urlu, full_namef, datafile, nl, tab3, write'introducing switch:', nl, nl, tab5, write 'ID ': ID, nl, tab5, write 'Name ': N, nl, tab5, write 'Protocol ': Proto, nl, tab5, write 'Host ': H, nl, tab5, write 'Port ': P, nl, tab5, write 'Target ': Target, nl, tab5, write 'URL ': U, nl, tab5, write 'Full Name ': F, nl, tab5, write 'Data File ': File, nl ~> Msg, writew switch, Msg % message handlers

4 msg_handlermsgmsgmsg,destino, Channel :- testedestino, Msg, Channel testedestino, Msg, Channel :- write`received ` : Msg, write` for agent ` : Destino, write`on Channel`:Channel ~> Msg_string, wtextswitch, 4, Msg_string, agent_presented_,destino,c, write`retrieved Agent_registered`: Destino, write` - `: C, write`~m~j` ~> Str, writewswitch, Str, agent_presented_,origem,channel, write`msgfrom`, writeorigem, write`,`, writemsg, write`` ~> Msg1, agent_post_eventsend_msg, C, Msg1, writewswitch, Msg1 nl, writewswitch,`destino desconhecido ou agente não registado`, agent_post_eventsend_msg, Channel, `Destino errado ou agente não registado` % -- detecta se a msg está a ser enviada a um agente nao registado. msg_handlermsgpresentname, Port, Channel :- write`agent `, writename, write` on port`, writeport, write` presented through Channel`, writechannel ~> Msg_string, wtextswitch, 4, Msg_string, assertagent_presentedname,port,channel, writewswitch, Name, writewswitch, Port, writewswitch,channel, ttyflush. msg_handlermsgbroadcastmsg, Destino, Channel :- broadcastmsg, Destino, Channel msg_handlermsg,_ :- write`received general msg `, writemsg ~> Msg_string, wtextswitch, 4, Msg_string broadcastmsg, Termo, Channel :- listtermo, splitlisttermo, Msg Termo = all, forallagent_presentedn,p,c, C \= Channel,

5 write`msgfrom`, agent_presented_,p1,channel, writep1, write`,`, writemsg, write`` ~> Msg1, agent_post_eventsend_msg, C, Msg1 true write`parâmetro desconhecido`, cleanbroadcastfacts, write`received msg to broadcast: `, writemsg ~> Str, wtextswitch, 4, Str splitlist[],_ splitlistlist, Msg :- List = [N Rest], agent_presented_,n,ch, agent_post_eventsend_msg, Ch, Msg assertbroadcastfailedn, splitlistrest, Msg cleanbroadcastfacts :- broadcastfailed_, retractallbroadcastfailed_ true

6 % %% ========= agente1_demo ========== % /* +Host +Port */ : The name of the computer where the agent/program is running. atom or string : The port number of the program/agent to connect to. integer % load the tcp library and the agent toolkit files, % start the tcp software and the agent toolkit :- ensure_loadedlibrary'\agent\agload', agent_load_files. :- ensure_loaded library'\agent\agutil' :- ensure_loaded library'\tcp\txtwin' %dialog utils go :- agent_reset, agente1_initialize Params, EventHandlers, interface, agent_create Params, Me, agent_initialize, agent_declare handlers, EventHandlers, agutil_trace0.1 % agent_start. interface :- wcreatedia,dialog,`agente 1`,30,400,400,225,16'80c80000, wcreatedia,1,button,`call`,10,150,80,32,16' , wcreatedia,2,button,`&cancel`,210,150,80,32,16' , wcreatedia,3,button,`connect`,300,150,80,32,16' , wccreatedia,101,edit,``,10,10,380,30, [ws_child,ws_visible,ws_border,es_left], wccreatedia,100, static, ``, 10, 60, 380,20, [ws_child,ws_visible,ss_left,ws_border], wcreatedia,4,listbox,``,10,90,110,60,16'50a1000a, wcreatedia,7,button,`call All`,110,150,80,32,16' , fill_lstbox, window_handlerdia,dia_handler,

7 show_dialogdia fill_lstbox :- forall agente_,nome, Destino, writenome, write` - `, writedestino ~> Linha, wlbxadddia,4,-1,linha agente1_initialize Params, Handlers :- Params = [nameagente1, port1000], Handlers = [cannot_send, agente1_msg_handler, cannot_connect, agente1_msg_handler, connection_closed, agente1_msg_handler, send_msg, agente1_msg_handler, incoming_msg, agente1_msg_handler, connected, agente1_msg_handler, start, start_handler, stop, stop_handler ]. % handle 'start' event start_handler start, Host,Port :- write `~M~JConnecting..`, ttyflush, agent_connect Host, Port, Channel, write '~M~JConnected to agent at'- Host:Port, nl, ttyflush. % handle 'cannot_connect' event agente1_msg_handler cannot_connect, Host,Port,E :- write`~m~jcannot connect to `:Host:Port, write` because `, E == -1 -> write'the connection request timed out' write'of error':e, nl, ttyflush, wtext dia, 100, `Waiting 10 seconds...`, try_later10, Host, Port try_laterinterval, H, P :- tcp_now Now, Goal = try_againh,p, tcp_time_plus Now, Interval, Then, tcp_next_timer TimerID, tcp_create_timer_callback Then, Goal, TimerID try_againh,p :- wtext dia, 100, `Trying to connect...`, agent_post_event start, H,P % handle 'connection_closed' event agente1_msg_handler connection_closed, _ :- write`~m~jconnection closed` % send a message

8 agente1_msg_handler send_msg, Destino,Msg :- agent_connected_,channel,_, test1channel, Destino, Msg test1channel, Destino, Msg :- % write`msg`, writemsg, write`,`, % writedestino, write``~> Message, agent_send Channel, Msg % handle 'cannot_send' event agente1_msg_handler cannot_send, Channel :- write `~M~JCannot send message..`, fail. % handle 'incoming_msg' event agente1_msg_handler incoming_msg, MesNo,Channel :- one agent_incoming MesNo, Channel, Msg, _, write `Msg No`:MesNo - `Message`:Msg ~> MsgString, ttyflush, retractall agent_incomingmesno,_,_,_, wtextdia,100, MsgString % quando se confirma a ligação, efectuar a apresentação do agente agente1_msg_handler connected, X :- writewdia, `~M~JPresenting..`, ttyflush, agent_connected_,channel,_, agent_id_det_,namen,_,_,portp,_,_,_,_, agent_send Channel, msgpresentn,p % stop the agente1 agent stop_handler stop, Params :- write '~M~JStopping..', ttyflush, agent_post_event agent_stop, _ % Contacts agente1,agente2,1100 agente2,agente3,1200 agente3,agente4,1300 agente4,agente5,1400 listat[1,agente2,1100,2,agente3,1200,3,agente4,1300,4,agente5,1400] % dialog handlers dia_handler dia,1, msg_button, _, _ :- teststringx,!, X = 1, wtextdia, 100, `Sending message`, create_msgs true.

9 dia_handler dia,2, msg_button, _, cancel :- agent_post_event agent_stop, _ dia_handler dia,3, msg_button, _, _ :- wtextdia, 100, `Connecting`, agent_post_event start, `antonio-silva`,3000 dia_handler dia,7, msg_button, _, _ :- wtextdia,101,msg, Message = msgbroadcastmsg,all, agent_post_eventsend_msg,destino, Message dia_handler dia, msg_close, _, _ :- wclosedia create_msgs :- listatlt, test_lbxmlt, [], Lista, lengthlista, Len, Len = 0, wtextdia,100, `Nenhum destino seleccionado!` Len = 1, sendonelista sendmanylista % %% predicados de processamento das listas de destinos % teste_listboxpos :- listatlista, teste_lbxlista,pos teste_lbx[i Resto], Pos :- I = P,_,_, P1 is P - 1, wlbxsel dia,4, P1, S, S = 1 -> Pos is P teste_lbxresto, Pos testmtobsent, Res :- listatlista, test_lbxmlista, [], Res test_lbxm[],tobsent, Res:- Res = ToBsent. test_lbxm[i Rest], ToBsent, Res :- I = P,_,_, P1 is P - 1, wlbxsel dia,4, P1, S, S = 1, NewL = [P1 ToBsent]

10 NewL = ToBsent, test_lbxmrest,newl, Res sendonelista :- Lista = [Pos], Pos1 is Pos + 1, agentepos1, _, Destino, wtextdia,101, Msg, Message = msgmsgmsg,destino, agent_post_eventsend_msg,destino, Message sendmanylista :- wtextdia,101,msg, sendmanylista, [], List2Bsent, Message = msgbroadcastmsg,list2bsent, agent_post_eventsend_msg,destino, Message sendmany[], L, Lista :- Lista = L. sendmany[h T], L, Lista :- Pos is H + 1, agentepos, _, Destino, L1 = [Destino L], sendmanyt, L1, Lista % Validação do texto da mensagem teststringx :- wtextdia,101,str, Str = ``, wtextdia, 100,`--- Qual a mensagem a enviar? ---`, X = 0 X = 1 Novembro de 2003, António Silva

Relatório de utilização do HijackThis

Relatório de utilização do HijackThis Relatório de utilização do HijackThis 1 - Estado Original do Computador - Proprietário do Computador: Desconhecido; - Sistema operacional: Windows Seven Professional Edition; - Conta de usuário: Pimenta

More information

HRG Performance Series DVR DDNS Support Application Note (hrgddns)

HRG Performance Series DVR DDNS Support Application Note (hrgddns) HRG Performance Series DVR DDNS Support Application Note (hrgddns) This document describes how to enable and configure Dynamic DNS (DDNS) functionality on the HRG Performance Series digital video recorder

More information

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil.

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil. Produto : Totvs + Foundation Saúde + 11.5.3 Chamado : TFOQEI Data da criação : 27/08/12 Data da revisão : 10/09/12 País(es) : Brasil Banco(s) de Dados : Esta implementação consiste em atender a legislação

More information

Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions

Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions MicroStrategy Mobile SDK 1 Agenda MicroStrategy Mobile SDK Overview Requirements & Setup Custom App Delegate Custom

More information

Yale Software Library http://www.yale.edu/software/

Yale Software Library http://www.yale.edu/software/ e/ Yale Software Library http://www.yale.edu/software/ For assistance contact the ITS Help Desk 785-3200, 432-9000, helpdesk@yale.edu Windows XP Firewall Windows XP SP2 includes the new Windows Firewall,

More information

Oracle FLEXCUBE IVR User Manual Release 4.5.0.0.0 Part No E52127-01

Oracle FLEXCUBE IVR User Manual Release 4.5.0.0.0 Part No E52127-01 Oracle FLEXCUBE IVR User Manual Release 4.5.0.0.0 Part No E52127-01 IVR User Manual Table of Contents (index) 1. IVR... 3 1.1. TBS01 - TBS Bank Params Maintenance... 4 1.2. TBS02 - TBS Acquirer Pos ID

More information

Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015

Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 Listado de seleccionados para participar en el Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 y universidades destino. Código Universidad

More information

Managing Virtual Servers

Managing Virtual Servers CHAPTER 4 Content Switching Module Device Manager (CVDM-CSM) displays details of existing virtual servers and enables users to perform detailed tasks that include creating or deleting virtual servers,

More information

Securing your Linksys WRT54G

Securing your Linksys WRT54G Securing your Linksys WRT54G Abstract Current implementations of the 802.11b and 802.11g wireless LAN standards have several potential pitfalls for security. However, built in security mechanisms in these

More information

Spring Design ScreenShare Service SDK Instructions

Spring Design ScreenShare Service SDK Instructions Spring Design ScreenShare Service SDK Instructions V1.0.8 Change logs Date Version Changes 2013/2/28 1.0.0 First draft 2013/3/5 1.0.1 Redefined some interfaces according to issues raised by Richard Li

More information

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual 2013 SPHOL326: Designing a SharePoint 2013 Site Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

More information

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY

CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY CIMHT_006 How to Configure the Database Logger Proficy HMI/SCADA CIMPLICITY Outline The Proficy HMI/SCADA CIMPLICITY product has the ability to log point data to a Microsoft SQL Database. This data can

More information

Bioinformática BLAST. Blast information guide. Buscas de sequências semelhantes. Search for Homologies BLAST

Bioinformática BLAST. Blast information guide. Buscas de sequências semelhantes. Search for Homologies BLAST BLAST Bioinformática Search for Homologies BLAST BLAST - Basic Local Alignment Search Tool http://blastncbinlmnihgov/blastcgi 1 2 Blast information guide Buscas de sequências semelhantes http://blastncbinlmnihgov/blastcgi?cmd=web&page_type=blastdocs

More information

Android Bootcamp. Elaborado (com adaptações) a partir dos tutoriais:

Android Bootcamp. Elaborado (com adaptações) a partir dos tutoriais: Android Bootcamp Elaborado (com adaptações) a partir dos tutoriais: http://developer.android.com/resources/tutorials/hello-world.html http://developer.android.com/resources/tutorials/views/index.html Bootcamp

More information

1 a QUESTÃO Valor: 1,0

1 a QUESTÃO Valor: 1,0 1 a QUESTÃO Valor: 1,0 A seguir estão mensagens deixadas em secretárias eletrônicas. Decida qual é a razão principal de cada ligação. Escolha a resposta correta dentre as frases abaixo e coloque o número

More information

WordCom, Inc. Secure File Transfer Web Application

WordCom, Inc. Secure File Transfer Web Application WordCom, Inc. Secure File Transfer Web Application Table of Contents 1. Introduction 2. Logging into WordCom s File Transfer Web Client 3. Toolbar buttons 4. Sending a package in Enhanced Mode (If installed

More information

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking This application note demonstrates the use of XMOS TCP/IP stack on an XMOS multicore micro controller to communicate on an ethernet-based

More information

OPC Unified Architecture - Connectivity Guide

OPC Unified Architecture - Connectivity Guide OPC Unified Architecture - Connectivity Guide January, 2010 Ref. 01.02 Kepware Technologies Table of Contents 1. Overview... 1 2. Prerequisites... 1 3. Security... 2 3.1 Automatic... 2 3.2 Exchange...

More information

Debugging Joining in a ZigBee Network

Debugging Joining in a ZigBee Network Debugging Joining in a ZigBee Network Introduction In a ZigBee network, routers and end devices must discover and join a network before they can communicate with other ZigBee devices. The XBee ZB firmware

More information

CHAPTER 10: WEB SERVICES

CHAPTER 10: WEB SERVICES Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,

More information

socketio Documentation

socketio Documentation socketio Documentation Release 0.1 Miguel Grinberg January 17, 2016 Contents 1 What is Socket.IO? 3 2 Getting Started 5 3 Rooms 7 4 Responses 9 5 Callbacks 11 6 Namespaces 13 7 Using a Message Queue 15

More information

SOFTWARE MANUAL UNIOPC

SOFTWARE MANUAL UNIOPC SOFTWARE MANUAL UNIOPC The information in this document reflects products at the date of printing. Unitronics reserves the right, subject to all applicable laws, at any time, at its sole discretion, and

More information

EuroRec Repository. Translation Manual. January 2012

EuroRec Repository. Translation Manual. January 2012 EuroRec Repository Translation Manual January 2012 Added to Deliverable D6.3 for the EHR-Q TN project EuroRec Repository Translations Manual January 2012 1/21 Table of Content 1 Property of the document...

More information

VidyoWay IT Guide Product Version 3.0 Document Version 3.0 A 5/9/2014

VidyoWay IT Guide Product Version 3.0 Document Version 3.0 A 5/9/2014 VidyoWay IT Guide Product Version 3.0 Document Version 3.0 A 5/9/2014 433 Hackensack Ave Hackensack, NJ 07601 USA 2014 Vidyo, Inc. all rights reserved. Vidyo s technology is covered by one or more issued

More information

Monitoring PostgreSQL database with Verax NMS

Monitoring PostgreSQL database with Verax NMS Monitoring PostgreSQL database with Verax NMS Table of contents Abstract... 3 1. Adding PostgreSQL database to device inventory... 4 2. Adding sensors for PostgreSQL database... 7 3. Adding performance

More information

Digital Certificate IP Address Test Procedure

Digital Certificate IP Address Test Procedure Digital Certificate IP Address Test Procedure Testing Firewall Access to New CA IP Addresses May 11 th to 15 th Verizon is making some test servers with the new Certificate Authority (CA) system IP addresses

More information

Tutorial JavaScript: Switching panels using a radio button

Tutorial JavaScript: Switching panels using a radio button Tutorial JavaScript: Switching panels using a radio button www.nintex.com support@nintex.com Contents About this tutorial... 3 Upload the JavaScript File... 4 Using JavaScript to hide or show a control

More information

3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version

3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version Version 3.5 JEFFERSON LAB Data Acquisition Group cmsg Developer s Guide J E F F E R S O N L A B D A T A A C Q U I S I T I O N G R O U P cmsg Developer s Guide Elliott Wolin wolin@jlab.org Carl Timmer timmer@jlab.org

More information

PARTICLE COUNTER SOFTWARE

PARTICLE COUNTER SOFTWARE 1.Overview 0 PARTICLE COUNTER SOFTWARE For Part11 Operation Manual Please keep this operation manual handy for future reference. 02002 12.04 1.Overview 1 * The operation manual is stored in Adobe PDF format,

More information

Application Technique. EtherNet/IP Socket Interface

Application Technique. EtherNet/IP Socket Interface Application Technique EtherNet/IP Socket Interface Important User Information Read this document and the documents listed in the additional resources section about installation, configuration, and operation

More information

Technical Note SNMP Interface

Technical Note SNMP Interface Technical Note SNMP Interface Introduction This document describes the SNMP Interface provided with InduSoft Web Studio (IWS) and CEView. Simple Network Management Protocol (SNMP) is a popular protocol

More information

How to set and log data to a remote SQL Server?

How to set and log data to a remote SQL Server? Author Amber Version 1.0.0 Date 2012/05/11 Page 1/13 How to set and log data to a remote SQL Server? Applied to: Platform PC OS Version Windows 98/NT/2000/XP/Vista EZ Data Logger can log data not only

More information

Securing Local Area Network with OpenFlow

Securing Local Area Network with OpenFlow Securing Local Area Network with OpenFlow Master s Thesis Presentation Fahad B. H. Chowdhury Supervisor: Professor Jukka Manner Advisor: Timo Kiravuo Department of Communications and Networking Aalto University

More information

28 What s New in IGSS V9. Speaker Notes INSIGHT AND OVERVIEW

28 What s New in IGSS V9. Speaker Notes INSIGHT AND OVERVIEW 28 What s New in IGSS V9 Speaker Notes INSIGHT AND OVERVIEW Contents of this lesson Topics: New IGSS Control Center Consolidated report system Redesigned Maintenance module Enhancement highlights Online

More information

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners.

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners. 2015 GEOVAP, spol. s r. o. All rights reserved. GEOVAP, spol. s r. o. Cechovo nabrezi 1790 530 03 Pardubice Czech Republic +420 466 024 618 http://www.geovap.cz Products that are referred to in this document

More information

User Manual V1.0. Remote Software

User Manual V1.0. Remote Software User Manual V1.0 Notice: The information in this manual was current when published. The manufacturer reserves the right to revise and improve its products. All specifications are therefore subject to change

More information

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Abstract These Application

More information

WIZnet S2E (Serial-to-Ethernet) Device s Configuration Tool Programming Guide

WIZnet S2E (Serial-to-Ethernet) Device s Configuration Tool Programming Guide WIZnet S2E (Serial-to-Ethernet) Device s Configuration Tool Programming Guide Rev 0.2 This document describes how to make your own Configuration Tool for WIZ100SR, WIZ105SR and WIZ110SR of WIZnet. And

More information

VoIPon www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299

VoIPon www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299 VoiceGear/3CX Integration Guide Ver.0.1 Page 2 1. OVERVIEW... 3 1.1 SETTING UP 3CX PBX...4 1.2 SETTING UP VOICEGEAR GATEWAY...5 2. VOICEGEAR-3CX SIP INTEGRATION... 6 2.1 3CX CONFIGURATION...7 2.2 VOICEGEAR

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

DATA PROJECTOR XJ-A146/XJ-A246/XJ-A256

DATA PROJECTOR XJ-A146/XJ-A246/XJ-A256 DATA PROJECTOR XJ-A146/XJ-A246/XJ-A256 E Data Projector Wireless Function Guide Be sure to read the precautions in the Setup Guide that comes with the Data Projector. Be sure to keep all user documentation

More information

Licensing Windows Client and Server Operating Systems in Multiuser Scenarios February 2010. Licensing Information for Volume Licensing Customers

Licensing Windows Client and Server Operating Systems in Multiuser Scenarios February 2010. Licensing Information for Volume Licensing Customers Vários usuários em um único sistema operacional exigem o licenciamento correto do sistema operacional Microsoft Windows Server Para aplicações em que vários usuários estão compartilhando simultaneamente

More information

External User Manual. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P.

External User Manual. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P. Online Registration of Users of the Electronic System for the Management of Medicinal Products of Human Use of INFARMED, I.P. Página 1 de 11 Index 1 Introduction... 3 2 Using the Online Registration Form...

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

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

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

More information

Introduction. What is a Remote Console? What is the Server Service? A Remote Control Enabled (RCE) Console

Introduction. What is a Remote Console? What is the Server Service? A Remote Control Enabled (RCE) Console Contents Introduction... 3 What is a Remote Console?... 3 What is the Server Service?... 3 A Remote Control Enabled (RCE) Console... 3 Differences Between the Server Service and an RCE Console... 4 Configuring

More information

Representação de Caracteres

Representação de Caracteres Representação de Caracteres IFBA Instituto Federal de Educ. Ciencia e Tec Bahia Curso de Analise e Desenvolvimento de Sistemas Introdução à Ciência da Computação Prof. Msc. Antonio Carlos Souza Coletânea

More information

NetBeans 6.5.1 and GlassFish v 2.1 Creating a Healthcare Facility Visual Web Application

NetBeans 6.5.1 and GlassFish v 2.1 Creating a Healthcare Facility Visual Web Application NetBeans 6.5.1 and GlassFish v 2.1 Creating a Healthcare Facility Visual Web Application Michael.Czapski@sun.com June 2009 Introduction In some views SOA is represented as a series of 4 layers: Presentation

More information

MBA Dedicated Servers: A How-to Guide

MBA Dedicated Servers: A How-to Guide MBA Dedicated Servers: A How-to Guide 1. If you are behind a firewall, see the Router configuration section below for information on setting up port forwarding. 2. Launch the STEAM client. The Steam client

More information

Secure Web Appliance. SSL Intercept

Secure Web Appliance. SSL Intercept Secure Web Appliance SSL Intercept Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About SSL Intercept... 1 1.3. About this Manual... 1 1.3.1. Document Conventions...

More information

PRINT CONFIGURATION. 1. Printer Configuration

PRINT CONFIGURATION. 1. Printer Configuration PRINT CONFIGURATION Red Flag Server5 has improved the designs of the printer configuration tool to facilitate you to conduct print configuration and print tasks management in a more convenient and familiar

More information

ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC. CHAPTER I General rules

ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC. CHAPTER I General rules ENGLISH VERSION Regulation of the University of Lisbon School of Law Journal (Lisbon Law Review) - Cyberlaw by CIJIC CHAPTER I General rules Article 1 Object This Regulation contains the rules applicable

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

Guideline for setting up a functional VPN

Guideline for setting up a functional VPN Guideline for setting up a functional VPN Why do I want a VPN? VPN by definition creates a private, trusted network across an untrusted medium. It allows you to connect offices and people from around the

More information

1 Installation. Note: In Windows operating systems, you must be logged in with administrator rights to install the printer driver.

1 Installation. Note: In Windows operating systems, you must be logged in with administrator rights to install the printer driver. Installation A printer driver is an application that manages communication between a printer and your computer. Once installed, the printer driver settings must be configured in the printer Properties

More information

VinNOW-TSYS Integration Setup

VinNOW-TSYS Integration Setup VinNOW-TSYS Integration Setup Once your account is established with TSYS, and installation appoint should have been arranged. If not, contact your sales representative as these steps should be done for

More information

How To Set Up A Vpn Tunnel Between Winxp And Zwall On A Pc 2 And Winxp On A Windows Xp 2 On A Microsoft Gbk2 (Windows) On A Macbook 2 (Windows 2) On An Ip

How To Set Up A Vpn Tunnel Between Winxp And Zwall On A Pc 2 And Winxp On A Windows Xp 2 On A Microsoft Gbk2 (Windows) On A Macbook 2 (Windows 2) On An Ip WINXP VPN to ZyWALL Tunneling 1. Setup WINXP VPN 2. Setup ZyWALL VPN This page guides us to setup a VPN connection between the WINXP VPN software and ZyWALL router. There will be several devices we need

More information

TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS

TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS Os clientes Markets.com podem reforçar a sua conta por transferência através de vários bancos à volta do mundo. Veja a lista abaixo para mais detalhes: TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS ROYAL BANK

More information

Detecting rogue systems

Detecting rogue systems Product Guide Revision A McAfee Rogue System Detection 4.7.1 For use with epolicy Orchestrator 4.6.3-5.0.0 Software Detecting rogue systems Unprotected systems, referred to as rogue systems, are often

More information

Online Data Monitoring Framework Based on Histogram Packaging in Network Distributed Data Acquisition Systems

Online Data Monitoring Framework Based on Histogram Packaging in Network Distributed Data Acquisition Systems Online Data ing Framework Based on Histogram Packaging in Network Distributed Data Acquisition Systems Tomoyuki Konno 1, Anatael Cabrera 2 Masaki Ishitsuka 1, Masahiro Kuze 1, Yasunobu Sakamoto 3 CHEP2010@

More information

Introduction to Analyzer and the ARP protocol

Introduction to Analyzer and the ARP protocol Laboratory 6 Introduction to Analyzer and the ARP protocol Objetives Network monitoring tools are of interest when studying the behavior of network protocols, in particular TCP/IP, and for determining

More information

Release Notes LS Retail Data Director 3.01.04 August 2011

Release Notes LS Retail Data Director 3.01.04 August 2011 Release Notes LS Retail Data Director 3.01.04 August 2011 Copyright 2010-2011, LS Retail. All rights reserved. All trademarks belong to their respective holders. Contents 1 Introduction... 1 1.1 What s

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Enterasys Wireless Access Point 3000 (RBT3K-AG) to Support Avaya IP Office, Avaya IP Wireless Telephones and Avaya Phone Manager

More information

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones.

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. The information applies to Yealink IP phones running firmware version 71 or later. Server redundancy

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

More information

Global Monitoring + Support

Global Monitoring + Support Use HyperTerminal to access your Global Monitoring Units View and edit configuration settings View live data Download recorded data for use in Excel and other applications HyperTerminal is one of many

More information

7. Mobile Phone Support

7. Mobile Phone Support 7. Mobile Phone Support A state-of-the-art feature of this DVR device is transmitting live feed from the CCTV cameras to your mobile phone, so that you can have on the go access to your surveillance system

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

SP-R53P User Manual. Contents

SP-R53P User Manual. Contents SP-R53P User Manual Contents Chapter 1: Overview... 3 1. Icons introduction... 4 2. User Interface... 4 Chapter 2: Getting Started... 4 1. Phone Initialization... 5 2. Phone Status... 5 3. Basic Network

More information

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12 DEPLOYMENT GUIDE Version 1.2 Deploying F5 with Oracle E-Business Suite 12 Table of Contents Table of Contents Introducing the BIG-IP LTM Oracle E-Business Suite 12 configuration Prerequisites and configuration

More information

Emerald. Network Collector Version 4.0. Emerald Management Suite IEA Software, Inc.

Emerald. Network Collector Version 4.0. Emerald Management Suite IEA Software, Inc. Emerald Network Collector Version 4.0 Emerald Management Suite IEA Software, Inc. Table Of Contents Purpose... 3 Overview... 3 Modules... 3 Installation... 3 Configuration... 3 Filter Definitions... 4

More information

StreamServe Job Gateway

StreamServe Job Gateway StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe, Inc. No part of this document may

More information

ALOHA Load Balancer Quickstart guide

ALOHA Load Balancer Quickstart guide ALOHA Load Balancer Quickstart guide Summary 1 Package contents... 3 2 Preparing your Aloha... 4 3 Cabling... 5 3.1 Howto... 5 3.2 ALBBOX Overview... 6 3.3 ALB2K Overview... 7 3.4 ALB4K, ALB8K and ALB16K

More information

OfficeServ Link. User Guide. Version 2.1 June 2005

OfficeServ Link. User Guide. Version 2.1 June 2005 OfficeServ Link User Guide Version 2.1 June 2005 OfficeServ Link Version 2.1 User Guide This manual should be read before the installation and operation of the OfficeServ Link Software. COPYRIGHT This

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

Implementing an IRC Server Using an Object- Oriented Programming Model for Concurrency

Implementing an IRC Server Using an Object- Oriented Programming Model for Concurrency Implementing an IRC Server Using an Object- Oriented Programming Model for Concurrency Bachelor Thesis Fabian Gremper ETH Zürich fgremper@student.ethz.ch May 17, 2011 September 25, 2011 Supervised by:

More information

Ethernet Radio Configuration Guide

Ethernet Radio Configuration Guide Ethernet Radio Configuration Guide for Gateway, Endpoint, and Repeater Radio Units April 20, 2015 Customer Service 1-866-294-5847 Baseline Inc. www.baselinesystems.com Phone 208-323-1634 FAX 208-323-1834

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

More information

latest Release 0.2.6

latest Release 0.2.6 latest Release 0.2.6 August 19, 2015 Contents 1 Installation 3 2 Configuration 5 3 Django Integration 7 4 Stand-Alone Web Client 9 5 Daemon Mode 11 6 IRC Bots 13 7 Bot Events 15 8 Channel Events 17 9

More information

DATA PROJECTOR XJ-A135/XJ-A145/XJ-A235/ XJ-A245

DATA PROJECTOR XJ-A135/XJ-A145/XJ-A235/ XJ-A245 DATA PROJECTOR XJ-A135/XJ-A145/XJ-A235/ XJ-A245 E Data Projector Wireless Function Guide Be sure to read the precautions in the User s Guide (Basic Operations) that comes with the Data Projector. Be sure

More information

Micros Troubleshooting & Error Message Guide.

Micros Troubleshooting & Error Message Guide. Micros Troubleshooting & Error Message Guide. This document is a list of error message codes with descriptions and suggested solutions from Micros. If you're encountering errors with a system that was

More information

This document explains how to enable the SIP option and adjust the levels for the connected radio(s) using the below network example:

This document explains how to enable the SIP option and adjust the levels for the connected radio(s) using the below network example: When using an IPR100, IPR110+ or IPR400 in a radio network with either IPRdispatch or 960SIP consoles, there is very little configuration required in the IPR device. This document explains how to enable

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

Advanced Aircraft Analysis 3.6 Network Floating License Installation

Advanced Aircraft Analysis 3.6 Network Floating License Installation Advanced Aircraft Analysis 3.6 Network Floating License Installation 1 Introduction DARcorporation uses the WIBU-Systems WIBU-KEY Copy Protection concept for the AAA network licensing. The WIBU-KEY concept

More information

A-AUTO 50 for Windows Setup Guide

A-AUTO 50 for Windows Setup Guide A-AUTO 50 for Windows Setup Guide 1st Edition 1 A-AUTO is a registered trade mark of UNIRITA Inc. "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)."

More information

Communicating with a Barco projector over network. Technical note

Communicating with a Barco projector over network. Technical note Communicating with a Barco projector over network Technical note MED20080612/00 12/06/2008 Barco nv Media & Entertainment Division Noordlaan 5, B-8520 Kuurne Phone: +32 56.36.89.70 Fax: +32 56.36.883.86

More information

PCLinq2 Hi-Speed USB Bridge-Network Cable. Quick Network Setup Guide

PCLinq2 Hi-Speed USB Bridge-Network Cable. Quick Network Setup Guide PCLinq2 Hi-Speed USB Bridge-Network Cable Congratulations! Quick Network Setup Guide For Windows 98/ME/2000/XP Congratulations for installing the PCLinq2 Hi-Speed USB Bridge-Network Cable. This Quick Network

More information

Customer Tips. Network Packet Analyzer Tips. for the user. Purpose. Introduction to Packet Capture. Xerox Multifunction Devices.

Customer Tips. Network Packet Analyzer Tips. for the user. Purpose. Introduction to Packet Capture. Xerox Multifunction Devices. Xerox Multifunction Devices Customer Tips January 15, 2004 This document applies to these Xerox products: Network Packet Analyzer Tips Purpose This document contains a procedure that Xerox customers can

More information

Port Forwarding your Router for Use with a Network DVR

Port Forwarding your Router for Use with a Network DVR Copyright 2007 SVAT Electronics Port Forwarding your Router for Use with a Network DVR Table of Contents Page 2: Belkin Router Page 3: D-Link Wireless Router Page 4: Linksys Wireless Router Page 5: Linksys

More information

Ask them what s the worst epidemics nowadays and what they know about it (Ebola).

Ask them what s the worst epidemics nowadays and what they know about it (Ebola). Focus on activity: Massive Diseases vocabulary Target audience (age): Ensino Médio Lesson link: Upgrade, Unit 22, ENEM practice Aim: reading comprehension strategies with focus on epidemics Duration: 30-40

More information

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty 03 infra TI RAID MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty Por que RAID? Redundant Array Inexpensive Disks x Redudant Array Independent Disks Performance limitation of disk

More information

Anat Bremler-Barr Ronit Halachmi-Bekel Jussi Kangasharju Interdisciplinary center Herzliya Darmstadt University of Technology

Anat Bremler-Barr Ronit Halachmi-Bekel Jussi Kangasharju Interdisciplinary center Herzliya Darmstadt University of Technology Unregister Attack in SIP Anat Bremler-Barr Ronit Halachmi-Bekel Jussi Kangasharju Interdisciplinary center Herzliya Darmstadt University of Technology Unregister Attack We present a new VoIP Denial Of

More information

BlackShield ID Agent for Terminal Services Web and Remote Desktop Web

BlackShield ID Agent for Terminal Services Web and Remote Desktop Web Agent for Terminal Services Web and Remote Desktop Web 2010 CRYPTOCard Corp. All rights reserved. http:// www.cryptocard.com Copyright Copyright 2010, CRYPTOCard All Rights Reserved. No part of this publication

More information

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones.

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. The information applies to Yealink SIP-T28P, SIP-T26P, SIP-T22P, SIP-T20P, SIP-T21P, SIP-T19P,

More information

ImagineWorldClient Client Management Software. User s Manual. (Revision-2)

ImagineWorldClient Client Management Software. User s Manual. (Revision-2) ImagineWorldClient Client Management Software User s Manual (Revision-2) (888) 379-2666 US Toll Free (905) 336-9665 Phone (905) 336-9662 Fax www.videotransmitters.com 1 Contents 1. CMS SOFTWARE FEATURES...4

More information

Lab Exercise SSL/TLS. Objective. Step 1: Open a Trace. Step 2: Inspect the Trace

Lab Exercise SSL/TLS. Objective. Step 1: Open a Trace. Step 2: Inspect the Trace Lab Exercise SSL/TLS Objective To observe SSL/TLS (Secure Sockets Layer / Transport Layer Security) in action. SSL/TLS is used to secure TCP connections, and it is widely used as part of the secure web:

More information

Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe)

Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe) Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe) The Dialogic Diva V-1PRI ("Diva V-1PRI"), Dialogic Diva V-2PRI ("Diva V-2PRI") and Dialogic Diva V-4PRI ("Diva V-4PRI") boards are exceptionally powerful

More information

Out-of-Band Management Reference

Out-of-Band Management Reference www.novell.com/documentation Out-of-Band Management Reference ZENworks 11 Support Pack 3 Beta February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents

More information