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

JoltSessionBean. When a logon is successful and a session is established, LoggedOn is set to TRUE. After the logoff is
successful and the session is closed, the LoggedOn property is set to FALSE.
The JoltSessionBean provides methods to control transactions, including beginTransaction(), commitTransaction(), and
rollbackTransaction().
Table 7-1 shows the JoltSessionBean properties and descriptions.
Table 7-1. JoltSessionBean Properties
Property Description
AppAddress Sets the IP address (host name) and port number of the JSL or the Jolt
Relay. The format is //host:port number (e.g., myhost:7000).
AppPassword
Sets the NonStop
TM
TUXEDO application password used at logon, if
required.
IdleTimeOut Sets the IDLETIMEOUT value.
inTransaction Indicates true or false depending if a transaction has been started and not
committed or aborted.
LoggedOn
Indicates true or false if a NonStop
TM
TUXEDO session does or does not
exist.
ReceiveTimeOut Sets the RECVTIMEOUT value.
SendTimeOut Sets the SENDTIMEOUT value.
SessionTimeOut Sets the SESSIONTIMEOUT value.
UserName
Indicates the NonStop
TM
TUXEDO user name, if required.
UserPassword
Indicates the NonStop
TM
TUXEDO user password, if required.
UserRole
Indicates the NonStop
TM
TUXEDO user role, if required.
JoltServiceBean
The JoltServiceBean represents a remote NonStop
TM
TUXEDO service. The name of the service is set as a property of
the JoltServiceBean. The JoltServiceBean listens to JoltInputEvents from other beans to populate its input buffer.
JoltServiceBean offers the callService() method to invoke the service. JoltServiceBean is an event source for
JoltOutputEvents that carry information about the output of the service. After a successful callService(), listener beans
are notified via a JoltOutputEvent, which carries the reply message.
Although the primary way of changing and querying the underlying message buffer of the JoltServiceBean is via events,
the JoltServiceBean also provides methods to access the underlying message buffer directly (setInputValue(...),
getOutputValue(...)).
Table 7-2 shows the JoltServiceBean properties and descriptions.
Table 7-2. JoltServiceBean Properties
Property Description
ServiceName
The name of the NonStop
TM
TUXEDO service represented by this
JoltServiceBean.
Session The JoltSessionBean associated with the bean that allows access to the
NonStop
TM
TUXEDO client session.










