NonStop SOAP 4.1 User's Manual

axiom_node_to_string
Synopsis:
AXIS2_EXTERN axis2_char_t* axiom_node_to_string
( axiom_node_t * om_node,
const axutil_env_t * env )
Description:
This function
Parameters:
om_node
pointer to the AXIOM node structure
env
is a pointer to the environment struct. The env parameter must not be NULL.
Return Values:
This function returns the string representation of the node
Text
axiom_text_create
Synopsis:
AXIS2_EXTERN axiom_text_t* axiom_text_create
( const axutil_env_t * env,
axiom_node_t * parent,
const axis2_char_t * value,
axiom_node_t ** node )
Description:
This function creates a new text struct.
Parameters:
env
is a pointer to the environment struct. The env parameter must not be NULL.
parent
parent of the new node. Optinal, can be NULL. The parent element must be of type
AXIOM_ELEMENT.
value
Text value. Optinal, can be NULL.
comment_node
This is an out parameter. cannot be NULL. Returns the node corresponding to the text structure
created. Node type will be set to AXIOM_TEXT.
Return Values:
This function returns a pointer to newly created text struct.
axiom_text_free
Synopsis:
AXIS2_EXTERN void axiom_text_free
( struct axiom_text * om_text,
const axutil_env_t * env )
Description:
This function frees an axiom_text struct.
AXIOM APIs 341