CoreLib Documentation

Size: px
Start display at page:

Download "CoreLib Documentation"

Transcription

1 CoreLib Documentation Release 25 Bart Thate August 14, 2014

2

3 Contents 1 CONTACT 3 2 DOCS LICENSE README PLUGS core.plugs.add module core.plugs.all module core.plugs.allow module core.plugs.api module core.plugs.cmnds module core.plugs.edit module core.plugs.find module core.plugs.first module core.plugs.irc module core.plugs.join module core.plugs.last module core.plugs.log module core.plugs.mbox module core.plugs.rm module core.plugs.rss module core.plugs.show module core.plugs.start module core.plugs.status module core.plugs.stop module core.plugs.test module core.plugs.timer module core.plugs.trim module core.plugs.udp module core.plugs.uptime module core.plugs.version module core.plugs.xmpp module MODULE core.completer module core.defines module core.log module i

4 4.4 core.test module core.utils module core Python Module Index 31 ii

5 corelib is a library for writing bots. source is located at Contents 1

6 2 Contents

7 CHAPTER 1 CONTACT IRC: botfather on #dunkbots irc.freenode.net bthate@dds.nl till freedom come!! 3

8 4 Chapter 1. CONTACT

9 CHAPTER 2 DOCS 2.1 LICENSE Copyright 2014 B.H.J Thate CORELIB - a library for programming bots Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: As the creator of this piece of software, Bart Thate, i disclaim all rights on the code contained in this software package. Therefore this software is free of all claims on it. This program is a given, therefore no one can be able to put it under any restriction, limitations or bounds. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PAR- TICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFT- WARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 2.2 README CORELIB is a library for writing bots. commands: add - add a <type> <value> all - show all possible keys cmnds - show all commands edit - edit object find - find objects 5

10 first - show first object join - join channel last - show last object log - add a log object mbox - import a mbox file rm - remove a object show - show JSON of an object start - start a service (xmpp/irc/udp/rss/api) status - show status of services stop - stop a service test - show test message timer - run a timer trim - remove duplicates in data dir uptime - show uptime of services version - show version 6 Chapter 2. DOCS

11 CHAPTER 3 PLUGS 3.1 core.plugs.add module add a value. add(event) 3.2 core.plugs.all module show all attributes available. all(event) 3.3 core.plugs.allow module add to allow list. allow(event) 3.4 core.plugs.api module Object Copy API. class APIHandler(request, client_address, server) Bases: http.server.basehttprequesthandler timeserver request handler class do_delete(zelf ) handle a REST request. do_get(zelf ) handle a REST request. do_post(zelf ) handle a REST request. do_put(zelf ) handle a REST request. 7

12 handle_request(zelf ) handle a REST request. log_request(zelf, code) log the request setup(zelf ) called on each incoming request. write_header(zelf, type= text/plain ) write headers to the client. class APIServer(zelf, *args, **kwargs) Bases: http.server.httpserver, core.object API server allow_reuse_address = True boot(zelf, *args, **kwargs) daemon_thread = True exit(zelf ) shutdown the API server. handle_error(zelf, request, addr) log the error serve(zelf ) serving loozelf. api_all(handler, request) api_get(handler, request) api_home(handler, request) api_show(handler, request) init(*args, **kwargs) 3.5 core.plugs.cmnds module show available commands. cmnds(event) 3.6 core.plugs.edit module edit. edit(event) 3.7 core.plugs.find module find objects based on attribute values. 8 Chapter 3. PLUGS

13 find(event) 3.8 core.plugs.first module first record found. first(event) 3.9 core.plugs.irc module irc related commands. init(*args, **kwargs) 3.10 core.plugs.join module join etc. join(event) 3.11 core.plugs.last module last record found. last(event) 3.12 core.plugs.log module add a value. log(event) 3.13 core.plugs.mbox module mailbox input plugin. mbox(event) 3.14 core.plugs.rm module remove. remove(event) 3.8. core.plugs.first module 9

14 3.15 core.plugs.rss module rss module. class RSS(zelf, sleep, *args, **kwargs) Bases: core.object boot(zelf, *args, **kwargs) display(zelf, *args, **kwargs) look(zelf, *args, **kwargs) run(zelf, *args, **kwargs) stop(zelf, *args, **kwargs) init(*args, **kwargs) 3.16 core.plugs.show module show JSON dump of objects. show(event) 3.17 core.plugs.start module run plugins initialization code. start(event) 3.18 core.plugs.status module show status. status(event) 3.19 core.plugs.stop module regen, regen. stop(event) 3.20 core.plugs.test module test command. cmnd(event) 10 Chapter 3. PLUGS

15 3.21 core.plugs.timer module time the timing. class Timer(zelf, time_alarm, event, *args, **kwargs) Bases: core.object echo(zelf, *args, **kwargs) timer(event) 3.22 core.plugs.trim module trim a core data directory into a new unique clone. trim(event) 3.23 core.plugs.udp module relay txt through a udp port listener. class UDP(zelf, *args, **kwargs) Bases: core.object output(zelf, input, addr) init(*args, **kwargs) 3.24 core.plugs.uptime module show uptimes. uptime(event) 3.25 core.plugs.version module show version. version(event) 3.26 core.plugs.xmpp module xmpp related stuff. init(*args, **kwargs) core.plugs.timer module 11

16 12 Chapter 3. PLUGS

17 CHAPTER 4 MODULE 4.1 core.completer module completer stuff. class TheCompleter(options) Bases: rlcompleter.completer complete(text, state) 4.2 core.defines module defines. 4.3 core.log module provide logging infrastructure. class Formatter(fmt=None, datefmt=none, style= % ) Bases: logging.formatter hooks into the logging system. format(zelf, record) init(loglevel) return a properly configured logger. 4.4 core.test module define core test classes. class Test(zelf, *args, **kwargs) Bases: unittest.case.testcase class that implements setup and teardow of tests. 13

