Skip Navigation Links | |
Exit Print View | |
![]() |
Oracle Java CAPS JMS Reference Java CAPS Documentation |
Implementing JMS in Java CAPS Projects
To Implement JMS Following the Java CAPS Model
Creating and Configuring Message Destinations
Creating OTDs and Collaborations
Using the JMS OTD in Collaboration Definitions
Using JMS Messages in Collaboration Definitions
Database Configuration and Operation
Protected Concurrent Processing
Serial Processing Across a Destination Group
Message Redelivery and Redirection
Specifying Redelivery Options in the JMS IQ Manager
Specifying Redelivery Options in a JMS Client
Example of Producer Throttling and Unthrottling
Additional JMS Message Properties
requestReply(timeout, message)
requestReplyTo(message, destName)
requestReplyTo(timeout, message, destName)
send(message, deliveryMode, priority, timeToLive)
sendBytes(payload, deliveryMode, priority, timeToLive)
sendBytesTo(payload, destination)
sendBytesTo(payload, destination, deliveryMode, priority, timeToLive)
sendText(payload, deliveryMode, priority, timeToLive)
sendTextTo(payload, destination)
sendTextTo(payload, destination, deliveryMode, priority, timeToLive)
sendTo(message, destination, deliveryMode, priority, timeToLive)
retrieveBytesFromMessage(arg0)
retrieveStringFromMessage(arg0)
JMS IQ Manager Runtime Configuration
Accessing the Configuration Properties
Configuration Properties Interface
Journaling and Expiration Properties
Per-Destination Throttling Threshold
Overview of MS Control Utility Features
To Create a Backup Archive File
To Set the MS Control Utility Timeout Period
Message Destination (Queue) Examples
This topic describes the Java methods available for use with objects of the type com.stc.connectors.jms.JMS, and can be accessed from:
The JMS OTD
Input messages for the send web service operation
Output messages for the receive web service operation (new web service)
Creates an empty byte message.
None.
|
None.
Creates a byte message with the specified byte array value.
|
|
None.
Creates a map message.
None.
|
None.
Creates an empty message (no payload), which is the most efficient method for event notification.
None.
|
None.
Creates a message of type com.stc.connectors.jms.Message, which wraps around the message variable of type javax.jms.Message.
|
|
Throws JMSException, IOException.
Creates an empty stream message. Use the method setStreamMessage(arg0, arg1) to add the payload.
None.
|
None.
Creates an empty text message. Use the method setTextMessage(arg0) to add the payload.
None.
|
None.
Creates a text message that includes the specified text, producing a ready-to-deliver TextMessage object.
|
|
None.
Gets and returns the value of the JMS delivery mode.
None.
|
None.
Gets and returns the name of the queue or topic.
None.
|
None.
Input messages for the receiveWait web service operation.
Gets and returns the value of the message server URL.
None.
|
None.
Gets and returns the value of the JMS priority.
None.
|
None.
Gets and returns the specified time period, in milliseconds, following the dispatch time that a message should be retained by the message system.
None.
|
None.
Receives the next message of type com.stc.connectors.jms.Message that arrives from the destination configured in the Connectivity Map Editor during the specified timeout interval.
|
|
Throws JMSException.
Receives the next message of type com.stc.connectors.jms.Message that arrives from the specified message destination during the specified timeout interval.
|
|
Throws JMSException.
Receives the next message of type com.stc.connectors.jms.Message, if one is immediately available.
None.
|
Throws JMSException.
Receives the next message of type com.stc.connectors.jms.Message from the specified message destination if a message is immediately available.
|
|
Throws JMSException.
Sends a message of type com.stc.connectors.jms.Message to the destination configured in the Connectivity Map Editor, and waits for the reply message by using Topic/QueueRequestor.
|
|
Throws JMSException when a message is null or when the JMS provider fails to send and receive the message due to an internal error.
Sends a message of type com.stc.connectors.jms.Message to the destination configured in the Connectivity Map Editor, and receives the reply message by using Topic/QueueRequestor during the specified timeout interval.
|
|
Throws JMSException if a message is null, the JMS provider fails to send and receive the message due to an internal error, or timeout expires.
Sends a message of type com.stc.connectors.jms.Message to the explicitly named destination, and waits for the reply message by using Topic/QueueRequestor.
|
|
Throws JMSException when a message is null, destName is null, or the JMS provider fails to send and receive the message due to an internal error.
Sends a message of type com.stc.connectors.jms.Message to the explicitly named destination, and receives the reply message by using Topic/QueueRequestor.
|
|
Throws JMSException when a message is null, destName is null, when the JMS provider fails to send and receive the message due to an internal error, or timeout expires.
Sends a message of type com.stc.connectors.jms.Message to the destination configured in the Connectivity Map Editor, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type com.stc.connectors.jms.Message to the destination configured in the Connectivity Map Editor, using the values specified for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type byte[] to the destination configured in the Connectivity Map Editor, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type byte[] to the destination configured in the Connectivity Map Editor, using the specified parameters.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type byte[] to the specified destination, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type byte[] to the destination configured in the Connectivity Map Editor, using the specified parameters.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type java.lang.String to the destination configured in the Connectivity Map Editor, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type java.lang.String to the destination configured in the Connectivity Map Editor, using the specified parameters.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type java.lang.String to the specified destination, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type java.lang.String to the specified destination, using the specified parameters.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type com.stc.connectors.jms.Message to the specified destination, using the JMS session’s default settings for message priority, time to live, and delivery mode.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sends a message of type com.stc.connectors.jms.Message to the specified destination, using the specified parameters.
|
None.
Throws JMSException if a message is null or if the JMS provider fails to send the message due to an internal error.
Sets the value of the JMS delivery mode.
|
None.
None.
Specifies the queue or topic.
|
None.
None.
Input messages for the receiveWait web service operation.
Sets the value of the message server URL.
|
None.
None.
Sets the value of the JMS priority.
|
None.
None.
Sets the default time period, in milliseconds, following the dispatch time that a message should be retained by the message system.
|
None.
None.