Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | API Reference | awGet | awGetEventTypeInfosetNames
 
awGetEventTypeInfosetNames
BrokerError awGetEventTypeInfosetNames(
BrokerClient client,
char *event_type_name,
int *n,
char ***infoset_names);
client
The Broker client requesting the infoset names.
event_type_name
The event type name whose infosets are to be obtained.
n
Number of names in infoset_names. This parameter is used for output.
infoset_names
An array of infoset names. This parameter is used for output.
Provides a list of infosets names for the specified event_type_name. The caller is responsible for calling free on the output value. The infoset names share one memory block so multiple calls to free are not necessary.
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, n, or infoset_names parameter is NULL.
AW_ERROR_UNKNOWN_EVENT_TYPE
The event_type_name does not exist on the Broker.
See also: