Jolt 1.2 Developer's Guide
Table Of Contents
- Jolt for NonStop(TM) TUXEDO Developer's Guide
- Jolt for NonStop(TM) TUXEDO Developer's Guide
- About This Guide
- 1. Introducing Jolt
- 2. Installing Jolt
- 3. Configuring the Jolt System
- 4. Bulk Loading NonStopTM TUXEDO Services
- 5. Using the Jolt Repository Editor
- 6. Using the Jolt Class Library
- 7. Using JoltBeans
- 8. Using Servlet Connectivity for NonStopTM TUXEDO
- 9. Using Jolt 1.2 ASP Connectivity for NonStopTM TUXEDO
- A. NonStopTM TUXEDO Errors
- B. System Messages
- Index

}
sattr.setInt(sattr.IDLETIMEOUT, 300);
session = new JoltSession(sattr, userName, userRole,
userPassword, appPassword);
toupper = new JoltRemoteService ("TOUPPER", session);
toupper.setString("STRING", "hello world");
toupper.call(null);
outstr = toupper.getStringDef("STRING", null);
if (outstr != null)
System.out.println(outstr);
session.endSession();
System.exit(0);
} // end main
} // end ToUpper
Using the CARRAY Buffer Type
The CARRAY buffer type is a simple character array buffer type that is built into the NonStop
TM
TUXEDO system. With the CARRAY buffer
type, because the system does not interpret the data, although the data type is known, there is no way of determining how much data to transmit
during an operation. The application is always required to specify a length when passing this buffer type.
Note that X_OCTET is used identically to CARRAY.
Define ECHO in the Repository Editor
Before using a CARRAY buffer type, you must write and boot an ECHO NonStop
TM
TUXEDO service. The ECHO service takes a buffer and
passes it back to the Jolt client. You will also need to use the Jolt Repository Editor to define the ECHO service.










