ConfigurationMBean
, DescriptorBean
, javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, SettableBean
, WebLogicMBean
public interface WSReliableDeliveryPolicyMBean extends ConfigurationMBean
Reliable messaging is a framework for applications running in WebLogic Server to asynchronously and reliably invoke a Web service running in a different WebLogic Server. Reliable messaging works only between WebLogic Servers. This class encapsulates the default reliable messaging parameters for an application running in this WebLogic Server instance that both sends and receives a SOAP message reliably. These parameters include the number of times to retry sending the message, the time to wait between retries, the persistent store for the reliable message, and so on.
DEFAULT_EMPTY_BYTE_ARRAY
Modifier and Type | Method | Description |
---|---|---|
int |
getDefaultRetryCount() |
The default maximum number of times that the sender runtime
should attempt to redeliver a message that the receiver WebLogic
Server has not yet acknowledged.
|
int |
getDefaultRetryInterval() |
The default minimum number of seconds that the sender runtime
should wait between retries if the receiver does not send an
acknowledgement of receiving the message, or if the sender runtime
detects a communications error while attempting to send a
message.
|
int |
getDefaultTimeToLive() |
The default number of seconds that the receiver of the reliable
message should persist the history of the reliable message in its
store.
|
JMSServerMBean |
getJMSServer() |
The JMS server used by WebLogic Server, in its role as
a sender, to persist the reliable messages that it sends, or the
JMS server used by the receiver WebLogic Server to
persist the history of a reliable message sent by a sender.
|
void |
setDefaultRetryCount(int count) |
Sets the value of the defaultRetryCount attribute.
|
void |
setDefaultRetryInterval(int interval) |
Sets the value of the defaultRetryInterval attribute.
|
void |
setDefaultTimeToLive(int timeToLive) |
Sets the value of the defaultTimeToLive attribute.
|
void |
setJMSServer(JMSServerMBean server) |
The JMS server used by WebLogic Server, in its role as
a sender, to persist the reliable messages that it sends, or the
JMS server used by the receiver WebLogic Server to
persist the history of a reliable message sent by a sender.
|
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preDeregister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
JMSServerMBean getJMSServer()
The JMS server used by WebLogic Server, in its role as a sender, to persist the reliable messages that it sends, or the JMS server used by the receiver WebLogic Server to persist the history of a reliable message sent by a sender.
void setJMSServer(JMSServerMBean server) throws javax.management.InvalidAttributeValueException
The JMS server used by WebLogic Server, in its role as a sender, to persist the reliable messages that it sends, or the JMS server used by the receiver WebLogic Server to persist the history of a reliable message sent by a sender.
InvalidAttributeException
javax.management.InvalidAttributeValueException
int getDefaultRetryCount()
The default maximum number of times that the sender runtime should attempt to redeliver a message that the receiver WebLogic Server has not yet acknowledged.
The default maximum number of times that the sender should attempt to redeliver a message that the receiver WebLogic Web service has not yet acknowledged.
void setDefaultRetryCount(int count) throws javax.management.InvalidAttributeValueException
Sets the value of the defaultRetryCount attribute.
The default maximum number of times that the sender should attempt to redeliver a message that the receiver WebLogic Web service has not yet acknowledged.
count
- The new defaultRetryCount valuejavax.management.InvalidAttributeValueException
getDefaultRetryCount()
int getDefaultRetryInterval()
The default minimum number of seconds that the sender runtime should wait between retries if the receiver does not send an acknowledgement of receiving the message, or if the sender runtime detects a communications error while attempting to send a message.
The default minimum number of seconds that the sender should wait between retries if the receiver does not send an acknowledgement of receiving the message, or if the sender detects a communications error while attempting to send a message.
void setDefaultRetryInterval(int interval) throws javax.management.InvalidAttributeValueException
Sets the value of the defaultRetryInterval attribute.
The default minimum number of seconds that the sender should wait between retries if the receiver does not send an acknowledgement of receiving the message, or if the sender detects a communications error while attempting to send a message.
interval
- The new defaultRetryInterval valuejavax.management.InvalidAttributeValueException
getDefaultRetryInterval()
int getDefaultTimeToLive()
The default number of seconds that the receiver of the reliable message should persist the history of the reliable message in its store.
The default minimum number of seconds that the receiver of the reliably sent message should persist the message in its storage.
If the DefaultTimeToLive number of message have passed since the message was first sent, the sender should not resent a message with the same message id.
If a sender cannot send a message successfully before the DefaultTimeToLive has passed, the sender should report a delivery failure. The receiver, after recovering from a crash, will not dispatch saved messages that have expired.
void setDefaultTimeToLive(int timeToLive) throws javax.management.InvalidAttributeValueException
Sets the value of the defaultTimeToLive attribute.
The default minimum number of seconds that the receiver of the reliably sent message should persist the message in its storage.
If the DefaultTimeToLive number of message have passed since the message was first sent, the sender should not resent a message with the same message id.
If a sender cannot send a message successfully before the DefaultTimeToLive has passed, the sender should report a delivery failure. The receiver, after recovering from a crash, will not dispatch saved messages that have expired.
timeToLive
- The new defaultTimeToLive valuejavax.management.InvalidAttributeValueException
getDefaultTimeToLive()