dbusoorexx Bringing the Power of D-Bus to Your Fingertips
|
|
|
- Beatrice Thomas
- 10 years ago
- Views:
Transcription
1 Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik dbusoorexx Bringing the Power of D-Bus to Your Fingertips LinuxCon Europe 2015, Dublin October 6 th, 2015 Rony G. Flatscher Wirtschaftsuniversität Wien Welthandelsplatz 1 A-1020 Wien Austria Hier LinuxCon Vortrags-/Vorlesungstitel Automatisierung Europe, 2015, von Dublin Windows im Master Anwendungen eintragen (3) 1 Prof. Dr. Rony G. Flatscher
2 Agenda D-Bus History, usages, concepts, importance has been increasing! Very brief overview of oorexx (open object Rexx) History, easy syntax, reads like pseudo-code, fun! D-Bus Language Bindings for oorexx ("dbusoorexx") Overview, marrying a dynamic language with a strictly typed wire protocol Examples for clients, servers (services) Important utility for on-the-fly documentation " dbusdoc.rex" (also "dbuslistobjectpaths.rex") Roundup and outlook, URLs for further fun Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 2 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
3 D-Bus History History RedHat, Inc. Havoc Pennington First release of the D-Bus specifications: (revision 0.8), cf. < Handed over to "freedesktop.org", cf. < Became part of all Linux distributions Latest release, version (distros often use older versions) Cross-platfrom, ported to other operating systems, e.g. MacOSX Windows Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 3 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
4 D-Bus Usages, 1 Linux kernel communicates with environment Uses the "system" D-Bus daemon (a message broker) Broadcasting D-Bus signals to report noteworthy events E.g. reporting additions/removal of devices For security reasons D-Bus services and interactions are controlled by system service configuration files Warning: do not change the service configuration files with administrative privileges, if you are not 100% sure what you are doing! You could harm your own system bad time! Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 4 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
5 D-Bus Usages, 2 Applications (services) within sessions Uses the "session" D-Bus daemon (a message broker) Using the user's credentials for using D-Bus services and interactions Allows to interact with D-Bus "session" services using D-Bus messages Allows to control the desktop and many applications Allows to learn about events broadcasted as D-Bus signals from "session" services Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 5 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
6 D-Bus Concepts, 1 D-Bus Transports Unix sockets, address prefix: "unix:" Server and client on same computer launchd, address prefix: "launchd:" Server and client on same computer nonce-tcp/ip sockets, address prefix: "nonce-tcp:" Server and client on same computer TCP/IP sockets, address prefix: "tcp:" Server and client on same or different computer Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 6 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
7 D-Bus Concepts, 2 D-Bus Messages Employing a transport, D-Bus messages can be exchanged Message consists of an interface name and a member name There are four message types "call message" that may cause a "reply message" or an "error message" (or no reply at all) a one-way "signal message" Arguments and return values are strictly typed 13 basic types (boolean, byte, double, int16, float, string,...) 4 container types (array, map/dict, structure, variant) Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 7 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
8 D-Bus Datatypes array a.array boolean b Rexx string byte y Rexx string double d Rexx string int16 n Rexx string int32 i Rexx string in64 x Rexx string objpath o Rexx string signature g Rexx string string s Rexx string uint16 q Rexx string uint32 u Rexx string uint64 t Rexx string unix_fd h Rexx string variant v depends on signature structure ().Array map/dict a{s }.Directory Some examples: org.freedesktop.dbus.introspectable s Introspect() org.freedesktop.dbus.properties v Get(ss) a{sv} GetAll(s) Set(ssv) org.freedesktop.dbus.notifications CloseNotification(u) as GetCapabilities() (ssss) GetServerInformation() u Notify(susssasa{sv}i) Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 8 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
9 D-Bus Concepts, 3 D-Bus Connection A connection between a D-Bus client and a D-Bus server Dubbed "bus" D-Bus Message Daemon/Broker A D-Bus server A set of services that allow it to act as a message broker Relays D-Bus messages among D-Bus clients connected to it Manages D-Bus connections Allows to assign one or more unique names to connections Can start D-Bus services on demand Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 9 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
10 D-Bus D-Bus Message Daemon/Broker Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 10 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
11 D-Bus Concepts, 4 Object Path A String starting with "/" Denotes the "object" one wishes to send a D-Bus message to Sending D-Bus messages Unique bus name, service name Object path Interface name Member name Arguments Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 11 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
12 D-Bus Concepts, 5 Discovering D-Bus service object interfaces on the fly Message org.freedesktop.dbus.introspectable.introspect() Returns a XML-encoded file with the interface definitions Addressed to a D-Bus object in a D-Bus service Exploited by e.g. dbusoorexx, including dbusdoc.rex d-feet qt-qdbusviewer Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 12 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
13 D-Bus Concepts, 6 Private D-Bus Server Allows to create a simple "private" D-Bus server No daemon/broker services available D-Bus clients can interact with D-Bus server D-Bus infrastructure allows to Connect to a (private) D-Bus server Exchange D-Bus messages with the D-Bus server Makes it easy to create client-server apps fast If using the tcp-transport, then D-Bus based interactions can be accross multiple computers! Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 13 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
14 Brief introduction to oorexx Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 14 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
15 Introduction to oorexx, 1 The Origin: REXX, IBM, 1979 IBM (Mike F. Cowlishaw, Hursley) Replacement for the somewhat awkward EXEC II mainframe scripting language REXX should be "human centric" by comparison Easy syntax, hence really easy to learn and to remember! Feasible for rare programmers and home/business programmers! ANSI (!) Rexx standard in 1996 Many interpreters on different platforms, e.g. Amiga! Declared to be IBM's SAA scripting language IBM implemented it on all of its platforms! IBM mainframes to this day controlled by REXX! Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 15 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
16 Introduction to oorexx, 2 Nutshell REXX, Example 2 Fundamental Concepts (Code 1) say "Hello world!" /* yields: Hello world! */ say 1/3 /* yields: */ numeric digits 25 /* now use 25 significant digits in arithmetics */ say "1"/3 /* yields: */ "rm -rf *" /* remove all files recursively */ "Everything is a string" Everything outside of quotes gets uppercased Arbitraryly precise decimal arithmetic ANSI Rexx rules served for defining the rules for other programming languages and is used for implementing decimal arithmetics in hardware Unknown statements are passed to invoker Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 16 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
17 Introduction to oorexx, 3 The Successor: Object REXX, IBM, 1997 IBM created a true object-oriented replacement Initial research by Simon Nash (started 1988, Hursley), continued and finalized by Rick McGuire (1997) Continues to execute REXX programs unchanged Adds directives (led in with two colons ::) Directs the interpreter to carry out services before interpreting the program starting with line 1 Adds classes, methods, messages (own operator) "Everything is an object" 1997 part of OS/2 Warp IBM sold commercial versions for AIX, Windows Experimental versions for Linux, Solaris Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 17 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
18 Introduction to oorexx, 4 The Opensource: Open Object REXX, 2005 IBM handed over the Object REXX source code to the nonprofit special interest group (SIG) Rexx Language Association (RexxLA) In 2005 RexxLA published first opensource version as "Open Object Rexx (oorexx)", version 3.0 Currently at version 4.2 available for all major operating systems Linux, MacOSX, Windows (with OLE/COM-support) Work on version 5.0 has started Helping hands always welcome! :-) Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 18 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
19 Introduction to oorexx, 5 Nutshell Example.Dog ~new("sweety") ~bark /* create a dog, let it bark */.BigDog~new("Grobian")~bark /* create a big dog, let it bark */ ::class Dog ::method init /* constructor method */ expose name /* establish direct access to attribute (object variable) */ use arg name /* retrieve argument, assign it to attribute */ ::attribute name /* defines an attribute */ ::method bark say self~name":" "Wuff Wuff" ::class BigDog subclass Dog ::method bark say self~name":" "WUFFF! WUFFF!! WUFFF!!!" /* yields the following output: */ Sweety: Wuff Wuff Grobian: WUFFF! WUFFF!! WUFFF!!! Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 19 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
20 D-Bus Language Bindings for oorexx Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 20 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
21 D-Bus Language Bindings for oorexx Overview, 1 Combination of native code ("dbusoorexx", C++) and the oorexx package named "dbus.cls" (oorexx) Closely coupled "dbusoorexx" depends on classes and behaviour of "dbus.cls" "dbus.cls", an oorexx package/program, depends on the features and behaviour of "dbusoorexx", a C++ library Do not change the code, unless you know what you are doing! Goals Make it easy for oorexx programmers to interact with D-Bus Take advantage of a dynamically typed language Apply the Rexx "human-orientation" philosophy where possible Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 21 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
22 D-Bus Language Bindings for oorexx Overview, 2 "dbus.cls" Defines oorexx classes for the D-Bus language binding DBus Core class to allow - Connecting to D-Bus daemons (e.g. "system", "session", address) - Sending distinct call and signal messages to D-Bus services - Filtering and fetching signal messages from other D-Bus services - Getting oorexx proxy objects for D-Bus service objects DBusProxy Utility class to camouflage a service object as an oorexx object - Returned by.dbus method getobject(busname,objectpath) Automatic method lookup, marshalling of arguments and unmarshalling of return values Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 22 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
23 D-Bus Language Bindings for oorexx Overview, 3 DBusServiceObject Allows oorexx objects to be used as D-Bus service objects DBusSignalListener Implicitly used by.dbus Allows for additional filtering of D-Bus signal messages DBusServer Allows to create a private D-Bus server in oorexx Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 23 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
24 D-Bus Language Bindings for oorexx Overview, 4 IDBusPathMaker Utility class to set up D-Bus service-object discovery for oorexx DBusServiceObjects IntrospectHelper, IntrospectHelperInterface Utility classes to create introspection data on-the-fly IDBus, IDBusNode, IDBusInterface, IDBusMethod, IDBusCallMethod, IDBusSignalMethod, IDBusPropertyMethod, IDBusArg, IDBusAnnotation Utility classes for introspection of D-Bus service objects Needed by classes and routines in "dbus.cls" Usually not used by oorexx programmers Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 24 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
25 D-Bus Language Bindings for oorexx Overview, 5 Public routines dbus.box(signature[,args]) Needed for variant values that expect a specific signature stringtoutf8(string) D-Bus string datatype must be UTF-8 Converts a Rexx string to UTF-8 (if it contains non-us characters), requires the BSF4ooRexx package Camouflages Java (JRE) as a dynamic, caseless oorexx class library Cf. < DBusDataType(value[,type]) Returns the D-Bus datatype name of value, else.nil If type argument given, returns.true or.false, type can be: B[usname], I[nterfaceName], M[ember], O[bjectPath], S[ignature] Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 25 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
26 D-Bus Language Bindings for oorexx Example 1 (org.freedesktop.notifications), 1 Using a common service Bus name ("service name") org.freedesktop.notifications Object path /org/freedesktop/notifications Interface name org.freedesktop.notifications Members as (ssss) u CloseNotification(u) GetCapabilities() GetServerInformation() Notify(susssasa{sv}i) Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 26 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
27 D-Bus Language Bindings for oorexx Excursion: On-the-fly Documentation, 1 D-Bus documentation sometimes "meager" Idea to exploit the D-Bus infrastructure The "org.freedesktop.dbus" family of interfaces org.freedesktop.dbus.introspection.introspect() Usually implemented by every D-Bus service objects Render interface definitions as HTML text Format results with CSS to allow easy usage, format changes Collect complex signatures and list them at the end Usage: dbusdoc.rex [[session system] [service name]] Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 27 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
28 D-Bus Language Bindings for oorexx Excursion: On-the-fly Documentation, 2 rexx dbusdoc.rex Notifications Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 28 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
29 D-Bus Language Bindings for oorexx Example 1 (org.freedesktop.notifications), 2 Getting the D-Bus service object as an oorexx object.dbus method getobject(busname,objectpath) returns a DBusProxyObject which Remembers the bus name and the object path Used for sending messages Interrogates the interfaces of the target D-Bus service object Used for automatically determining methods, marshalling arguments and unmarshalling return values Very simple and easy to interact with D-Bus service objects! Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 29 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
30 D-Bus Language Bindings for oorexx Example 1 (org.freedesktop.notifications), 3 /* get access to remote object */ o=.dbus~session~getobject("org.freedesktop.notifications","/org/freedesktop/notifications") id=o~notify("an oorexx App",, "oorexx", "oorexx Demo", "Hello, my beloved world!",,, -1).dbus~session~close /* explicitly close session bus, shuts down DBus message loop thread */ ::requires "dbus.cls" /* get DBus support */ Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 30 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
31 D-Bus Language Bindings for oorexx Example 1 [Without Proxy], 4 conn=.dbus~session /* get connection to session dbus */ /* define message arguments */ busname ="org.freedesktop.notifications" objectname ="/org/freedesktop/notifications" interfacename ="org.freedesktop.notifications" membername ="Notify" replysignature="u" /* uint32 */ callsignature ="susssasa{sv}i" /* string,uint32,string,string,string,array of string,dict,int32 */ id=conn~message("call",busname,objectname,interfacename,membername,replysignature,callsignature, - "An oorexx App",, "oorexx", "oorexx Demo", "Hello, my beloved world!",,, -1) conn~close /* explicitly close connection, shuts down DBus message loop thread */ ::requires "dbus.cls" /* get DBus support */ Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 31 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
32 D-Bus Language Bindings for oorexx Intercepting DBus Signals One-way D-Bus messages with no return value Interface, name, arguments (optional) D-Bus daemon allows filtering for them Only forwards matching signal D-Bus messages.dbus method listener to add a Rexx listener object Invokes Rexx method named after the signal Otherwise the unknown mechanism of oorexx can be employed Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 32 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
33 D-Bus Language Bindings for oorexx Example 2 (Listening to Signals), 1 signal on halt -- intercept ctl-c (jump to label 'halt:' below) conn=.dbus~session -- get the "session" connection conn~listener("add",.rexxsignallistener~new) -- add the Rexx listener object conn~match("add", "type='signal'",.true) -- ask for any signal message say "Hit enter to stop listener..." parse pull answer -- wait for pressing enter halt: -- a label for a halt condition (ctl-c) say "closing connection." conn~close -- close connection, stops message loop ::requires "dbus.cls" -- get dbus support for oorexx ::class RexxSignalListener -- just dump all signals/events we receive to be continued on next page Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 33 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
34 D-Bus Language Bindings for oorexx Example 2 (Listening to Signals), 2 continued from previous page ::class RexxSignalListener -- just dump all signals/events we receive ::method unknown -- this method intercepts all unknown messages use arg methname, methargs slotdir=methargs[methargs~size] -- last argument is slotdir say "-->" pp(slotdir~messagetypename) pp(slotdir~interface) - pp(slotdir~member)", nrargs="methargs~items-1 if methargs~items>1 then do do i=1 to methargs~items-1 say " argument #" i":" pp(methargs[i]) end end say "-"~copies(79) ::method NameOwnerChanged -- demo how to directly intercept a signal use arg name, old, new, slotdir say "==> NameOwnerChanged:" "Name:" pp(name)", OldOwner:" pp(old) - ", NewOwner:" pp(new) say "-"~copies(79) ::routine pp -- "pretty print": enclose string value with square brackets parse arg value return "["value"]" Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 34 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
35 D-Bus Language Bindings for oorexx Example 2 (Listening to Signals), 3 Running client yields (starting and then clicking into another terminal window): rony@rony-thinkpad-x230:~/work/code$ rexx listener.rex --> [signal] [org.freedesktop.dbus] [NameAcquired], nrargs=1 argument # 1: [:1.193] Hit enter to stop listener... --> [signal] [org.ayatana.bamf.matcher] [StackingOrderChanged], nrargs= > [signal] [org.freedesktop.dbus.properties] [PropertiesChanged], nrargs=2 argument # 1: [org.ayatana.bamf.view] argument # 2: [a Directory] > [signal] [org.ayatana.bamf.view] [ActiveChanged], nrargs=1 argument # 1: [1] > [signal] [org.ayatana.bamf.matcher] [ActiveWindowChanged], nrargs=2 argument # 1: [/org/ayatana/bamf/window/ ] argument # 2: [/org/ayatana/bamf/window/ ] > [signal] [org.freedesktop.dbus.properties] [PropertiesChanged], nrargs=2 argument # 1: [org.ayatana.bamf.view] argument # 2: [a Directory] cut Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 35 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
36 D-Bus Language Bindings for oorexx Creating DBus Services ("DBus Server") In a nutshell (setting up a D-Bus service) Create a Rexx class that implements the methods Supply a method named Introspect returning XML Request a busname from the D-Bus daemon Define an interface and an object name.dbus method serviceobject to add a D-Bus object (object name) and its Rexx service object Invokes Rexx method named after the D-Bus message Otherwise the unknown mechanism of oorexx can be employed Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 36 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
37 D-Bus Language Bindings for oorexx Example 3 (Multiplier, Server/Service), 1 #!/usr/bin/rexx busname ="org.rexxla.oorexx.demo.hello" objectpath ="/org/rexxla/oorexx/demo/hello" signal on halt -- intercept ctl-c (jump to label "halt:") conn=.dbus~session -- get the session bus res=conn~busname("request", busname) -- request a bus name if res<>.dbus.dir~primaryowner & res<>.dbus.dir~alreadyowner then -- o.k., wait for clients? do say "res="res "problem with requesting the bus name" busname", aborting..." exit -1 end service=.hellorexxservice~new -- create an instance of the Rexx service conn~serviceobject("add", objectpath, service) -- add service object to connection say "Hit enter to stop server..." parse pull answer halt: -- a ctl-c causes a jump to this label say "closing connection." conn~close -- close connection, stops message loop ::requires "dbus.cls" -- get dbus support for oorexx ::class HelloRexxService -- the methods of this class service DBus clients! to be continued on next page Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 37 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
38 D-Bus Language Bindings for oorexx Example 3 (Multiplier, Server/Service), 2 continued from previous page ::class HelloRexxService -- the methods of this class service DBus clients! ::method Multiply -- implementation of "orx.rexxla.oorexx.demo.hello.multiply" use arg number1, number2, slotdir say "Multiply-request received: sender-bus=["slotdir~sender"]" "at=["slotdir~datetime"]" return number1*number2 ::method Introspect /* return the introspection data for this service object */ return '<!DOCTYPE node PUBLIC "-//freedesktop//dtd D-BUS Object Introspection 1.0//EN"' - '" ' - '<node> ' - ' <interface name="org.freedesktop.dbus.introspectable"> ' - ' <method name="introspect"> ' - ' <arg name="data" direction="out" type="s"/> ' - ' </method> ' - ' </interface> ' - ' <interface name="org.rexxla.oorexx.demo.hello"> ' - ' <method name="multiply"> ' - ' <arg name="number1" direction="in" type="d"/> ' - ' <arg name="number2" direction="in" type="d"/> ' - ' <arg name="result" direction="out" type="d"/> ' - ' </method> ' - ' </interface> ' - '</node> ' Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 38 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
39 D-Bus Language Bindings for oorexx Example 3 (Multiplier, Client), 3 #!/usr/bin/rexx conn=.dbus~connect("session") -- connect to the "session" bus busname ="org.rexxla.oorexx.demo.hello" objectpath ="/org/rexxla/oorexx/demo/hello" o=conn~getobject(busname, objectpath) -- get the DBus object parse arg num1 num2 -- parse command line arguments if num1="" then num1= supply a default if num2="" then num2= supply a default say num1"*"num2"="o~multiply(num1,num2) -- use the multiply method conn~close ::requires "dbus.cls" -- get dbus support for oorexx Running client yields: rony@rony-thinkpad-x230:~/work/code$ rexx c_multiplier.rex *10.01= rony@rony-thinkpad-x230:~/work/code$ rexx c_multiplier.rex *43.219= Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 39 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
40 About Packaging dbusoorexx: Anyone who could give a helping hand? :-) No knowledge about creating packages for the different Linux distros! Can you provide one by any chance? Mostlikely a rpm and a deb package would be very helpful for the project A package for the binaries and closely related files liboorexxdbus.so dubs.cls (executable) dbusdoc.rex, dbuslistobjectpaths.rex (executables) dbusdoc.css (default rendering definitions) A separate (?) package for the documentation and samples oorexxdbusoverview.pdf, sample Rexx scripts oorexxdocs (JavaDoc-like documentation for oorexx) Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 40 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
41 Roundup and Outlook Genuine oorexx language binding for oorexx 32- and 64-bit ports available Deployable on all Linux systems Makes it very easy to exploit D-Bus Rexx philosophy "human-orientness" a guiding principle All D-Bus service objects can be interacted with All D-Bus signals (events) can be handled oorexx D-Bus service objects easy to implement! Great tools come with it "dbusdoc.rex", "dbuslistobjectpaths.rex" Support for other D-Bus platforms available! MacOSX Windows Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 41 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
42 D-Bus Language Bindings for oorexx URLs as of These slides: < Student's works: < oorexx: < Code: < Helpbooks (rexxpg.pdf, rexxref.pdf), or book: < Brief: < RexxLA (owner): < dbusoorexx (code contains all platforms) Code: < Docs: < D-Bus for Windows: < D-Bus for MacOSX, eg. via < Hier LinuxCon Vortrags-/Vorlesungstitel Europe, 2015, Dublinim Master eintragen 42 Hier Name des Vortragenden im Rony Master G. eintragen Flatscher
D-Bus Language Bindings for oorexx
Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik D-Bus Language Bindings for oorexx The 2011 International Rexx Symposium Rony G. Flatscher Wirtschaftsuniversität Wien Augasse 2-6 A-1090
New Features in BSF4ooRexx (Camouflaging Java as oorexx) http://sourceforge.net/projects/bsf4oorexx/files/
Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik New Features in BSF4ooRexx (Camouflaging Java as oorexx) http://sourceforge.net/projects/bsf4oorexx/files/ The 2015 International Rexx Symposium
The 2014 Edition of BSF4ooRexx (for Windows, Linux, MacOSX) http://sourceforge.net/projects/bsf4oorexx/files/
Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik The 2014 Edition of BSF4ooRexx (for Windows, Linux, MacOSX) http://sourceforge.net/projects/bsf4oorexx/files/ The 2014 International Rexx
How To Run A Test File Extension On A Rexx 4.1.1 (Unix) 4.2.1 On A Microsoft Linux 4.3.2 (Amd64) (Orchestra) (For Windows) (
Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik Configuring Rexx Interpreter Instances from NetRexx/Java The 2012 International Rexx Symposium Rony G. Flatscher Wirtschaftsuniversität Wien
Implementing Rexx Handlers in NetRexx/Java/Rexx
Institut für Betriebswirtschaftslehre und Wirtschaftsinformatik Implementing Rexx Handlers in NetRexx/Java/Rexx The 2012 International Rexx Symposium Rony G. Flatscher Wirtschaftsuniversität Wien Augasse
Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner
1 vk» Java 7 Recipes (,\['«** - < g!p#«josh Juneau Carl Dea Freddy Guime John O'Conner Contents J Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments Introduction iv xvi
An Introduction to Procedural and Object-oriented Programming (Object Rexx) 8 "Automating Windows and Windows Applications"
MIS Department An Introduction to Procedural and Object-oriented Programming (Object Rexx) 8 "Automating Windows and Windows Applications" Windows Script Host (WSH), Windows Script Engine (WSE), Windows
Exploiting the Web with Tivoli Storage Manager
Exploiting the Web with Tivoli Storage Manager Oxford University ADSM Symposium 29th Sept. - 1st Oct. 1999 Roland Leins, IBM ITSO Center - San Jose [email protected] Agenda The Web Client Concept Tivoli
PHP on the D-BUS. Welcome!
Welcome! PHP on the D-BUS International PHP Conference - Berlin, Germany Derick Rethans - [email protected] - twitter: @derickr http://derickrethans.nl/talks.html About Me Derick Rethans Dutchman living in
CORBA, DCOP and DBUS. A performance comparison.
CORBA, DCOP and DBUS. A performance comparison. Abstract For quite a while now I have been under the impression that the CORBA IPC/RPC mechanism used by the GNOME desktop environment was bloated and slow.
DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service
DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service Achieving Scalability and High Availability Abstract DB2 Connect Enterprise Edition for Windows NT provides fast and robust connectivity
An Introduction to Procedural and Object-oriented Programming (Object Rexx) 3 "Automating Windows and Windows Applications"
MIS Department An Introduction to Procedural and Object-oriented Programming (Object Rexx) 3 "Automating Windows and Windows Applications" Windows Script Host (WSH), Windows Script Engine (WSE), Windows
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Design Notes for an Efficient Password-Authenticated Key Exchange Implementation Using Human-Memorable Passwords
Design Notes for an Efficient Password-Authenticated Key Exchange Implementation Using Human-Memorable Passwords Author: Paul Seymer CMSC498a Contents 1 Background... 2 1.1 HTTP 1.0/1.1... 2 1.2 Password
Android Developer Fundamental 1
Android Developer Fundamental 1 I. Why Learn Android? Technology for life. Deep interaction with our daily life. Mobile, Simple & Practical. Biggest user base (see statistics) Open Source, Control & Flexibility
SendMIME Pro Installation & Users Guide
www.sendmime.com SendMIME Pro Installation & Users Guide Copyright 2002 SendMIME Software, All Rights Reserved. 6 Greer Street, Stittsville, Ontario Canada K2S 1H8 Phone: 613-831-4023 System Requirements
This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8.
This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8. Page 1 of 29 The objectives of this module are to list the causes
SOSFTP Managed File Transfer
Open Source File Transfer SOSFTP Managed File Transfer http://sosftp.sourceforge.net Table of Contents n Introduction to Managed File Transfer n Gaps n Solutions n Architecture and Components n SOSFTP
Practice Fusion API Client Installation Guide for Windows
Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction
How To Install An Aneka Cloud On A Windows 7 Computer (For Free)
MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the
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
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
An Introduction to Procedural and Object-oriented Programming (Object Rexx) 1 "Automating Windows and Windows Applications"
MIS Department An Introduction to Procedural and Object-oriented Programming (Object Rexx) 1 "Automating Windows and Windows Applications" OLE-Automation/ActiveX-Automation, the Object Rexx Proxy Class
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
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note
BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise
The presentation explains how to create and access the web services using the user interface. WebServices.ppt. Page 1 of 14
The presentation explains how to create and access the web services using the user interface. Page 1 of 14 The aim of this presentation is to familiarize you with the processes of creating and accessing
GUARD1 PLUS SE Administrator's Manual
GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 [email protected] www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS
Connect Getting Started Guide. Connect 2.1.1 Getting Started Guide
Connect 2.1.1 Getting Started Guide Page 1 of 22 Internetware Limited, 2008 Welcome...3 Introduction...3 What s new in 2.1...3 Technical Requirements...4 How does Connect work?...5 Application Connectors...5
NetSpective Logon Agent Guide for NetAuditor
NetSpective Logon Agent Guide for NetAuditor The NetSpective Logon Agent The NetSpective Logon Agent is a simple application that runs on client machines on your network to inform NetSpective (and/or NetAuditor)
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
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 [email protected] Carl Timmer [email protected]
Firewall Builder Architecture Overview
Firewall Builder Architecture Overview Vadim Zaliva Vadim Kurland Abstract This document gives brief, high level overview of existing Firewall Builder architecture.
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor
Getting Started with the Internet Communications Engine
Getting Started with the Internet Communications Engine David Vriezen April 7, 2014 Contents 1 Introduction 2 2 About Ice 2 2.1 Proxies................................. 2 3 Setting Up ICE 2 4 Slices 2
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
AllJoyn Analytics Service Framework 1.0 Interface Definition
AllJoyn Analytics Service Framework 1.0 Interface Definition February 17, 2015 This work is licensed under a Creative Commons Attribution 4.0 International License. http://creativecommons.org/licenses/by/4.0/
1. Installing and configuring APC UPS Management
1. Installing and configuring APC UPS Management 1.1. Objectives and Overview In this lab, you will learn how to install and configure the APC UPS power management suite and the Web/SNMP Management Card.
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
How To Install Netbackup Access Control (Netbackup) On A Netbackups (Net Backup) On Unix And Non Ha (Net Backup) (Net Backups) (Unix) (Non Ha) (Windows) (
Tech Note 4 NBAC (NetBackup Access Control) UNIX Quick Install Non HA This section includes the following topics About NBAC (NetBackup Access Control) About NBAC (NetBackup Access Control) Starting Checklist
Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation
Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science updated 03/08/2012 Unit 1: JKarel 8 weeks http://www.fcps.edu/is/pos/documents/hs/compsci.htm
Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6
201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786
Adjusting Prevention Policy Options Based on Prevention Events. Version 1.0 July 2006
Adjusting Prevention Policy Options Based on Prevention Events Version 1.0 July 2006 Table of Contents 1. WHO SHOULD READ THIS DOCUMENT... 4 2. WHERE TO GET MORE INFORMATION... 4 3. VERIFYING THE OPERATION
Projektseminar aus Wirtschaftsinformatik
Projektseminar aus Wirtschaftsinformatik Creation and Installation of BSF4ooRexx on MacOSX Seminararbeit 26.01.2011 Jürgen Hesse Manuel Paar Table of contents 1 Introduction... 4 1.1 oorexx... 4 1.2 BSF4ooRexx...
A Heterogeneous Internetworking Model with Enhanced Management and Security Functions
Session 1626 A Heterogeneous Internetworking Model with Enhanced Management and Security Functions Youlu Zheng Computer Science Department University of Montana Yan Zhu Sybase, Inc. To demonstrate how
$ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@";
NAME Net::FTP - FTP Client class SYNOPSIS use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
F-Secure Internet Gatekeeper
F-Secure Internet Gatekeeper TOC F-Secure Internet Gatekeeper Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper...5 1.1 Features...6 Chapter 2: Deployment...8 2.1 System requirements...9 2.2
Volume SYNAMETRICS TECHNOLOGIES. A Division of IndusSoft Technologies, Inc. DeltaCopy User s Guide
Volume 1 SYNAMETRICS TECHNOLOGIES A Division of IndusSoft Technologies, Inc DeltaCopy User s Guide SYNAMETRICS TECHNOLOGIES DeltaCopy User s Guide Synametrics Technologies 27 Sand Hill Ct., Jamesburg,
Introduction to Network Security Lab 1 - Wireshark
Introduction to Network Security Lab 1 - Wireshark Bridges To Computing 1 Introduction: In our last lecture we discussed the Internet the World Wide Web and the Protocols that are used to facilitate communication
Introducing Apache Pivot. Greg Brown, Todd Volkert 6/10/2010
Introducing Apache Pivot Greg Brown, Todd Volkert 6/10/2010 Speaker Bios Greg Brown Senior Software Architect 15 years experience developing client and server applications in both services and R&D Apache
User s Manual. Version 1.01 - January 2011. EVS SNMP Monitoring
User s Manual Version 1.01 - January 2011 EVS SNMP Monitoring XNet Monitor V.1.01 User Manual Issue 1.01.C COPYRIGHT EVS Broadcast Equipment Copyright 2009-2011. All rights reserved. DISCLAIMER The information
IBM WebSphere Adapter for Email 7.0.0.0. Quick Start Tutorials
IBM WebSphere Adapter for Email 7.0.0.0 Quick Start Tutorials Note: Before using this information and the product it supports, read the information in "Notices" on page 182. This edition applies to version
Security Guide. BlackBerry Enterprise Service 12. for ios, Android, and Windows Phone. Version 12.0
Security Guide BlackBerry Enterprise Service 12 for ios, Android, and Windows Phone Version 12.0 Published: 2015-02-06 SWD-20150206130210406 Contents About this guide... 6 What is BES12?... 7 Key features
StreamServe Persuasion SP4 Service Broker
StreamServe Persuasion SP4 Service Broker User Guide Rev A StreamServe Persuasion SP4 Service Broker User Guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No
The programming language C. sws1 1
The programming language C sws1 1 The programming language C invented by Dennis Ritchie in early 1970s who used it to write the first Hello World program C was used to write UNIX Standardised as K&C (Kernighan
Project 1: Implement a simple hosts framework using UNIX TCP Sockets to demonstrate the concept of Mobile Agents
Project 1: Implement a simple hosts framework using UNIX TCP Sockets to demonstrate the concept of Mobile Agents Due date: October 15 (Monday), 2007 Requirements This exercise should be done individually.
Continuous Integration Part 2
1 Continuous Integration Part 2 This blog post is a follow up to my blog post Continuous Integration (CI), in which I described how to execute test cases in Code Tester (CT) in a CI environment. What I
LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013
LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...
So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02)
Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #39 Search Engines and Web Crawler :: Part 2 So today we
Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management November 11, 2014 Version 2.0 Revision 1.
Covene Cohesion Server Installation Guide A Modular Platform for Pexip Infinity Management November 11, 2014 Version 2.0 Revision 1.0 Table of Contents 1 Overview... 3 2 Covene Cohesion Server Installation...
Version 14.0. Overview. Business value
PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing
Application Release Automation (ARA) Vs. Continuous Delivery
Application Release Automation (ARA) Vs. Continuous Delivery A whitepaper review of the feature and process differences between Continuous Delivery and Application Release Automation (ARA) By Tracy Ragan,
Administration Quick Start
www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
We will learn the Python programming language. Why? Because it is easy to learn and many people write programs in Python so we can share.
LING115 Lecture Note Session #4 Python (1) 1. Introduction As we have seen in previous sessions, we can use Linux shell commands to do simple text processing. We now know, for example, how to count words.
Qlik Sense Enabling the New Enterprise
Technical Brief Qlik Sense Enabling the New Enterprise Generations of Business Intelligence The evolution of the BI market can be described as a series of disruptions. Each change occurred when a technology
Efficiency of Web Based SAX XML Distributed Processing
Efficiency of Web Based SAX XML Distributed Processing R. Eggen Computer and Information Sciences Department University of North Florida Jacksonville, FL, USA A. Basic Computer and Information Sciences
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
Virtual CD v10. Network Management Server Manual. H+H Software GmbH
Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual
Exclaimer Signature Manager 2.0 User Manual
Exclaimer Exclaimer UK +44 (0) 1252 531 422 USA 1-888-450-9631 [email protected] Contents GETTING STARTED... 10 Signature Manager Overview... 11 How Does it Work?... 11 But That's Not All...... 12 And
Ipswitch Client Installation Guide
IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group
(n)code Solutions CA A DIVISION OF GUJARAT NARMADA VALLEY FERTILIZERS COMPANY LIMITED P ROCEDURE F OR D OWNLOADING
(n)code Solutions CA A DIVISION OF GUJARAT NARMADA VALLEY FERTILIZERS COMPANY LIMITED P ROCEDURE F OR D OWNLOADING a Class IIIc SSL Certificate using BEA Weblogic V ERSION 1.0 Page 1 of 8 Procedure for
Setting Up the Site Licenses
XC LICENSE SERVER Setting Up the Site Licenses INTRODUCTION To complete the installation of an XC Site License, create an options file that includes the Host Name (computer s name) of each client machine.
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa September 14, 2011 G. Lipari (Scuola Superiore Sant Anna) Introduction
SSO Plugin. Installation for BMC AR System and WUT. J System Solutions. http://www.javasystemsolutions.com Version 3.4
SSO Plugin Installation for BMC AR System and WUT J System Solutions http://www.javasystemsolutions.com Version 3.4 Table of Contents Introduction... 4 Compatibility... 5 Mixing versions of SSO Plugin...5
Invitation to Ezhil : A Tamil Programming Language for Early Computer-Science Education 07/10/13
Invitation to Ezhil: A Tamil Programming Language for Early Computer-Science Education Abstract: Muthiah Annamalai, Ph.D. Boston, USA. Ezhil is a Tamil programming language with support for imperative
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide
Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.
7 Why Use Perl for CGI?
7 Why Use Perl for CGI? Perl is the de facto standard for CGI programming for a number of reasons, but perhaps the most important are: Socket Support: Perl makes it easy to create programs that interface
A Comparative Study on Vega-HTTP & Popular Open-source Web-servers
A Comparative Study on Vega-HTTP & Popular Open-source Web-servers Happiest People. Happiest Customers Contents Abstract... 3 Introduction... 3 Performance Comparison... 4 Architecture... 5 Diagram...
ODBC Driver User s Guide. Objectivity/SQL++ ODBC Driver User s Guide. Release 10.2
ODBC Driver User s Guide Objectivity/SQL++ ODBC Driver User s Guide Release 10.2 Objectivity/SQL++ ODBC Driver User s Guide Part Number: 10.2-ODBC-0 Release 10.2, October 13, 2011 The information in this
Oracle Universal Content Management 10.1.3
Date: 2007/04/16-10.1.3 Oracle Universal Content Management 10.1.3 Document Management Quick Start Tutorial Oracle Universal Content Management 10.1.3 Document Management Quick Start Guide Page 1 Contents
DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x
DS License Server Installation and Configuration Guide 3DEXPERIENCE R2014x Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology Edition, Version
HP Operations Manager Software for Windows Integration Guide
HP Operations Manager Software for Windows Integration Guide This guide documents the facilities to integrate EnterpriseSCHEDULE into HP Operations Manager Software for Windows (formerly known as HP OpenView
Apache JMeter HTTP(S) Test Script Recorder
Apache JMeter HTTP(S) Test Script Recorder This tutorial attempts to explain the exact steps for recording HTTP/HTTPS. For those new to JMeter, one easy way to create a test plan is to use the Recorder.
Signiant Agent installation
Signiant Agent installation Release 11.3.0 March 2015 ABSTRACT Guidelines to install the Signiant Agent software for the WCPApp. The following instructions are adapted from the Signiant original documentation
Federated Access to an HTTP Web Service Using Apache (WSTIERIA Project Technical Note 1)
(WSTIERIA Project Technical Note 1) 1 Background 12/04/2010, Version 0 One of the outputs of the SEE-GEO project was façade code to sit in front of an HTTP web service, intercept client requests, and check
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months Our program is a practical knowledge oriented program aimed at making innovative and attractive applications for mobile
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 28, 2010 G. Lipari (Scuola Superiore Sant Anna) Introduction
Example of Standard API
16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface
Windows PowerShell Cookbook
Windows PowerShell Cookbook Lee Holmes O'REILLY' Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword Preface xvii xxi Part I. Tour A Guided Tour of Windows PowerShell
NetIQ AppManager for IBM WebSphere Application Server UNIX Management Guide
NetIQ AppManager for IBM WebSphere Application Server UNIX Management Guide March 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER
RecoveryVault Express Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
avast! for linux technical documentation
avast! for linux technical documentation Martin Tůma, [email protected] June 4, 2014 Contents 1 Overview 1 2 Installation 2 3 Operation 3 4 Licensing 4 5 Virus definitions updates 4 6 AMaViS integration 4
Hello World Portlet Rendered with JSP for WebSphere Portal Version 4.1
1 of 11 16.10.2002 11:41 Hello World Portlet Rendered with JSP for WebSphere Portal Version 4.1 Table of Contents Creating the directory structure Creating the Java code Compiling the code Creating the
Installation Guidelines (MySQL database & Archivists Toolkit client)
Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed
Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64
Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and