18 4.5 core.utils module utils package. a_time(daystr) aj(sep=none, *args) b_time(daystr) cdir(path) check_permissions(ddir, dirmask=448, filemask=384) copyright() day() decode_char(txt, encoding= utf-8, what= ) dispatch(target, event, cmnd, *args, **kwargs) dj(*args) dtime(stamp) enc_char(s) enc_name(input) enc_needed(s) error(*args, **kwargs) feed(text) fetch_url(type, url, myheaders={}, postdata={}, keyfile=none, certfile=, port=80) format(*args, **kwargs) from_enc(txt, encoding= utf-8, what= ) ftime(datestr) full(a) get_clsname(obj) get_day(daystr) convert string to time. get_encoding(data) get_exception(*args, **kwargs) get_frame(search= code ) get_func(*args, **kwargs) get_funcname(func) get_highest(target, file_name) determine new file extension. get_hour(daystr) get_how(*args, **kwargs) get_name(obj) 14 Chapter 4. MODULE

19 get_plugname(*args, **kwargs) get_source(mod, package) get_state(obj, type= ) get_status(obj, type= ) get_strace(*args, **kwargs) get_uptime(obj) get_urls(data) get_zin(obj) hello(*args) hms() intersect(a, b) class istr Bases: builtins.str j(*args) list_eggs(filter= ) list_files(*args, **kwargs) loop(*args, **kwargs) make_opts(options) make_signature(data) make_time(daystr) mj(*args) need_redirect(resp) need_skip(obj, black=[], white=[]) nr_days(seconds) parse(txt) parse_ (fn) parse_url(*args, **kwargs) Attribute Index Value Value if not present scheme 0 URL scheme specifier empty string netloc 1 Network location part empty string path 2 Hierarchical path empty string query 3 Query component empty string fragment 4 Fragment identifier empty string parse_urls(*args, **kwargs) ptime(daystr) reduced_keys(*args, **kwargs) resolve(*args, **kwargs) resolve_host(ip=none, timeout=1.0) resolve_ip(hostname=none, timeout=1.0) rtime() 4.5. core.utils module 15

20 run_sed(filename, sedstring) replace oldcore strings with the new one. short_date(*args, **kwargs) short_time(*args, **kwargs) show_eggs(filter= core ) smooth(a) split_txt(what, l=375) str_day(seconds) strip_html(text) strip_wiki(text) stripbadchar(s) stripped(input) tdiff(d1, d2) time_string(*args, **kwargs) time_time(*args, **kwargs) to_enc(what, encoding= utf-8 ) today() return time of 0:00 today. touch(fname) txt_parse(txt) unescape(text) union(a, b) unique(a) useragent() verify_signature(data, signature) verzin(a) 4.6 core core package Subpackages core.plugs package Submodules core.plugs.add module add(event) add a value. 16 Chapter 4. MODULE

21 core.plugs.all module all(event) show all attributes available. core.plugs.allow module allow(event) add to allow list. core.plugs.api module Object Copy API. class APIHandler(request, client_address, server) Bases: http.server.basehttprequesthandler timeserver request handler class do_delete(zelf ) handle a REST request. do_get(zelf ) handle a REST request. do_post(zelf ) handle a REST request. do_put(zelf ) handle a REST request. handle_request(zelf ) handle a REST request. log_request(zelf, code) log the request setup(zelf ) called on each incoming request. write_header(zelf, type= text/plain ) write headers to the client. class APIServer(zelf, *args, **kwargs) Bases: http.server.httpserver, core.object API server allow_reuse_address = True boot(zelf, *args, **kwargs) daemon_thread = True exit(zelf ) shutdown the API server. handle_error(zelf, request, addr) log the error serve(zelf ) serving loozelf. api_all(handler, request) api_get(handler, request) api_home(handler, request) 4.6. core 17

22 api_show(handler, request) init(*args, **kwargs) core.plugs.cmnds module cmnds(event) show available commands. core.plugs.edit module edit(event) edit. core.plugs.find module find(event) find objects based on attribute values. core.plugs.first module first(event) first record found. core.plugs.irc module init(*args, **kwargs) irc related commands. core.plugs.join module join(event) join etc. core.plugs.last module last(event) last record found. core.plugs.log module log(event) add a value. core.plugs.mbox module mbox(event) mailbox input plugin. core.plugs.rm module remove(event) remove. core.plugs.rss module rss module. class RSS(zelf, sleep, *args, **kwargs) Bases: core.object boot(zelf, *args, **kwargs) display(zelf, *args, **kwargs) look(zelf, *args, **kwargs) 18 Chapter 4. MODULE

23 run(zelf, *args, **kwargs) stop(zelf, *args, **kwargs) init(*args, **kwargs) core.plugs.show module show(event) show JSON dump of objects. core.plugs.start module start(event) run plugins initialization code. core.plugs.status module status(event) show status. core.plugs.stop module stop(event) regen, regen. core.plugs.test module cmnd(event) test command. core.plugs.timer module time the timing. class Timer(zelf, time_alarm, event, *args, **kwargs) Bases: core.object echo(zelf, *args, **kwargs) timer(event) core.plugs.trim module trim(event) trim a core data directory into a new unique clone. core.plugs.udp module class UDP(zelf, *args, **kwargs) Bases: core.object output(zelf, input, addr) init(*args, **kwargs) relay txt through a udp port listener. core.plugs.uptime module uptime(event) show uptimes. core.plugs.version module version(event) show version core 19

24 core.plugs.xmpp module init(*args, **kwargs) xmpp related stuff. Module contents Submodules core.completer module completer stuff. class TheCompleter(options) Bases: rlcompleter.completer complete(text, state) core.defines module defines. core.log module provide logging infrastructure. class Formatter(fmt=None, datefmt=none, style= % ) Bases: logging.formatter hooks into the logging system. format(zelf, record) init(loglevel) return a properly configured logger. core.test module define core test classes. class Test(zelf, *args, **kwargs) Bases: unittest.case.testcase class that implements setup and teardow of tests. core.utils module utils package. a_time(daystr) aj(sep=none, *args) b_time(daystr) cdir(path) 20 Chapter 4. MODULE

