Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | API Reference | awGet | awGetEventTypeInfoset
 
awGetEventTypeInfoset
BrokerError awGetEventTypeInfoset(
BrokerClient client,
char *event_type_name,
char *infoset_name,
BrokerEvent *infoset);
client
The Broker client requesting the infoset.
event_type_name
Event type name whose infoset is to be returned.
infoset_name
The name of the infoset.
infoset
The infoset that is returned, in event form. This parameter is used for output.
Provides the infoset for the specified event_type_name. The infoset itself is returned as an event, for convenience. The infoset name is stored as the event's type name.
The caller is responsible for calling awDeleteEvent on the output value.
Possible BrokerError major codes
Meaning
AW_ERROR_INVALID_CLIENT
The client has been disconnected or destroyed.
AW_ERROR_NO_PERMISSION
The infoset_name is not set to "public" and the client does not have permission to publish or subscribe to the event type.
AW_ERROR_NULL_PARAM
The event_type_name, infoset_name, or infoset parameter is NULL.
AW_ERROR_UNKNOWN_EVENT_TYPE
The event_type_name does not exist on the Broker.
AW_ERROR_UNKNOWN_INFOSET
The infoset_name does not exist for the specified event type on the Broker.
See also: