The STAX source code is part of the STAF source code that you can download. It’s in the services/stax directory. Sharon On Jan 7, 2019, at 1:01 AM, Techno.Scavenger technoscavenger@users.sourceforge.net wrote: Thanks for the reply Sharon! I would like to start on STAX, can't find the src. Can you please point me to the location? How to contribute to the project Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/staf/discussion/104046/ To unsubscribe from further...
When starting STAFProc, redirect its stdout and stderr to a file because STAFProc's output can be very helpful when investigating a problem: STAFProc >C:\temp\STAFProc.out 2>&1 Provide STAFProc's output.
Future of STAF/STAX
Don't set ProcessAuthMode to "None" on autorat2 (the system where the process will be run). Leave it set to the default setting "Disabled". This is because you're using "su" to run the process under a different user. Also, make sure you're running STAFProc as root on autorat2.
When using the PROCESS service to run a command, the process is run within the environment in hich STAFProc is running. To run a gui command like xclock on a remote system, you need to set the DISPLAY environment variable. You can use the ENV option on a PROCESS START request to set environment variables such as DISPLAY. See section "8.13.2 START" in the STAF User's Guide at http://staf.sourceforge.net/current/STAFUG.htm#HDRPROCSRV for more information on the ENV option. In regards to how to use...
You can use the STAF PROCESS service's START request to run a command on a remote system. For more information and examples of submitting a PROCESS START request, see section "8.13 Process Service" in the STAF User's Guide at http://staf.sourceforge.net/current/STAFUG.htm#HDRPROCSRV. To use the STAF Java APIs to submit a PROCESS START request, see the "STAF Java User's Guide" at http://staf.sourceforge.net/current/STAFJava.htm for a description of the APIs and examples. Note: Links to all the STAF/STAX...
I don't think there is a compatibility issue between IBM's JVM and Oracle's JVM. How much physical memory does this Windows 32-bit system have? Setting the Maximum Heap Size for the JVM to 4GB may be too large for your systems. See posts such as the following: - http://javarevisited.blogspot.com/2011/05/java-heap-space-memory-size-jvm.html - http://javarevisited.blogspot.sg/2013/04/what-is-maximum-heap-size-for-32-bit-64-JVM-Java-memory.html
STAF provides OpenSSL libraries that it needs if using the SSL interface. With STAF V3.4.25 and later, we use OpenSSL 1.0.2g when building the STAF binaries (previously we used OpenSSL 0.9.8e) and provide two OpenSSL libraries (libssl.so.1.0.0 and libcrypto.so.1.0.0) in the /usr/local/staf/lib directory. So. setting environment variable LD_LIBRARY_PATH=/usr/local/staf/lib could cause a mismatch between another OpenSSL version installed on your system (e.g. that ssh requires). Note that STAF requires...