25 check_permissions(ddir, dirmask=448, filemask=384) copyright() day() decode_char(txt, encoding= utf-8, what= ) dispatch(target, event, cmnd, *args, **kwargs) dj(*args) dtime(stamp) enc_char(s) enc_name(input) enc_needed(s) error(*args, **kwargs) feed(text) fetch_url(type, url, myheaders={}, postdata={}, keyfile=none, certfile=, port=80) format(*args, **kwargs) from_enc(txt, encoding= utf-8, what= ) ftime(datestr) full(a) get_clsname(obj) get_day(daystr) convert string to time. get_encoding(data) get_exception(*args, **kwargs) get_frame(search= code ) get_func(*args, **kwargs) get_funcname(func) get_highest(target, file_name) determine new file extension. get_hour(daystr) get_how(*args, **kwargs) get_name(obj) get_plugname(*args, **kwargs) get_source(mod, package) get_state(obj, type= ) get_status(obj, type= ) get_strace(*args, **kwargs) get_uptime(obj) get_urls(data) 4.6. core 21

26 get_zin(obj) hello(*args) hms() intersect(a, b) class istr Bases: builtins.str j(*args) list_eggs(filter= ) list_files(*args, **kwargs) loop(*args, **kwargs) make_opts(options) make_signature(data) make_time(daystr) mj(*args) need_redirect(resp) need_skip(obj, black=[], white=[]) nr_days(seconds) parse(txt) parse_ (fn) parse_url(*args, **kwargs) Attribute Index Value Value if not present scheme 0 URL scheme specifier empty string netloc 1 Network location part empty string path 2 Hierarchical path empty string query 3 Query component empty string fragment 4 Fragment identifier empty string parse_urls(*args, **kwargs) ptime(daystr) reduced_keys(*args, **kwargs) resolve(*args, **kwargs) resolve_host(ip=none, timeout=1.0) resolve_ip(hostname=none, timeout=1.0) rtime() run_sed(filename, sedstring) replace oldcore strings with the new one. short_date(*args, **kwargs) short_time(*args, **kwargs) show_eggs(filter= core ) smooth(a) split_txt(what, l=375) str_day(seconds) 22 Chapter 4. MODULE

27 strip_html(text) strip_wiki(text) stripbadchar(s) stripped(input) tdiff(d1, d2) time_string(*args, **kwargs) time_time(*args, **kwargs) to_enc(what, encoding= utf-8 ) today() return time of 0:00 today. touch(fname) txt_parse(txt) unescape(text) union(a, b) unique(a) useragent() verify_signature(data, signature) verzin(a) Module contents basic package for the program. exception AttributeSet Bases: core.error attribute is already set. class Bot(zelf, *args, **kwargs) Bases: core.dispatcher Base Bot class. announce(zelf, *args, **kwargs) announce on channels. begin(zelf, *args, **kwargs) start a bot. cmnd(zelf, *args, **kwargs) run a command with provided string. connect(zelf, *args, **kwargs) connect to server. exit(zelf, *args, **kwargs) shutdown a bot. get_event(zelf, *args, **kwargs) return an event> 4.6. core 23

28 get_prompt(zelf, *args, **kwargs) return a prompt. join_channels(zelf, *args, **kwargs) join channels. say(zelf, *args, **kwargs) output channel, txt. waiting = False class ConsoleBot(zelf, *args, **kwargs) Bases: core.bot bot running on the console. announce(zelf, *args, **kwargs) get_event(zelf, *args, **kwargs) get_prompt(zelf, *args, **kwargs) waiting = False exception DataNotSet Bases: core.error missing argument attribute. class Dispatcher(zelf, *args, **kwargs) Bases: core.object the dispatcher delegates the workload to the Runners. Runner gets instantiated when needed. allowed(zelf, *args, **kwargs) cleanup(zelf, dojoin=false) remove idle Runners. denied(zelf, *args, **kwargs) dispatch(zelf, *args, **kwargs) dispatch an event onto a Runner. execute(zelf, *args, **kwargs) execute a command, event pair. exit(zelf, name=none) stop the Runners. is_alive(zelf, *args, **kwargs) whether any Runners running. make_new(zelf, *args, **kwargs) create a Runner. put(zelf, *args, **kwargs) put load to the Runner. register(zelf, *args, **kwargs) callback type with corresponding callback function. run_func(zelf, *args, **kwargs) execute command/event pair. 24 Chapter 4. MODULE

29 exception Error Bases: builtins.baseexception basic Exception used in the program. exception FileNotFoundError Bases: core.error file is not found. class IRCBot(zelf, *args, **kwargs) Bases: core.bot IRC bot. action(zelf, printto, what, event=none, *args, **kwargs) bind(zelf ) cc =. close(zelf ) connect(zelf, reconnect=true) ctcp(zelf, printto, what) ctcpreply(zelf, printto, what) delop(zelf, channel, who) donick(zelf, nick, setorig=false, save=false, whois=false) doop(zelf, channel, who) get_event(zelf, *args, **kwargs) getchannelmode(zelf, channel) handle_366(zelf, *args, **kwargs) handle_433(zelf, event) handle_513(zelf, event) handle_ctcp(zelf, event) handle_invite(zelf, event) handle_join(zelf, event) handle_notice(zelf, event) handle_ping(zelf, event) handle_privmsg(zelf, event) join(zelf, channel, password=none) logon(zelf ) marker = \r\n names(zelf, channel) notice(zelf, printto, what) part(zelf, channel) ping(zelf, *args, **kwargs) 4.6. core 25

