Considering the below piece of code :
ret_node = axis2_svc_client_send_receive(svc_client, env, payload);
//Send request to an Axis2 Server from an Axis2C Client which consumes the service.
This requires that the server is Axis as the return value ret_node
is of the type axiom_node_t
.
However, I wish to write an Axis2C SOAP Client that will communicate to less known Tally HTTP Server which runs at port 9000.
I haven't seen any such example where an Axis2c client communicates with a non-Axis server. I believe this is possible.
- Can an axis2c client consume a non-axis service?
- If yes, could anybody point out some examples or shed some light on howto?