#include <axiom_soap_body.h>
Public Attributes | |
axis2_status_t(* | free )(axiom_soap_body_t *body, const axis2_env_t *env) |
axis2_bool_t(* | has_fault )(axiom_soap_body_t *body, const axis2_env_t *env) |
axiom_soap_fault_t *(* | get_fault )(axiom_soap_body_t *body, const axis2_env_t *env) |
axiom_node_t *(* | get_base_node )(axiom_soap_body_t *body, const axis2_env_t *env) |
int(* | get_soap_version )(axiom_soap_body_t *body, const axis2_env_t *env) |
axis2_status_t(* | build )(axiom_soap_body_t *body, const axis2_env_t *env) |
axis2_status_t(* | add_child )(axiom_soap_body_t *body, const axis2_env_t *env, axiom_node_t *child) |
axis2_status_t( * axiom_soap_body_ops::free)(axiom_soap_body_t *body, const axis2_env_t *env) |
Deallocate all the resources associated to soap_body But it does not deallocate the underlying om structure
body | soap_body struct | |
env | must not be null |
axis2_bool_t( * axiom_soap_body_ops::has_fault)(axiom_soap_body_t *body, const axis2_env_t *env) |
Indicates whether a soap fault is available with this soap body
body | soap_body struct | |
env | environment must not be null |
axiom_soap_fault_t*( * axiom_soap_body_ops::get_fault)(axiom_soap_body_t *body, const axis2_env_t *env) |
returns the soap fault in this soap_body IF a soap_builder is associated with the soap_body Pulling will take place
body | soap_body | |
env | environment must not be null |
axiom_node_t*( * axiom_soap_body_ops::get_base_node)(axiom_soap_body_t *body, const axis2_env_t *env) |
get the underlying om_node
body | soap_body | |
env | environment must not be null |
int( * axiom_soap_body_ops::get_soap_version)(axiom_soap_body_t *body, const axis2_env_t *env) |
return the soap version
body | soap_body | |
env | environment must not be null |
axis2_status_t( * axiom_soap_body_ops::build)(axiom_soap_body_t *body, const axis2_env_t *env) |
build the soap body completely . return the status code,
axis2_status_t( * axiom_soap_body_ops::add_child)(axiom_soap_body_t *body, const axis2_env_t *env, axiom_node_t *child) |
add an om node as the child to this soap_body the child is added to as the first child
body | pointer to soap_body struct | |
env | axis2_environment struct MUST not be NULL |