30 pong(zelf, *args, **kwargs) privmsg(zelf, printto, txt) quit(zelf, reason= ) read_some(zelf, *args, **kwargs) say(zelf, *args, **kwargs) send(zelf, txt) settopic(zelf, channel, txt) stop(zelf, *args, **kwargs) voice(zelf, channel, who) who(zelf, who) whois(zelf, who) class Looper(zelf, *args, **kwargs) Bases: core.object a Looper calls a function every x seconds. boot(zelf, *args, **kwargs) initialize a Looper. get_name(zelf, *args, **kwargs) exception NoJSON Bases: core.error no JSON could be decoded/encoded. exception NoTarget Bases: core.error missing argument attribute. exception NoWorkdirSet Bases: builtins.baseexception a working directory is needed. exception NotSet Bases: core.error attribute is not set. class Object Bases: builtins.dict basic Object on which the rest of the program is based. announce(zelf, *args, **kwargs) announce to all the running cores. check_notwanted(zelf, *args, **kwargs) whether an object is not desired. check_wanted(zelf, *args, **kwargs) whether an object is desired. clear(zelf ) clear the ready state. 26 Chapter 4. MODULE

31 define(zelf, *args, **kwargs) set a attribute on this object. first(zelf, *args, **kwargs) return the first object where the key and/or value matches. get_args(zelf, *args, **kwargs) get the arguments of the txt attribute. get_cmnd(zelf, *args, **kwargs) determine the command in the zelf.txt attribute, if present. get_days(zelf, *args, **kwargs) get the number of days relative to the object s creation time. get_filetime(zelf, *args, **kwargs) timestamp of related filename. get_keys(zelf, *args, **kwargs) skip the unwanted keys e.g those that start with a _. get_obj(zelf, *args, **kwargs) cloned object, with only the proper keys used. get_parsed(zelf, *args, **kwargs) parse the txt attribute. get_rest(zelf, *args, **kwargs) get the rest of the txt attribute. get_root(zelf, *args, **kwargs) root directory of the program. get_slice(zelf, *args, **kwargs) take a slice of the Object. get_timed(zelf, *args, **kwargs) retrieve the creation time of an object. get_url(zelf, *args, **kwargs) url of the object s file so that it can be retrieved when API server is running. last(zelf, *args, **kwargs) return the last object where the key and/or value matches. load(zelf, *args, **kwargs) load a JSON file into this object. make_path(zelf, *args, **kwargs) create workdir if necessary. make_signature(zelf, sig=none) signature of the data contained in this object. objects(zelf, *args, **kwargs) list of all object s. pretty(zelf ) nice formatted JSON string of this object. read(zelf, *args, **kwargs) read the JSON file from disk core 27

32 ready(zelf ) signal to ready state. register(zelf, *args, **kwargs) register a value in a list on this object. reply(zelf, *args, **kwargs) send reply to origin. save(zelf, *args, **kwargs) save JSON to disk. say(zelf, *args, **kwargs) output text through the _target attribute. selected(zelf, *args, **kwargs) list of desired objects. selector(zelf, *args, **kwargs) see if this objects has the desired attributes. show(zelf ) list of key,value pairs. sync(zelf, *args, **kwargs) sync JSON to disk. to_disk(zelf, *args, **kwargs) create JSON ready to be saved to disk. to_full(zelf, *args, **kwargs) full JSON dump of this object. to_json(zelf, *args, **kwargs) JSON string representation of this object. wait(zelf, sec=180.0) wait for ready state. write(zelf, *args, **kwargs) actual write to disk. exception Overload Bases: core.error method is trying to be overloaded. class Plugins(zelf, *args, **kwargs) Bases: core.object object to register plugins with. exit(zelf, *args, **kwargs) exit all plugins. get_names(zelf, plugsdir) plugnames from the plugin directory. init(zelf, *args, **kwargs) init all plugins or a specific one if argument is given. load_mod(zelf, plugname, pdir=, force=true) load module. 28 Chapter 4. MODULE

33 load_package(zelf, modname) load package. load_plugs(zelf, path) load plugins from the plugin directory. plug_init(zelf, *args, **kwargs) initialize plugin. plug_shutdown(zelf, plugname) call the shutdown() function, if provided. reload(zelf, plugname, force=false) reload a plugin. exception RemoteDisconnect Bases: core.error Exception thrown when the connection is disconnected. class Runner(zelf, *args, **kwargs) Bases: threading.thread the working unit of CORELIB. exit(zelf, *args, **kwargs) stop the Runner. get_name(zelf, *args, **kwargs) nr = 0 put(zelf, *args, **kwargs) put arguments/kwargs to the Runner. class TestBot(zelf, *args, **kwargs) Bases: core.bot Bot used in unittests. check(zelf, *args, **kwargs) class XMPPBot(zelf, *args, **kwargs) Bases: core.bot XMPP bot. connect(zelf ) exception(zelf, ex) get_event(zelf, *args, **kwargs) handle_connected(zelf, *args, **kwargs) handle_disconnected(zelf, *args, **kwargs) handle_failedauth(zelf, error, *args) handle_failure(zelf, ex, *args, **kwargs) handle_message(zelf, data, *args, **kwargs) handle_presence(zelf, data, *args, **kwargs) loop(zelf, *args, **kwargs) say(zelf, *args, **kwargs) 4.6. core 29

34 session_start(zelf, event) stop(zelf, *args, **kwargs) boot(*args, **kwargs) get the program properly initialized. irc_parse(obj, *args, **kwargs) parse a string into an IRC event. kernel_status() shutdown() close the program in a appropiate manner. 30 Chapter 4. MODULE

