Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client Java API Programmer's Guide | Creating and Initializing Events | Envelope Fields
 
Envelope Fields
 
Read-only Envelope Fields
Many of the event envelope fields are managed for you by the webMethods Broker API methods. Some event fields can be set by your application and others contain values set by the Broker. You cannot set the envelope fields that are set by the Broker, but you can retrieve their values.
Note:
Unlike other event fields, attempting to retrieve an envelope field that has not been set will cause a BrokerFieldNotFoundException to be thrown.
Envelope Field
Event Editor Type
Description
activation
unicode_string
A unique identifier set by the event's publisher to identify a one-time execution of an integration solution.
appSeqn
int
Sequence number, set by the event's publisher. Your application defines how this field is used. The conventional way to use this field is to count upward from 1.
appLastSeqn
int
Sequence number, set by the event's publisher. Your application defines how this field is used. Generally used to identify the last event in a sequence of events.
appPassword
unicode_string
Password of user in appUserName. Used if the resource that processes the event requires authentication.
appUsername
unicode_string
Represents a user's name.
businessContext
unicode_string
Used internally to track business process context and audit context.
controlLabel
short[]
Represents the access label that a receiving client must have to receive the event.
errorsTo
unicode_string
The client ID to which the event should be forwarded if any errors are generated when this event should be sent, instead of sending to the originator of the request.
errorRequestsTo
unicode_string
The client ID to which a request event will be forwarded if any errors generated processing the request. If field is not set, any request event that generates an error will be discarded.
eventTraceInfo
unicode_string
Used internally to append the trace information to documents. This trace information provides insight about the flow of document through the different systems. Used by webMethods Insight. This field can be used by your application if webMethods Insight is not tracing the document flow.
locale
unicode_string
Locale of the publishing client expressed as a URN (Uniform Resource Name).
maxResults
int
The maximum number of reply events a requestor would like to receive. A value of 0 indicates that no reply or acknowledgment should be sent for this event.
priority
int
Message priority of values from 0-9, where 0 is the lowest priority and 9 is the highest priority (expedited processing). The default is 4.
replyTo
unicode_string
The client ID to which the replies to this event should be sent, instead of sending to the originator of the request.
signature
byte[]
A byte sequence that holds a digital signature.
signatureType
unicode_string
Describes the type of digital signature being used.
startResult
int
A value >= 0 that specifies the starting number of the event to receive. Often used in conjunction with maxResults.
tag
int
Used in the request-reply model, described in Using Request-Reply, to match a request event with its corresponding reply event.
trackId
unicode_string
This field's value can be set by a publishing client application to a unique identifier for tracking purposes. This allows an event that is re-published to be tracked. It also allows multiple events associated with a single logical transaction to be tracked. If not set, this field should be treated as if it contained the same value as the pubId field.
transactionId
unicode_string
This field's value can be set by a publishing client application to indicate that an event is part of a transaction. See Transaction Semantics for more information.
transformState
unicode_string
This field allows clients that transform data to mark an event's current state. An event could be published with a transformState value of "USEnglish". A receiving client could translate the event into French and publish it with a transformState value of "French".
The appSeqn and appLastSeqn can be used by your publisher and subscriber applications for whatever purpose they require. One possibility is to track a sequence of events which represent a response to a single request event. Your publisher could start appSeqn at 1 and set appLastSeqn to the sequence number of the last event in the sequence. If your publisher does not know the length of the sequence when it starts publishing, then appLastSeqn need not be set. When your publisher is about to publish the last event of the sequence, appLastSeqn could be set to equal appSeqn. Setting both appSeqn and appLastSeqn to -1 indicates the event is empty.
If you want your publisher to have a continuous stream of sequence numbers, then you should use BrokerEvent.setPublishSequenceNumber method to set the appropriate number prior to publishing the event.
Note:
The BrokerEvent.setPublishSequenceNumber method does not actually set the pubSeqn envelope field. Instead, it specifies the sequence number that the Broker is to use when the event is published by your Broker client.