wsdl-locate

Name

wsdl-locate -- 

Synopsis



wsdl_porttype_operation* wsdl_locate_porttype_operation
                                            (guchar *name,
                                             wsdl_porttype *porttype);
wsdl_message_part* wsdl_locate_message_part (guchar *name,
                                             wsdl_message *message);
wsdl_message* wsdl_locate_message           (guchar *name,
                                             wsdl_definitions *definitions);
wsdl_porttype* wsdl_locate_porttype         (guchar *name,
                                             wsdl_definitions *definitions);
wsdl_binding* wsdl_locate_binding           (guchar *name,
                                             wsdl_definitions *definitions);

Description

Details

wsdl_locate_porttype_operation ()

wsdl_porttype_operation* wsdl_locate_porttype_operation
                                            (guchar *name,
                                             wsdl_porttype *porttype);

Finds the wsdl_porttype_operation named name that is a direct descendant of porttype.

name :

a string containing the name of the WSDL porttype operation to find

porttype :

a pointer to a wsdl_porttype structure

Returns :

the wsdl_porttype_operation named name that is a direct descendant of porttype, or NULL if one can't be found.


wsdl_locate_message_part ()

wsdl_message_part* wsdl_locate_message_part (guchar *name,
                                             wsdl_message *message);

Finds the wsdl_message_part named name that is a direct descendant of message.

name :

a string containing the name of the WSDL message part to find

message :

a pointer to a wsdl_message structure

Returns :

the wsdl_message_part named name that is a direct descendant of message, or NULL if one can't be found.


wsdl_locate_message ()

wsdl_message* wsdl_locate_message           (guchar *name,
                                             wsdl_definitions *definitions);

Finds the wsdl_message named name that is a direct descendant of definitions.

name :

a string containing the name of the WSDL message to find

definitions :

a pointer to a wsdl_definitions structure

Returns :

the wsdl_message named name that is a direct descendant of definitions, or NULL if one can't be found.


wsdl_locate_porttype ()

wsdl_porttype* wsdl_locate_porttype         (guchar *name,
                                             wsdl_definitions *definitions);

Finds the wsdl_porttype named name that is a direct descendant of definitions.

name :

a string containing the name of the WSDL porttype to find

definitions :

a pointer to a wsdl_definitions structure

Returns :

the wsdl_porttype named name that is a direct descendant of definitions, or NULL if one can't be found.


wsdl_locate_binding ()

wsdl_binding* wsdl_locate_binding           (guchar *name,
                                             wsdl_definitions *definitions);

Finds the wsdl_binding named name that is a direct descendant of definitions.

name :

a string containing the name of the WSDL binding to find

definitions :

a pointer to a wsdl_definitions structure

Returns :

the wsdl_binding named name that is a direct descendant of definitions, or NULL if one can't be found.