35 Python Module Index c core, 23 core.completer, 20 core.defines, 20 core.log, 20 core.plugs, 20 core.plugs.add, 16 core.plugs.all, 17 core.plugs.allow, 17 core.plugs.api, 17 core.plugs.cmnds, 18 core.plugs.edit, 18 core.plugs.find, 18 core.plugs.first, 18 core.plugs.irc, 18 core.plugs.join, 18 core.plugs.last, 18 core.plugs.log, 18 core.plugs.mbox, 18 core.plugs.rm, 18 core.plugs.rss, 18 core.plugs.show, 19 core.plugs.start, 19 core.plugs.status, 19 core.plugs.stop, 19 core.plugs.test, 19 core.plugs.timer, 19 core.plugs.trim, 19 core.plugs.udp, 19 core.plugs.uptime, 19 core.plugs.version, 19 core.plugs.xmpp, 20 core.test, 20 core.utils, 20 31

Z Documentation. Release 2. Bart Thate

Z Documentation. Release 2. Bart Thate Z Documentation Release 2 Bart Thate July 06, 2014 Contents 1 DOCS 3 1.1 README................................................ 3 1.2 License.................................................. 3 2 PLUGINS

More information

Fritz Speed Documentation

Fritz Speed Documentation Fritz Speed Documentation Release 0.1.1 Thomas Westfeld February 04, 2016 Contents 1 What it does 1 2 How It Works 3 3 Contents 5 3.1 Installation................................................ 5 3.2

More information

Healthstone Monitoring System

Healthstone Monitoring System Healthstone Monitoring System Patrick Lambert v1.1.0 Healthstone Monitoring System 1 Contents 1 Introduction 2 2 Windows client 2 2.1 Installation.............................................. 2 2.2 Troubleshooting...........................................

More information

Architecting the Future of Big Data

Architecting the Future of Big Data Hive ODBC Driver User Guide Revised: October 1, 2012 2012 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and

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

monoseq Documentation

monoseq Documentation monoseq Documentation Release 1.2.1 Martijn Vermaat July 16, 2015 Contents 1 User documentation 3 1.1 Installation................................................ 3 1.2 User guide................................................

More information

plonesocial.auth.rpx Documentation

plonesocial.auth.rpx Documentation plonesocial.auth.rpx Documentation Release 0.9 Carsten Rebbien August 14, 2014 Contents 1 Tutorial 3 1.1 Install plonesocial.auth.rpx in Plone................................... 3 1.2 Creating an account

More information

HP WBEM Services Software Developer's Kit Version A.02.11.00 Release Notes. HP-UX 11i v3

HP WBEM Services Software Developer's Kit Version A.02.11.00 Release Notes. HP-UX 11i v3 HP WBEM Services Software Developer's Kit Version A.02.11.00 Release Notes HP Part Number: 5900-2555 Published: March 2013 Copyright 2012, 2013 Hewlett-Packard Development Company, L.P. Legal Notices The

More information

Sophos for Microsoft SharePoint Help. Product version: 2.0

Sophos for Microsoft SharePoint Help. Product version: 2.0 Sophos for Microsoft SharePoint Help Product version: 2.0 Document date: September 2015 Contents 1 About Sophos for Microsoft SharePoint...3 2 Dashboard...4 3 Configuration...5 3.1 On-access scan...5 3.2

More information

MultiValue Dashboard. Installation Guide

MultiValue Dashboard. Installation Guide MultiValue Dashboard Installation Guide Introduction to MultiValue Dashboard MultiValue Dashboard is a dynamic Web-based development tool for the creation of desktop widgets utilizing your knowledge of

More information

S3 Monitor Design and Implementation Plans

S3 Monitor Design and Implementation Plans S 3 Monitor Version 1.0 Specifications and Integration Plan 1 Copyright c 2011 Hewlett Packard Copyright c 2011 Purdue University Permission is hereby granted, free of charge, to any person obtaining a

More information

Allscripts Professional EHR

Allscripts Professional EHR for Allscripts Professional EHR Remote Desktop (RDP) Setup and Installation Guide April, 2015 ii Copyright 2010 2015 NoteSwift, Inc. All Rights Reserved. NoteSwift is a trademark of NoteSwift, Inc., in

More information

ScanJour PDF 2014 R8. Configuration Guide

ScanJour PDF 2014 R8. Configuration Guide Configuration Guide Contents 1. Configuration Guide for ScanJour PDF 2014 R8 3 2. What's new 4 3. Installing ScanJour PDF WebService 5 4. Features 10 5. Connecting with WorkZone Content Server 14 6. The

More information

PHP Integration Kit. Version 2.5.1. User Guide

PHP Integration Kit. Version 2.5.1. User Guide PHP Integration Kit Version 2.5.1 User Guide 2012 Ping Identity Corporation. All rights reserved. PingFederate PHP Integration Kit User Guide Version 2.5.1 December, 2012 Ping Identity Corporation 1001

More information

Send Email TLM. Table of contents

Send Email TLM. Table of contents Table of contents 1 Overview... 3 1.1 Overview...3 1.1.1 Introduction...3 1.1.2 Definitions... 3 1.1.3 Concepts... 3 1.1.4 Features...4 1.1.5 Requirements... 4 2 Warranty... 5 2.1 Terms of Use... 5 3 Configuration...6

More information

Quick Connect Express for Active Directory

Quick Connect Express for Active Directory Quick Connect Express for Active Directory Version 5.2 Quick Start Guide 2012 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

Log Insight Manager. Deployment Guide

Log Insight Manager. Deployment Guide Log Insight Manager Deployment Guide VERSION: 3.0 UPDATED: OCTOBER 2015 Copyright Notices Copyright 2002-2015 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

8.7. Resource Kit User Guide

8.7. Resource Kit User Guide 8.7 Resource Kit User Guide 2011 Quest Software, Inc. ALL RIGHTS RESERVED. This document contains proprietary information protected by copyright. The software described in this document is furnished under

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

Analog Documentation. Release 0.3.4. Fabian Büchler

Analog Documentation. Release 0.3.4. Fabian Büchler Analog Documentation Release 0.3.4 Fabian Büchler April 01, 2014 Contents 1 Contents 3 1.1 Quickstart................................................ 3 1.2 Analog API................................................

