NonStop SOAP 4.1 User's Manual
Description:
This function sends a message and forget about it. This method is used to interact with a service
operation whose MEP is In-Only. That is, there is no opportunity to get an error from the service
via this method; one may still get client-side errors, such as host unknown etc.
Parameters:
svc_client
pointer to service client struct.
env
is a pointer to the environment struct. The env parameter must not be NULL.
payload
pointer to AXIOM node representing the XML payload to be sent. The caller has control over
the payload until the service client frees it.
Return Values:
None
axis2_svc_client_send_receive
Synopsis:
AXIS2_EXTERN axiom_node_t* axis2_svc_client_send_receive
( axis2_svc_client_t * svc_client,
const axutil_env_t * env,
const axiom_node_t * payload )
Description:
This function sends an XML request and receives XML response. This method is used to interact
with a service operation whose MEP is IN-OUT.
Parameters:
svc_client
pointer to service client structure
env
pointer to the environment structure. The env parameter must not be NULL.
payload
pointer to AXIOM node representing the XML payload to be sent. The caller has control over
the payload until the service client frees it.
Return Values:
This function returns a pointer to AXIOM node representing the XML response. The caller owns the
returned node.
axis2_svc_client_send_receive_with_op_qname
Synopsis:
AXIS2_EXTERN axiom_node_t* axis2_svc_client_send_receive_with_op_qname
( axis2_svc_client_t * svc_client,
const axutil_env_t * env,
const axutil_qname_t * op_qname,
const axiom_node_t * payload )
Description:
This function sends an XML request and receives XML response. This method is used to interact
with a service operation whose MEP is IN-OUT.
Parameters:
svc_client
pointer to service client structure
Client API Module 347










