NonStop SOAP 4.1 User's Manual
Return Values:
This function returns a pointer to first child AXIOM element, NULL is returned on error with error
code set in environments error.
axiom_node_get_last_child
Synopsis:
AXIS2_EXTERN axiom_node_t* axiom_node_get_last_child
( axiom_node_t * om_node,
const axutil_env_t * env )
Description:
This function gets the last child of the node.
Parameters:
om_node
node
env
is a pointer to the environment struct. The env parameter must not be NULL.
Return Values:
This function returns a pointer to last child of this node , return NULL on error.
axiom_node_get_previous_sibling
Synopsis:
AXIS2_EXTERN axiom_node_t* axiom_node_get_previous_sibling
( axiom_node_t * om_node,
const axutil_env_t * env )
Description:
This function gets the previous sibling.
Parameters:
om_node
om_node structure
env
is a pointer to the environment struct. The env parameter must not be NULL.
Return Values:
This function returns a pointer to previous sibling , NULL if a previous sibling does not exits (happens
when this node is the first child of a node ).
axiom_node_get_next_sibling
Synopsis:
AXIS2_EXTERN axiom_node_t* axiom_node_get_next_sibling
( axiom_node_t * om_node,
const axutil_env_t * env )
Description:
This function gets the next sibling.
Parameters:
om_node
om_node structure
env
is a pointer to the environment struct. The env parameter must not be NULL.
Return Values:
This function returns the next sibling of this node.
AXIOM APIs 339