More information

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes User Guide Rev A StreamServe Persuasion SP4StreamServe Connect for SAP - Business Processes User Guide Rev A SAP, mysap.com,

More information

Symantec NetBackup Vault Operator's Guide

Symantec NetBackup Vault Operator's Guide Symantec NetBackup Vault Operator's Guide UNIX, Windows, and Linux Release 7.5 Symantec NetBackup Vault Operator's Guide The software described in this book is furnished under a license agreement and may

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Release Notes Software Release 6.0.0 May 2014 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

Installation and Testing of NMM (Windows)

Installation and Testing of NMM (Windows) Installation and Testing of NMM (Windows) Motama GmbH, Saarbruecken, Germany (http://www.motama.com) April 2010 Copyright (C) 2005-2010 Motama GmbH, Saarbruecken, Germany http://www.motama.com Permission

More information

CA Performance Center

CA Performance Center CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Simba ODBC Driver with SQL Connector for Apache Cassandra

Simba ODBC Driver with SQL Connector for Apache Cassandra Simba ODBC Driver with SQL Connector for Apache Cassandra Installation and Configuration Guide May 7, 2013 Simba Technologies Inc. Copyright 2012-2013 Simba Technologies Inc. All Rights Reserved. Information

More information

HIGHSEC eid App Administration User Manual

HIGHSEC eid App Administration User Manual HIGHSEC eid App Administration User Manual Contents 1 Introduction... 3 2 Application overview... 3 3 Managing HIGHSEC eid App... 3 3.1 Deleting card pairings... 4 4 Inspecting smart card contents... 5

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion http://www.oit.duke.edu/scsc/ http://wiki.duke.edu/display/scsc scsc@duke.edu John Pormann, Ph.D. jbp1@duke.edu Software Carpentry Courseware This is a re-work from the

More information

Flask-SSO Documentation

Flask-SSO Documentation Flask-SSO Documentation Release 0.3.0 CERN July 30, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

IGEL Universal Management. Installation Guide

IGEL Universal Management. Installation Guide IGEL Universal Management Installation Guide Important Information Copyright This publication is protected under international copyright laws, with all rights reserved. No part of this manual, including

More information

TECHILA INTERCONNECT END-USER GUIDE

TECHILA INTERCONNECT END-USER GUIDE TECHILA INTERCONNECT END-USER GUIDE 16 NOVEMBER 2015 TECHILA INTERCONNECT 2/17 16 NOVEMBER 2015 Disclaimer Techila Technologies Ltd. disclaims any and all warranties, express, implied or statutory regarding

More information

CompleteView Admin Console User s Manual. Version 3.8

CompleteView Admin Console User s Manual. Version 3.8 CompleteView Admin Console User s Manual Version 3.8 Table Of Contents Introduction... 1 End User License Agreement... 1 Overview... 2 Configuration... 3 Starting the Admin Console... 3 Adding a Server...

More information

Acronis SharePoint Explorer. User Guide

Acronis SharePoint Explorer. User Guide Acronis SharePoint Explorer User Guide Table of contents 1 Introducing Acronis SharePoint Explorer... 3 1.1 Supported Microsoft SharePoint versions... 3 1.2 Supported backup locations... 3 1.3 Licensing...

More information

etrust Audit Using the Recorder for Check Point FireWall-1 1.5

etrust Audit Using the Recorder for Check Point FireWall-1 1.5 etrust Audit Using the Recorder for Check Point FireWall-1 1.5 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational

More information

IDS and Penetration Testing Lab IIIa

IDS and Penetration Testing Lab IIIa IDS and Penetration Testing Lab IIIa Dissecting a Botnet C&C - rbot Triggering Lab Malware operation Upon execution malware connects to botirc.net server and establishes standard IRC session with #test

More information

BrightStor ARCserve Backup for Linux

BrightStor ARCserve Backup for Linux BrightStor ARCserve Backup for Linux Agent for MySQL Guide r11.5 D01213-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the end user's

More information

Log Service Installation Instructions

Log Service Installation Instructions Log Service Installation Instructions Abstract The purpose of the Log Service is to centrally handle log messages in one place for the entire Web site. This document describes how to install the Log Service

More information

DIGIPASS Authentication for Remote Desktop Web Access User Manual 3.4

DIGIPASS Authentication for Remote Desktop Web Access User Manual 3.4 DIGIPASS Authentication for Remote Desktop Web Access User Manual 3.4 Disclaimer Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis, without any other warranties,

More information

Settle-to-File Credit Card Driver for 3700 POS

Settle-to-File Credit Card Driver for 3700 POS Restaurant Enterprise Series Settle-to-File Credit Card Driver for 3700 POS Version 4.x August 15, 2008 Copyright 2004-2008 by MICROS Systems, Inc. Columbia, MD USA All Rights Reserved MD0003-076 ii Installation

More information

Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes

Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes Altiris Monitor Pack for Servers 7.1 SP2 from Symantec Release Notes The software described in this book is furnished under a license

More information

Symantec Enterprise Vault Technical Note. Troubleshooting the Monitoring database and agents. Windows

Symantec Enterprise Vault Technical Note. Troubleshooting the Monitoring database and agents. Windows Symantec Enterprise Vault Technical Note Troubleshooting the Monitoring database and agents Windows December 2006 Symantec Enterprise Vault Troubleshooting the Monitoring database and agents Copyright

More information

Veritas Operations Manager Release Notes. 3.0 Rolling Patch 1

Veritas Operations Manager Release Notes. 3.0 Rolling Patch 1 Veritas Operations Manager Release Notes 3.0 Rolling Patch 1 Veritas Operations Manager Release Notes The software described in this book is furnished under a license agreement and may be used only in

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

Python for Series 60 Platform

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

More information

SPARROW Gateway. Developer Data Vault Payment Type API. Version 2.7 (6293)

SPARROW Gateway. Developer Data Vault Payment Type API. Version 2.7 (6293) SPARROW Gateway Developer Data Vault Payment Type API Version 2.7 (6293) Released July 2015 Table of Contents SPARROW Gateway... 1 Developer Data Vault Payment Type API... 1 Overview... 3 Architecture...

More information

Building Conferencing Applications Using Intel NetStructure Host Media Processing Software

Building Conferencing Applications Using Intel NetStructure Host Media Processing Software Application Note Building Conferencing Applications Using Intel NetStructure Host Media Processing Software Intel in Communications Building Conferencing Applications Using Intel NetStructure Host Media

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication

Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Contents Domain Controller Certificates... 1 Enrollment for a Domain Controller Certificate...

More information

Symantec NetBackup OpenStorage Solutions Guide for Disk

Symantec NetBackup OpenStorage Solutions Guide for Disk Symantec NetBackup OpenStorage Solutions Guide for Disk UNIX, Windows, Linux Release 7.6 Symantec NetBackup OpenStorage Solutions Guide for Disk The software described in this book is furnished under a

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

openssl egg Bindings to the OpenSSL SSL/TLS library Extension for Chicken Scheme Version 1.1.1 Thomas Chust

openssl egg Bindings to the OpenSSL SSL/TLS library Extension for Chicken Scheme Version 1.1.1 Thomas Chust openssl egg Bindings to the OpenSSL SSL/TLS library Extension for Chicken Scheme Version 1.1.1 Thomas Chust i Table of Contents 1 About this egg............................ 1 1.1 Version history..............................................

More information

MySQL Installer Guide

MySQL Installer Guide MySQL Installer Guide Abstract This document describes MySQL Installer, an application that simplifies the installation and updating process for a wide range of MySQL products, including MySQL Notifier,

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

SolarWinds Technical Reference

SolarWinds Technical Reference SolarWinds Technical Reference Using SSL Certificates in Web Help Desk Introduction... 1 How WHD Uses SSL... 1 Setting WHD to use HTTPS... 1 Enabling HTTPS and Initializing the Java Keystore... 1 Keys

More information

Symantec Backup Exec 2010 R2. Quick Installation Guide

Symantec Backup Exec 2010 R2. Quick Installation Guide Symantec Backup Exec 2010 R2 Quick Installation Guide 20047221 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement.

More information

System Center Virtual Machine Manager 2012 R2 Plug-In. Feature Description

System Center Virtual Machine Manager 2012 R2 Plug-In. Feature Description System Center Virtual Machine Manager 2012 R2 Plug-In Feature Description VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 May 2015 About this guide Prerequisites and requirements NetWeaver configuration Legal notices About

More information

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction, transfer, distribution

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

PROFESSIONAL. Node.js BUILDING JAVASCRIPT-BASED SCALABLE SOFTWARE. Pedro Teixeira WILEY. John Wiley & Sons, Inc.

PROFESSIONAL. Node.js BUILDING JAVASCRIPT-BASED SCALABLE SOFTWARE. Pedro Teixeira WILEY. John Wiley & Sons, Inc. PROFESSIONAL Node.js BUILDING JAVASCRIPT-BASED SCALABLE SOFTWARE Pedro Teixeira WILEY John Wiley & Sons, Inc. INTRODUCTION xxvii CHAPTER 1: INSTALLING NODE 3 Installing Node on Windows 4 Installing on

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS

More information

Command Line Interface User Guide for Intel Server Management Software

Command Line Interface User Guide for Intel Server Management Software Command Line Interface User Guide for Intel Server Management Software Legal Information Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint User s Guide

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint User s Guide TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint User s Guide Software Release 1.0 Feburary 2013 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

Synology NAS Server. Group Installation Guide 2008-06-16. Synology NAS Server Group Installation Guide

Synology NAS Server. Group Installation Guide 2008-06-16. Synology NAS Server Group Installation Guide Synology NAS Server Group Installation Guide 2008-06-16 States and other countries. Synology Inc. 2008 Synology Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Google Cloud Print Setup. User s Guide

Google Cloud Print Setup. User s Guide Google Cloud Print Setup User s Guide [INDEX] 1. Before Use... 3 1-1. Settings for Enabling Local Printing... 3 1-1-1. Bonjour Settings... 3 1-1-2. SSL Settings for WebDAV Server Funtion... 3 1-1-3. Quick

More information

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013 TIBCO Spotfire Metrics Modeler User s Guide Software Release 6.0 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Google Cloud Print User's Manual

Google Cloud Print User's Manual Google Cloud Print User's Manual Symbols used in this manual This manual uses the following symbols. Note! These are cautions and limitations for correct operation. It is strongly recommended that you

More information

Pine Exchange mini HOWTO

Pine Exchange mini HOWTO Pine Exchange mini HOWTO Alexandru Roman v1.0, 2002 03 28 Revision History Revision 1.0 2002 03 28 Revised by: ar Submitted to the LDP for publication. Revision 0.3 2002 03 25 Revised

More information

CS WinOMS Practice Management Software Server Migration Help Guide

CS WinOMS Practice Management Software Server Migration Help Guide CS WinOMS Practice Management Software Server Migration Help Guide Checklist Prior to Beginning a Server Migration: A. The CS WinOMS install disk. Install files can be downloaded to server via FTP, contact

More information

Enterprise Vault.cloud. Microsoft Exchange Managed Folder Archiving Guide

Enterprise Vault.cloud. Microsoft Exchange Managed Folder Archiving Guide Enterprise Vault.cloud Microsoft Exchange Managed Folder Archiving Guide Enterprise Vault.cloud: Microsoft Exchange Managed Folder Archiving Guide The software described in this book is furnished under

More information

RSA Two Factor Authentication

RSA Two Factor Authentication RSA Two Factor Authentication VERSION: 1.0 UPDATED: MARCH 2014 Copyright 2002-2014 KEMP Technologies, Inc. All Rights Reserved. Page 1 / 16 Copyright Notices Copyright 2002-2014 KEMP Technologies, Inc..

More information

Fuse MQ Enterprise Broker Administration Tutorials

Fuse MQ Enterprise Broker Administration Tutorials Fuse MQ Enterprise Broker Administration Tutorials Version 7.0 April 2012 Integration Everywhere Broker Administration Tutorials Version 7.0 Updated: 14 Sep 2012 Copyright 2011 FuseSource Corp. All rights

More information

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Configuring connection settings Nokia E50 Configuring connection settings Legal Notice Copyright

More information

Troubleshooting / FAQ

Troubleshooting / FAQ Troubleshooting / FAQ Routers / Firewalls I can't connect to my server from outside of my internal network. The server's IP is 10.0.1.23, but I can't use that IP from a friend's computer. How do I get

More information

Configuring and Integrating MAPI

Configuring and Integrating MAPI Configuring and Integrating MAPI The Basics of MAPI 3 The MAPI User Experience Monitor in SAM 4 Troubleshooting MAPI 7 This document includes basic information about MAPI and its role with SolarWinds SAM.

More information

Backup Exec Cloud Storage for Nirvanix Installation Guide. Release 2.0

Backup Exec Cloud Storage for Nirvanix Installation Guide. Release 2.0 Backup Exec Cloud Storage for Nirvanix Installation Guide Release 2.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the

More information

Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5

Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 Technical Note Web Services for Management Perl Library VMware ESX Server 3.5, VMware ESX Server 3i version 3.5, and VMware VirtualCenter 2.5 In the VMware Infrastructure (VI) Perl Toolkit 1.5, VMware

More information

Nokia E61i Configuring connection settings

Nokia E61i Configuring connection settings Nokia E61i Configuring connection settings Nokia E61i Configuring connection settings Legal Notice Copyright Nokia 2007. All rights reserved. Reproduction, transfer, distribution or storage of part or

More information

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Note Before using this information and the product it supports,

More information

Snare System Version 6.3.4 Release Notes

Snare System Version 6.3.4 Release Notes Snare System Version 6.3.4 Release Notes is pleased to announce the release of Snare Server Version 6.3.4. Snare Server Version 6.3.4 New Features The behaviour of the Snare Server reflector has been modified

More information

Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com

Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com Craig Pelkie Bits & Bytes Programming, Inc. craig@web400.com The Basics of IP Packet Filtering Edition IPFILTER_20020219 Published by Bits & Bytes Programming, Inc. Valley Center, CA 92082 craig@web400.com

More information

RSA Security Analytics. S4 Broker Setup Guide

RSA Security Analytics. S4 Broker Setup Guide RSA Security Analytics S4 Broker Setup Guide Copyright 2010-2013 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks or trademarks

More information

Azure Multi-Factor Authentication. KEMP LoadMaster and Azure Multi- Factor Authentication. Technical Note

Azure Multi-Factor Authentication. KEMP LoadMaster and Azure Multi- Factor Authentication. Technical Note KEMP LoadMaster and Azure Multi- Factor Authentication Technical Note VERSION: 1.0 UPDATED: APRIL 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies

More information

Unicenter NSM Integration for BMC Remedy. User Guide

Unicenter NSM Integration for BMC Remedy. User Guide Unicenter NSM Integration for BMC Remedy User Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

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

More information

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1)

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the

