Implementing Rexx Handlers in NetRexx/Java/Rexx
|
|
|
- Byron Ambrose Rose
- 10 years ago
- Views:
Transcription
1 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 2-6 A-1090 Wien Hier The 2012 Vortrags-/Vorlesungstitel Automatisierung International von Rexx Windows Symposium, im Master Anwendungen eintragen RTP, North (3) Carolina 1 Prof. Dr. RonyG. Flatscher
2 Agenda New BSF4ooRexx 4.1 support for configuring Rexx interpreter instances from Java/NetRexx Setup options for command and exit handlers Writing Rexx (sub)command handlers Nutshell example Writing Rexx exit handlers Nutshell example Roundup Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 2 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
3 New BSF4ooRexx 4.1 Support for Startup Options, Overview The Java RexxEngine represents an oorexx interpreter instance and is managed by a BSFManager Initialization of the Rexx interpreter instance gets now deferred as long as possible Allows configuring the Rexx interpreter instance A default configuration matching previous BSF4ooRexx options Configuration done via RexxConfiguration object of RexxEngine Rexx interpreter instance gets created upon the first request from Java to execute Rexx code No (re-)configuration possible anymore Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 3 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
4 New BSF4ooRexx 4.1 Support for Startup Options, RexxConfiguration, 1 Options available in Java/NetRexx EXTERNAL_CALL_PATH EXTERNAL_CALL_EXTENSIONS LOAD_REQUIRED_LIBRARY DIRECT_EXITS DIRECT_ENVIRONMENTS INITIAL_ADDRESS_ENVIRONMENT Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 4 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
5 New BSF4ooRexx 4.1 Support for Startup Options, RexxConfiguration, 2 To get access to the RexxConfiguration Create a RexxEngine instance Use the public method getrexxconfiguration() Use the RexxConfiguration methods for setting up exit and command handlers Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 5 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
6 New BSF4ooRexx 4.1 Support for Startup Options, RexxConfiguration, 3 Configuration methods available in RexxConfiguration Rexx option DIRECT_EXITS Exit numbers ("function") defined in interface RexxExitHandler Defined exit handlers can be replaced at runtime! - Defined exits can be temporarily "nullified" at runtime! void addexithandler(int function, RexxExitHandler exithandler) throws BSFException RexxExitHandler setexithandler(int function, RexxExitHandler exithandler) throws BSFException RexxExitHandler getexithandler(int function) BitSet getdefinedexits() Object [] getexithandlers() Object[] contains an int and a RexxExitHandler array object Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 6 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
7 New BSF4ooRexx 4.1 Support for Startup Options, RexxConfiguration, 4 Configuration methods available in RexxConfiguration Rexx option DIRECT_ENVIRONMENTS Defined command handlers can be replaced at runtime! void addcommandhandler(string name, RexxCommandHandler commandhandler) throws BSFException RexxCommandHandler getcommandhandler(string name) RexxCommandHandler setcommandhandler(string name, RexxCommandHandler commandhandler) throws BSFException Object[] getcommandhandlers() Object[] contains a String and a RexxCommandHandler array object Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 7 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
8 New BSF4ooRexx 4.1 Support for Startup Options, RexxConfiguration, 5 Configuration methods available in RexxConfiguration Rexx option INITIAL_ADDRESS_ENVIRONMENT void setinitialaddressenvironment(string name) throws BSFException String getinitialaddressenvironment() Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 8 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
9 Rexx Exits and Rexx (Sub-)Command Handlers, 1 "Callbacks" from the Rexx interpreter Rexx (sub-)command handler Invoked by the Rexx interpreter whenever a command has to be carried out A Java implemented Rexx command handler Receives the ADDRESS name Receives the command to carry out and May return any value - A return value can be fetched by the Rexx program by referring to the Rexx variable "RC" (return code) upon return from the command handler Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 9 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
10 Rexx Exits and Rexx (Sub-)Command Handlers, 2 "Callbacks" from the Rexx interpreter Rexx exits Invoked before certain "important" actions are carried out by the Rexx interpreter, e.g. Searching an external function About to write a string to stdout... A Rexx exit handler can choose to Handle the exit itself (RexxExit.RXEXIT_HANDLED) Let Rexx handle the exit (RexxExit.RXEXIT_NOT_HANDLED) Raise an error (RexxExit.RXEXIT_RAISE_ERROR) Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 10 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
11 org.rexxla.bsf.engines.rexx.rexxhandler A Utility Class for Java Rexx Handlers Java abstract class org.rexxla.bsf.engines.rexx.rexxhandler Must only be used in the same thread that invokes Java Rexx exit and Rexx command handlers! Defines and implements static methods Makes some of the oorexx C++ APIs available to the Java Rexx handlers Fetch and set Rexx variables Set thread and halt conditions Raise Rexx conditions and Rexx exceptions Get access to the Rexx.local, global.environment and.nil objects Must supply the unaltered (opaque) argument "slot" that gets passed to Java Rexx exit and Rexx command handlers as the first argument Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 11 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
12 Writing a RexxCommandHandler Java interface org.rexxla.bsf.engines.rexx.rexxcommandhandler Defines a single method Object handlecommand(object slot, String address, String command) "slot" Opaque value for using the static RexxHandler methods "address" Name of the addressed environment "command" The command to carry out Return value Any value, can be retrieved in Rexx via the variable named "RC" (return code) Returning a Java null will be mapped to the return code number "0" Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 12 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
13 Writing a RexxCommandHandler An Example Command handler name for the Rexx ADDRESS keyword statement: "TEST1" Commands "Hi", should return the string "Hi, but who are you?" "one plus two", should return the number "3" "please panic a little bit", should raise a Rexx exception Any other command should return the string "undefined command # xyz: [command]" where "xyz" represents the current value of an appropriate counter where "command" shows the undefined command Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 13 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
14 Writing a RexxCommandHandler The Java Rexx Command Handler, 1 import org.apache.bsf.*; import org.rexxla.bsf.engines.rexx.*; public class SampleCommandHandler implements RexxCommandHandler { public static void main (String args[]) throws BSFException { BSFManager mgr =new BSFManager(); // create an instance of BSFManager RexxEngine rexxengine=(rexxengine) mgr.loadscriptingengine("rexx"); // load the Rexx engine // Configure the RexxEngine RexxConfiguration rexxconf=rexxengine.getrexxconfiguration(); // add command handler rexxconf.addcommandhandler("test1", new SampleCommandHandler()); System.err.println("edited rexxconf=["+rexxconf+"]\n"); // Rexx code to run String rexxcode= "call 'testsamplecommandhandler.rex' "; // invoke the interpreter and run the Rexx program rexxengine.apply ("SampleCommandHandler.rex", 0, 0, rexxcode, null, null); rexxengine.terminate(); // terminate Rexx interpreter instance }... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 14 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
15 Writing a RexxCommandHandler The Java Rexx Command Handler, 2... continued... } int counter=0; // count # of undefined commands public Object handlecommand(object slot, String address, String command) { System.err.println("address=["+address+"], command=["+command+"]"); if (command.comparetoignorecase("hi")==0) {return "Hi, who are you?";} else if (command.comparetoignorecase("one plus two")==0) {return "3";} else if (command.comparetoignorecase("please panic a little bit")==0) { RexxHandler.raiseException1(slot, 35900, this+": You asked for this exception!"); return null; } // undefined command counter++; return "Undefined command # "+counter+": ["+command+"]"; } Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 15 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
16 Writing a RexxCommandHandler The NetRexx Rexx Command Handler, 1 class nrxsamplecommandhandler public implements org.rexxla.bsf.engines.rexx.rexxcommandhandler properties private counter=0 -- count # of undefined commands method main(s=string[]) static mgr = org.apache.bsf.bsfmanager() -- create an instance of BSFManager rexxengine = org.rexxla.bsf.engines.rexx.rexxengine mgr.loadscriptingengine("rexx") -- Configure the RexxEngine rexxconf=rexxengine.getrexxconfiguration() -- add command handler rexxconf.addcommandhandler("test1", nrxsamplecommandhandler()) say "nrxsamplecommandhandler.nrx, edited rexxonf=["rexxconf"]\n" -- Rexx code to run (quote filename for Unix filesystems) rexxcode= "call 'testsamplecommandhandler.rex' " -- invoke the interpreter and run the Rexx program rexxengine.apply("nrxsamplecommandhandler.rex", 0, 0, rexxcode, null, null) rexxengine.terminate() -- terminate Rexx engine (Rexx interpreter instance)... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 16 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
17 Writing a RexxCommandHandler The NetRexx Rexx Command Handler, 2... continued... method handlecommand(slot=object, address=string, command=string) returns Object say "address=["address"], command=["command"]" if command="hi" then return "Hi, who are you?" else if command="one plus two" then return String("3") else if command="please panic a little bit" then do org.rexxla.bsf.engines.rexx.rexxhandler.raiseexception1(slot, 35900, this": You asked for this exception!") return null end -- undefined command counter=counter+1 return "Undefined command #" counter": ["command"]" Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 17 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
18 Writing a RexxCommandHandler The Rexx Program address test1 "hi" say "rc="pp2(rc) say address test1 -- change address permanently one plus two say "rc="pp2(rc) say call testexception "nothing to do?" say "rc="pp2(rc) say ::requires "rgf_util2.rex" -- get public routines pp2(), ppcondition2() ::routine testexception -- send the command that raises an exception signal on any address test1 "please panic a little bit" return any: say ppcondition2(condition('object')) say return Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 18 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
19 Writing a RexxCommandHandler The Rexx Program's Output E:\commandHandler>java SampleCommandHandler edited rexxconf=[org.rexxla.bsf.engines.rexx.rexxconfiguration[initialaddressenvironment=[null], externalcallpath=[null],externalcallextensions=[.rxj,.rxo,.rxjo,.jrexx],loadrequiredlibrary={}, exithandlers={},commandhandlers={test1=samplecommandhandler@4741d6}]] address=[test1], command=[hi] rc=[hi, who are you?] address=[test1], command=[one PLUS TWO] rc=[3] address=[test1], command=[please panic a little bit] [ADDITIONAL] =[an Array (1 items) id#_ ] [SampleCommandHandler@4741d6: You asked for this exception!] [CODE] =[35.900] [CONDITION] =[SYNTAX] [DESCRIPTION]=[] [ERRORTEXT] =[Invalid expression] [INSTRUCTION]=[SIGNAL] [MESSAGE] =[SampleCommandHandler@4741d6: You asked for this exception!] [PACKAGE] =[a Package id#_ ] [POSITION] =[20] [PROGRAM] =[E:\commandHandler\testSampleCommandHandler.rex] [PROPAGATED] =[1] [RC] =[35] [TRACEBACK] =[a List (0 items) id#_ ] address=[test1], command=[nothing to do?] rc=[undefined command # 1: [nothing to do?]] Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 19 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
20 Writing a RexxCommandHandler Teaser: The Rexx Rexx Command Handler, 1 -- prepare another Rexx interpreter instance besides the current one for this Rexx program rexxengine=.bsf~new("org.apache.bsf.bsfmanager")~loadscriptingengine("rexx") rexxconf=rexxengine~getrexxconfiguration proxy=bsfcreaterexxproxy(.samplecommandhandler~new,,"org.rexxla.bsf.engines.rexx.rexxcommandhandler") rexxconf~addcommandhandler("test1", proxy) say "rexsamplecommandhandler.rxj, edited rexxconf="pp(rexxconf~tostring) say -- invoke the interpreter and run the Rexx program rexxcode= "call 'testsamplecommandhandler.rex' " rexxengine~apply("from_rexsamplecommandhandler.rxj", 0, 0, rexxcode,.nil,.nil) rexxengine~terminate -- terminate Rexx engine (Rexx interpreter instance) ::requires BSF.CLS -- get Java support... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 20 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
21 Writing a RexxCommandHandler Teaser: The Rexx Rexx Command Handler, 2... continued... ::class SampleCommandHandler -- Rexx class implementing the "handlecommand" interface ::method init -- needed to define the "counter" attribute and set it to "0" expose counter counter=0 ::method handlecommand -- Rexx command handler implemented in Rexx! expose counter use arg slot, address, command say "address=["address"], command=["command"]" if command~caselessequals("hi") then return "Hi, who are you?" else if command~caselessequals("one plus two") then return 3 else if command~caselessequals("please panic a little bit") then do raise syntax array (self": You asked for this exception!") end -- undefined command counter=counter+1 return "Undefined command #" counter": ["command"]" Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 21 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
22 Writing a RexxExitHandler Java interface org.rexxla.bsf.engines.rexx.rexxexithandler Defines a single method int handleexit(object slot, int exitnumber, int subfunction, Object[] parmblock) "slot" Opaque value for using the static RexxHandler methods "exitnumber" The exit number, cf. the Rexx documentation in "rexxpg.pdf", " Context Exit Definitions" "subfunction" The exit's subfunction number, cf. the Rexx documentation in "rexxpg.pdf" "parmblock" A Java array representing the C "parmblock" structure, depends on the exit and subfunction Return value 0 (RXEXIT_HANDLED), 1 (RXEXIT_NOT_HANDLED), -1 (RXEXIT_RAISE_ERROR) Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 22 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
23 Writing a RexxExitHandler An Example Exit number 14 (RXVALUE) Invoked every time the VALUE()-BIF gets invoked with an unknown selector value Handles only invocations, if selector="rgf" "parmblock" array (cf. JavaDocs for full documentation) First entry: selector (a string) Second entry: variable name (a string) Third entry: value Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 23 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
24 Writing a RexxExitHandler The Java Rexx Exit Handler, 1 import org.apache.bsf.*; import org.rexxla.bsf.engines.rexx.*; public class SampleExitHandler implements RexxExitHandler { public static void main (String args[]) throws BSFException { BSFManager mgr =new BSFManager(); // create an instance of BSFManager RexxEngine rexxengine=(rexxengine) mgr.loadscriptingengine("rexx"); // load the Rexx engine // Rexx code to run String rexxcode= "call 'testsampleexithandler.rex' " ; // Configure the RexxEngine RexxConfiguration rexxconf=rexxengine.getrexxconfiguration(); System.err.println("default rexxconf=["+rexxconf+"]\n"); // add system exits rexxconf.addexithandler(rexxexithandler.rxvalue, new SampleExitHandler() ); System.err.println("edited rexxconf=["+rexxconf+"]\n"); } // invoke the interpreter and run the Rexx program rexxengine.apply ("SampleExitHandler.rex", 0, 0, rexxcode, null, null); rexxengine.terminate(); // terminate Rexx engine instance... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 24 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
25 Writing a RexxExitHandler The Java Rexx Exit Handler, 2... continued... // implementation of a RXVALUE exit handler, Java arrays are 0-based public int handleexit(object slot, int exitnumber, int subfunction, Object[] parmblock) { System.err.println("(Java side) -> selector=["+parmblock[0]+"], varname=["+parmblock[1]+"]"+ ", value=["+parmblock[2]+"]"); } } String selector=(string) parmblock[0]; if (selector.comparetoignorecase("rgf")==0) // o.k., addressed to us, handle it { if (parmblock[2]==null) // if value is null, give it some value { parmblock[2]="value for variable name ["+parmblock[1]+"] by a Java Rexx exit handler"; } return RexxExitHandler.RXEXIT_HANDLED; } return RexxExitHandler.RXEXIT_NOT_HANDLED; Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 25 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
26 Writing a RexxExitHandler The NetRexx Rexx Exit Handler, 1 import org.rexxla.bsf.engines.rexx.rexxexithandler class nrxsampleexithandler public implements RexxExitHandler method main(s=string[]) static mgr = org.apache.bsf.bsfmanager() -- create an instance of BSFManager rexxengine = org.rexxla.bsf.engines.rexx.rexxengine mgr.loadscriptingengine("rexx") -- Configure the RexxEngine rexxconf=rexxengine.getrexxconfiguration() -- add exit handler rexxconf.addexithandler(rexxexithandler.rxvalue, nrxsampleexithandler() ); say "nrxsampleexithandler.nrx, edited rexxonf=["rexxconf"]\n" -- Rexx code to run (quote filename for Unix filesystems) rexxcode= "call 'testsampleexithandler.rex' " -- invoke the interpreter and run the Rexx program rexxengine.apply("nrxsampleexithandler.rex", 0, 0, rexxcode, null, null) rexxengine.terminate() -- terminate Rexx engine (Rexx interpreter instance)... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 26 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
27 Writing a RexxExitHandler The NetRexx Rexx Exit Handler, 2... continued... // implementation of a RXVALUE exit handler, NetRexx (Java) arrays are 0-based method handleexit(slot=object, exitnumber=int, subfunction=int, parmblock=object[]) returns int if parmblock[2]=null then say "(NetRexx side) -> selector=["parmblock[0]"], varname=["parmblock[1]"]" else say "(NetRexx side) -> selector=["parmblock[0]"], varname=["parmblock[1]"], value=["parmblock[2]"]" selector=string parmblock[0] if selector="rgf" then -- o.k., addressed to us, handle it do if (parmblock[2]==null) then -- if value is null, give it some value do parmblock[2]="value for variable name ["parmblock[1]"] by a NetRexx Rexx exit handler" end return RexxExitHandler.RXEXIT_HANDLED end return RexxExitHandler.RXEXIT_NOT_HANDLED Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 27 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
28 Writing a RexxExitHandler The Rexx Program say "(Rexx side) value('abc',, 'RGF') say say "(Rexx side) value('def',, 'rgf') say ="pp(value('abc',,'rgf')) ="pp(value('def',,'rgf')) say "(Rexx side) value('ghi', 'na,sowas!', 'RGF')="pp(value('ghi', 'na,sowas!', 'RGF')) ::requires "BSF.CLS" -- get access to public routine pp() Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 28 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
29 Writing a RexxExitHandler The Rexx Program's Output E:\exitHandler>java SampleExitHandler default rexxconf=[org.rexxla.bsf.engines.rexx.rexxconfiguration[initialaddressenvironment=[null], externalcallpath=[null],externalcallextensions=[.rxj,.rxo,.rxjo,.jrexx],loadrequiredlibrary={}, exithandlers={},commandhandlers={}]] edited rexxconf=[org.rexxla.bsf.engines.rexx.rexxconfiguration[initialaddressenvironment=[null], externalcallpath=[null],externalcallextensions=[.rxj,.rxo,.rxjo,.jrexx],loadrequiredlibrary={}, exithandlers={rxvalue/14/sampleexithandler@4741d6},commandhandlers={}]] (Java side) -> selector=[rgf], varname=[abc], value=[null] (Rexx side) value('abc',,'rgf') =[value for variable name [abc] by a Java Rexx exit handler] (Java side) -> selector=[rgf], varname=[def], value=[null] (Rexx side) value('def',,'rgf') =[value for variable name [def] by a Java Rexx exit handler] (Java side) -> selector=[rgf], varname=[ghi], value=[na,sowas!] (Rexx side) value('ghi','na,sowas!','rgf')=[na,sowas!] Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 29 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
30 Writing a RexxCommandHandler Teaser: The Rexx Rexx Exit Handler, 1 -- prepare another Rexx interpreter instance besides the current one for this Rexx program clzname="org.rexxla.bsf.engines.rexx.rexxexithandler" clz=bsf.loadclass(clzname).local~rxexit_handled =clz~rxexit_handled.local~rxexit_not_handled=clz~rxexit_not_handled rexxengine=.bsf~new("org.apache.bsf.bsfmanager")~loadscriptingengine("rexx") rexxconf=rexxengine~getrexxconfiguration proxy=bsfcreaterexxproxy(.sampleexithandler~new,,clzname) rexxconf~addexithandler(clz~rxvalue, proxy) say "rexsampleexithandler.rxj, edited rexxconf="pp(rexxconf~tostring) say -- invoke the interpreter and run the Rexx program rexxcode= "call 'testsampleexithandler.rex' " rexxengine~apply("from_rexsampleexithandler.rxj", 0, 0, rexxcode,.nil,.nil) rexxengine~terminate -- terminate Rexx engine (Rexx interpreter instance) ::requires BSF.CLS -- get Java support... continued... Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 30 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
31 Writing a RexxCommandHandler Teaser: The Rexx Rexx Exit Handler, 2... continued... ::class SampleExitHandler -- Rexx class implementing the "handleexit" interface // implementation of a RXVALUE exit handler, Java array camouflaged as a Rexx array, hence 1-based! ::method handleexit use arg slot, exitnumber, subfunction, parmblock say "(RexxExitHandler side) -> selector=["parmblock[1]"], varname=["parmblock[2]"], value=["parmblock[3]"]" if parmblock[1]~caselessequals("rgf") then -- o.k., addressed to us, handle it do if (parmblock[3]=.nil) then -- if value is null, give it some value parmblock[3]="value for variable name ["parmblock[2]"] by a Java Rexx exit handler" return.rxexit_handled end return.rxexit_not_handled Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 31 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
32 Roundup New BSF4ooRexx 4.1 Adds the ability for Java/NetRexx programs to Define (sub-)command and exit handlers for a Rexx interpreter instance Configuration from Java/NetRexx is very easy using the RexxConfiguration class Implementing Java or NetRexx or Rexx (!) (sub-)command handlers is very easy Implementing Java or NetRexx or Rexx (!) exit handlers is very easy Allows any Java/NetRexx application to easily adopt Rexx as its scripting language and exploit every facet of it for its purposes! Hier The 2012 Vortrags-/Vorlesungstitel International Rexx Symposium, im Master eintragen RTP, North Carolina 32 Hier Name des Vortragenden RonyG. im Master eintragen Flatscher
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
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
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
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
dbusoorexx Bringing the Power of D-Bus to Your Fingertips
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
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
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
Overview of Web Services API
1 CHAPTER The Cisco IP Interoperability and Collaboration System (IPICS) 4.5(x) application programming interface (API) provides a web services-based API that enables the management and control of various
Introduction to Object-Oriented Programming
Introduction to Object-Oriented Programming Programs and Methods Christopher Simpkins [email protected] CS 1331 (Georgia Tech) Programs and Methods 1 / 8 The Anatomy of a Java Program It is customary
Capabilities of a Java Test Execution Framework by Erick Griffin
Capabilities of a Java Test Execution Framework by Erick Griffin Here we discuss key properties and capabilities of a Java Test Execution Framework for writing and executing discrete Java tests for testing
INTRODUCTION TO OBJECTIVE-C CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 12 09/29/2011
INTRODUCTION TO OBJECTIVE-C CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 12 09/29/2011 1 Goals of the Lecture Present an introduction to Objective-C 2.0 Coverage of the language will be INCOMPLETE
1 Posix API vs Windows API
1 Posix API vs Windows API 1.1 File I/O Using the Posix API, to open a file, you use open(filename, flags, more optional flags). If the O CREAT flag is passed, the file will be created if it doesnt exist.
Unix Scripts and Job Scheduling
Unix Scripts and Job Scheduling Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh [email protected] http://www.sis.pitt.edu/~spring Overview Shell Scripts
IBM SDK, Java Technology Edition Version 1. IBM JVM messages IBM
IBM SDK, Java Technology Edition Version 1 IBM JVM messages IBM IBM SDK, Java Technology Edition Version 1 IBM JVM messages IBM Note Before you use this information and the product it supports, read the
SQLITE C/C++ TUTORIAL
http://www.tutorialspoint.com/sqlite/sqlite_c_cpp.htm SQLITE C/C++ TUTORIAL Copyright tutorialspoint.com Installation Before we start using SQLite in our C/C++ programs, we need to make sure that we have
Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer 2008. 1
Event Driven Simulation in NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer 2008. 1 Outline Recap: Discrete Event v.s. Time Driven Events and Handlers The Scheduler
PostgreSQL Functions By Example
Postgre [email protected] credativ Group January 20, 2012 What are Functions? Introduction Uses Varieties Languages Full fledged SQL objects Many other database objects are implemented with them
Konzepte objektorientierter Programmierung
Konzepte objektorientierter Programmierung Prof. Dr. Peter Müller Werner Dietl Software Component Technology Exercises 3: Some More OO Languages Wintersemester 04/05 Agenda for Today 2 Homework Finish
Channel Access Client Programming. Andrew Johnson Computer Scientist, AES-SSG
Channel Access Client Programming Andrew Johnson Computer Scientist, AES-SSG Channel Access The main programming interface for writing Channel Access clients is the library that comes with EPICS base Written
MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.
Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) The JDK command to compile a class in the file Test.java is A) java Test.java B) java
Using the VMRC Plug-In: Startup, Invoking Methods, and Shutdown on page 4
Technical Note Using the VMRC API vcloud Director 1.5 With VMware vcloud Director, you can give users the ability to access virtual machine console functions from your web-based user interface. vcloud
I. INTRODUCTION. International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 2, Mar-Apr 2015
RESEARCH ARTICLE An Exception Monitoring Using Java Jyoti Kumari, Sanjula Singh, Ankur Saxena Amity University Sector 125 Noida Uttar Pradesh India OPEN ACCESS ABSTRACT Many programmers do not check for
JavaScript. JavaScript: fundamentals, concepts, object model. Document Object Model. The Web Page. The window object (1/2) The document object
JavaScript: fundamentals, concepts, object model Prof. Ing. Andrea Omicini II Facoltà di Ingegneria, Cesena Alma Mater Studiorum, Università di Bologna [email protected] JavaScript A scripting language:
How To Use Postgresql With Foreign Data In A Foreign Server In A Multi Threaded Database (Postgres)
PostgreSQL at the centre of your dataverse! PGBR 2011! Presented by Dave Page! 3 rd November 2011! EnterpriseDB, Postgres Plus and Dynatune are trademarks of EnterpriseDB Corporation. Other names may be
CSE 308. Coding Conventions. Reference
CSE 308 Coding Conventions Reference Java Coding Conventions googlestyleguide.googlecode.com/svn/trunk/javaguide.html Java Naming Conventions www.ibm.com/developerworks/library/ws-tipnamingconv.html 2
bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5
bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 2008 Adobe Systems Incorporated. All rights reserved. Adobe Flash Media Rights Management Server 1.5
Division of Informatics, University of Edinburgh
CS1Bh Lecture Note 20 Client/server computing A modern computing environment consists of not just one computer, but several. When designing such an arrangement of computers it might at first seem that
Scheduling in SAS 9.3
Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3
AUTOMATING OPENOFFICE.ORG WITH OOREXX: OOREXX NUTSHELL EXAMPLES FOR WRITE AND CALC
AUTOMATING OPENOFFICE.ORG WITH OOREXX: OOREXX NUTSHELL EXAMPLES FOR WRITE AND CALC Rony G. Flatscher Wirtschaftsuniversität Wien (WU), Austria The 2005 International Rexx Symposium, Los Angeles, California,
Building and Using Web Services With JDeveloper 11g
Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the
Moving from CS 61A Scheme to CS 61B Java
Moving from CS 61A Scheme to CS 61B Java Introduction Java is an object-oriented language. This document describes some of the differences between object-oriented programming in Scheme (which we hope you
COSC 1020 3.0 Introduction to Computer Science I Section A, Summer 2005. Question Out of Mark A Total 16. B-1 7 B-2 4 B-3 4 B-4 4 B Total 19
Term Test #2 COSC 1020 3.0 Introduction to Computer Science I Section A, Summer 2005 Family Name: Given Name(s): Student Number: Question Out of Mark A Total 16 B-1 7 B-2 4 B-3 4 B-4 4 B Total 19 C-1 4
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
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
Computer Systems II. Unix system calls. fork( ) wait( ) exit( ) How To Create New Processes? Creating and Executing Processes
Computer Systems II Creating and Executing Processes 1 Unix system calls fork( ) wait( ) exit( ) 2 How To Create New Processes? Underlying mechanism - A process runs fork to create a child process - Parent
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
1001ICT Introduction To Programming Lecture Notes
1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 3 A First MaSH Program In this section we will describe a very
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]
Chapter 2. println Versus print. Formatting Output withprintf. System.out.println for console output. console output. Console Input and Output
Chapter 2 Console Input and Output System.out.println for console output System.out is an object that is part of the Java language println is a method invoked dby the System.out object that can be used
Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff
D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led
Creating a Java application using Perfect Developer and the Java Develo...
1 of 10 15/02/2010 17:41 Creating a Java application using Perfect Developer and the Java Development Kit Introduction Perfect Developer has the facility to execute pre- and post-build steps whenever the
Scheduling in SAS 9.4 Second Edition
Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute
Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2
Unix Shell Scripts Norman Matloff July 30, 2008 Contents 1 Introduction 1 2 Invoking Shell Scripts 2 2.1 Direct Interpretation....................................... 2 2.2 Indirect Interpretation......................................
Crash Course in Java
Crash Course in Java Based on notes from D. Hollinger Based in part on notes from J.J. Johns also: Java in a Nutshell Java Network Programming and Distributed Computing Netprog 2002 Java Intro 1 What is
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2015 The third
ReleaseNotes FormsDataPoller
ReleaseNotes FormsDataPoller Autor: Letzte Änderung: Letzter Änderer: System Administrator 12.11.2015 17:07 Thomas Strauß ReleaseNotes FormsDataPoller Seite 2 von 17 Inhalt 1 What's New 4 1.1 Version 2.1.0
Java Programming Fundamentals
Lecture 1 Part I Java Programming Fundamentals Topics in Quantitative Finance: Numerical Solutions of Partial Differential Equations Instructor: Iraj Kani Introduction to Java We start by making a few
First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science
First Java Programs V. Paúl Pauca Department of Computer Science Wake Forest University CSC 111D Fall, 2015 Hello World revisited / 8/23/15 The f i r s t o b l i g a t o r y Java program @author Paul Pauca
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
Libmonitor: A Tool for First-Party Monitoring
Libmonitor: A Tool for First-Party Monitoring Mark W. Krentel Dept. of Computer Science Rice University 6100 Main St., Houston, TX 77005 [email protected] ABSTRACT Libmonitor is a library that provides
Creating a Simple, Multithreaded Chat System with Java
Creating a Simple, Multithreaded Chat System with Java Introduction by George Crawford III In this edition of Objective Viewpoint, you will learn how to develop a simple chat system. The program will demonstrate
Linux Syslog Messages in IBM Director
Ever want those pesky little Linux syslog messages (/var/log/messages) to forward to IBM Director? Well, it s not built in, but it s pretty easy to setup. You can forward syslog messages from an IBM Director
Amazon Glacier. Developer Guide API Version 2012-06-01
Amazon Glacier Developer Guide Amazon Glacier: Developer Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in
White Paper BMC Remedy Action Request System Security
White Paper BMC Remedy Action Request System Security June 2008 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website, you can obtain information
Device Management API for Windows* and Linux* Operating Systems
Device Management API for Windows* and Linux* Operating Systems Library Reference September 2004 05-2222-002 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS
2! Multimedia Programming with! Python and SDL
2 Multimedia Programming with Python and SDL 2.1 Introduction to Python 2.2 SDL/Pygame: Multimedia/Game Frameworks for Python Literature: G. van Rossum and F. L. Drake, Jr., An Introduction to Python -
Tutorial: Getting Started
9 Tutorial: Getting Started INFRASTRUCTURE A MAKEFILE PLAIN HELLO WORLD APERIODIC HELLO WORLD PERIODIC HELLO WORLD WATCH THOSE REAL-TIME PRIORITIES THEY ARE SERIOUS SUMMARY Getting started with a new platform
Demo: Controlling.NET Windows Forms from a Java Application. Version 7.3
Demo: Controlling.NET Windows Forms from a Java Application Version 7.3 JNBridge, LLC www.jnbridge.com COPYRIGHT 2002 2015 JNBridge, LLC. All rights reserved. JNBridge is a registered trademark and JNBridgePro
Working With Derby. Version 10.2 Derby Document build: December 11, 2006, 7:06:09 AM (PST)
Working With Derby Version 10.2 Derby Document build: December 11, 2006, 7:06:09 AM (PST) Contents Copyright...3 Introduction and prerequisites...4 Activity overview... 5 Activity 1: Run SQL using the
Lecture 5: Java Fundamentals III
Lecture 5: Java Fundamentals III School of Science and Technology The University of New England Trimester 2 2015 Lecture 5: Java Fundamentals III - Operators Reading: Finish reading Chapter 2 of the 2nd
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
Hadoop Streaming. Table of contents
Table of contents 1 Hadoop Streaming...3 2 How Streaming Works... 3 3 Streaming Command Options...4 3.1 Specifying a Java Class as the Mapper/Reducer... 5 3.2 Packaging Files With Job Submissions... 5
StreamServe Persuasion SP5 Microsoft SQL Server
StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A StreamServe Persuasion SP5 Microsoft SQL Server Database Guidelines Rev A 2001-2011 STREAMSERVE, INC. ALL RIGHTS RESERVED United
How to Program an Android Application to Access and Manage the Wi-Fi Capabilities of a Smartphone
ECE 480 DESIGN TEAM 2 How to Program an Android Application to Access and Manage the Wi-Fi Capabilities of a Smartphone Application Note Matt Gottshall 4/1/2011 This application note is designed to teach
CEBO Programming Reference
CEBO Programming Reference This document describes.net, C++, Java, Python, LabView and Profilab interfaces for the Cebo-MSR API (Cebo-LC and Cebo-Stick). It contains general information, examples and library
Intel Retail Client Manager Audience Analytics
Intel Retail Client Manager Audience Analytics By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or facilitate the use of
Manual. Programmer's Guide for Java API
2013-02-01 1 (15) Programmer's Guide for Java API Description This document describes how to develop Content Gateway services with Java API. TS1209243890 1.0 Company information TeliaSonera Finland Oyj
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2014 Jill Seaman
Introduction to Logging. Application Logging
Introduction to Logging David Beazley Copyright (C) 2008 http://www.dabeaz.com Note: This is a supplemental subject component to Dave's Python training classes. Details at: http://www.dabeaz.com/python.html
Introduction to HP ArcSight ESM Web Services APIs
Introduction to HP ArcSight ESM Web Services APIs Shivdev Kalambi Software Development Manager (Correlation Team) #HPProtect Agenda Overview Some applications of APIs ESM Web Services APIs Login Service
Developer Guide. Android Printing Framework. ISB Vietnam Co., Ltd. (IVC) Page i
Android Printing Framework ISB Vietnam Co., Ltd. (IVC) Page i Table of Content 1 Introduction... 1 2 Terms and definitions... 1 3 Developer guide... 1 3.1 Overview... 1 3.2 Configure development environment...
MASTERTAG DEVELOPER GUIDE
MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...
Using the Command Line Interface (CLI)
4 Using the Command Line Interface (CLI) Contents Overview...................................................... 4-2 Accessing the CLI............................................... 4-2...................................................
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...
Virtuozzo Virtualization SDK
Virtuozzo Virtualization SDK Programmer's Guide February 18, 2016 Copyright 1999-2016 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200
LICENSE4J FLOATING LICENSE SERVER USER GUIDE
LICENSE4J FLOATING LICENSE SERVER USER GUIDE VERSION 4.5.5 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Floating License Usage... 2 Installation... 4 Windows Installation... 4 Linux
Oracle Database: SQL and PL/SQL Fundamentals
Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along
Developing a Web Server Platform with SAPI Support for AJAX RPC using JSON
Revista Informatica Economică, nr. 4 (44)/2007 45 Developing a Web Server Platform with SAPI Support for AJAX RPC using JSON Iulian ILIE-NEMEDI, Bucharest, Romania, [email protected] Writing a custom web
Install Java Development Kit (JDK) 1.8 http://www.oracle.com/technetwork/java/javase/downloads/index.html
CS 259: Data Structures with Java Hello World with the IntelliJ IDE Instructor: Joel Castellanos e-mail: joel.unm.edu Web: http://cs.unm.edu/~joel/ Office: Farris Engineering Center 319 8/19/2015 Install
Network Detective Client Connector
Network Detective Copyright 2014 RapidFire Tools, Inc. All Rights Reserved. v20140801 Overview The Network Detective data collectors can be run via command line so that you can run the scans on a scheduled
Automatic Logging of Operating System Effects to Guide Application-Level Architecture Simulation
Automatic Logging of Operating System Effects to Guide Application-Level Architecture Simulation Satish Narayanasamy, Cristiano Pereira, Harish Patil, Robert Cohn, and Brad Calder Computer Science and
The HTTP Plug-in. Table of contents
Table of contents 1 What's it for?... 2 2 Controlling the HTTPPlugin... 2 2.1 Levels of Control... 2 2.2 Importing the HTTPPluginControl...3 2.3 Setting HTTPClient Authorization Module... 3 2.4 Setting
Vim, Emacs, and JUnit Testing. Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor
Vim, Emacs, and JUnit Testing Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor Overview Vim and Emacs are the two code editors available within the Dijkstra environment. While both
D06 PROGRAMMING with JAVA. Ch3 Implementing Classes
Cicles Formatius de Grau Superior Desenvolupament d Aplicacions Informàtiques D06 PROGRAMMING with JAVA Ch3 Implementing Classes PowerPoint presentation, created by Angel A. Juan - ajuanp(@)gmail.com,
JAVA - METHODS. Method definition consists of a method header and a method body. The same is shown below:
http://www.tutorialspoint.com/java/java_methods.htm JAVA - METHODS Copyright tutorialspoint.com A Java method is a collection of statements that are grouped together to perform an operation. When you call
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
Java Web Services SDK
Java Web Services SDK Version 1.5.1 September 2005 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed users of the product.
Exceptions in MIPS. know the exception mechanism in MIPS be able to write a simple exception handler for a MIPS machine
7 Objectives After completing this lab you will: know the exception mechanism in MIPS be able to write a simple exception handler for a MIPS machine Introduction Branches and jumps provide ways to change
Introduction to Java
Introduction to Java The HelloWorld program Primitive data types Assignment and arithmetic operations User input Conditional statements Looping Arrays CSA0011 Matthew Xuereb 2008 1 Java Overview A high
To Java SE 8, and Beyond (Plan B)
11-12-13 To Java SE 8, and Beyond (Plan B) Francisco Morero Peyrona EMEA Java Community Leader 8 9...2012 2020? Priorities for the Java Platforms Grow Developer Base Grow Adoption
OpenCL Static C++ Kernel Language Extension
OpenCL Static C++ Kernel Language Extension Document Revision: 04 Advanced Micro Devices Authors: Ofer Rosenberg, Benedict R. Gaster, Bixia Zheng, Irina Lipov December 15, 2011 Contents 1 Overview... 3
How To Understand How A Process Works In Unix (Shell) (Shell Shell) (Program) (Unix) (For A Non-Program) And (Shell).Orgode) (Powerpoint) (Permanent) (Processes
Content Introduction and History File I/O The File System Shell Programming Standard Unix Files and Configuration Processes Programs are instruction sets stored on a permanent medium (e.g. harddisc). Processes
HTTP and HTTPS Statistics Services
CHAPTER 9 This chapter describes the HTTP and HTTPS Statistics service, which returns HTTP and HTTPS connection information and statistics for individual WAEs, device groups, and for the WAAS network,
Freescale MQX USB Device User Guide
Freescale MQX USB Device User Guide MQXUSBDEVUG Rev. 4 02/2014 How to Reach Us: Home Page: freescale.com Web Support: freescale.com/support Information in this document is provided solely to enable system
Custom Encryption in Siebel & Siebel Web Service Security Test Guide 1.0
Custom Encryption in Siebel & Siebel Web Security Test Guide 1.0 Muralidhar Reddy Introduction Siebel (7.5 onwards and upto 8.1) natively supports 2 Types of Inbound web Security 1. WS Security UserName
HP-UX Essentials and Shell Programming Course Summary
Contact Us: (616) 875-4060 HP-UX Essentials and Shell Programming Course Summary Length: 5 Days Prerequisite: Basic computer skills Recommendation Statement: Student should be able to use a computer monitor,
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.