More information

Subversion Server for Windows

Subversion Server for Windows Subversion Server for Windows VisualSVN Team VisualSVN Server: Subversion Server for Windows VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft Corporation.

More information

Integrate Rails into an Existing IIS Web infrastructure using Mongrel

Integrate Rails into an Existing IIS Web infrastructure using Mongrel This article will walk you through the steps of installing Ruby, Gems, Rails, and other important libraries on a Windows 2003 server with IIS. Microsoft s Internet Information Server is a popular proprietary

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba Microsoft SQL Server ODBC Installation and Configuration Guide Simba Technologies Inc. September 10, 2015 Copyright 2015 Simba Technologies Inc. All Rights Reserved. Information in this document

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

IBM Security SiteProtector System Two-Factor Authentication API Guide

IBM Security SiteProtector System Two-Factor Authentication API Guide IBM Security IBM Security SiteProtector System Two-Factor Authentication API Guide Version 2.9 Note Before using this information and the product it supports, read the information in Notices on page 13.

More information

TIBCO Hawk SNMP Adapter Installation

TIBCO Hawk SNMP Adapter Installation TIBCO Hawk SNMP Adapter Installation Software Release 4.9.0 November 2012 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

Netop Remote Control Security Server

Netop Remote Control Security Server A d m i n i s t r a t i o n Netop Remote Control Security Server Product Whitepaper ABSTRACT Security is an important factor when choosing a remote support solution for any enterprise. Gone are the days

More information

Acronis Backup & Recovery: Events in Application Event Log of Windows http://kb.acronis.com/content/38327

Acronis Backup & Recovery: Events in Application Event Log of Windows http://kb.acronis.com/content/38327 Acronis Backup & Recovery: Events in Application Event Log of Windows http://kb.acronis.com/content/38327 Mod ule_i D Error _Cod e Error Description 1 1 PROCESSOR_NULLREF_ERROR 1 100 ERROR_PARSE_PAIR Failed

More information

RSA Two Factor Authentication. Feature Description

RSA Two Factor Authentication. Feature Description RSA Two Factor Authentication Feature Description VERSION: 3.0 UPDATED: SEPTEMBER 2015 Copyright Notices Copyright 2002 2015 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP

More information

EPESI PARTNERSHIP PROGRAM [EPP]

EPESI PARTNERSHIP PROGRAM [EPP] EPESI PARTNERSHIP PROGRAM [EPP] (Terms & conditions) Program Description Epesi Partnership Program [EPP] was created by Telaxus LLC for third party individuals and companies offering or willing to offer

More information