Hello,
I have staff (virtual) service created (server side) using SOAP.
From my service/service wrapper I am not able to get information about:
- SOAP->ENVELOPE->HEADER->TO
- http post request
- event I cannot access "endpoint uri fragment"
where SESSION_LIKE_INFORMATION is this uri fragment
I found in Axis code (raw_xml_in_out_msg_recv.c) that incoming context is not exposed
to staff service
if (status == AXIS2_SUCCESS)
{
skel_invoked = AXIS2_TRUE;
result_node = AXIS2_SVC_SKELETON_INVOKE(svc_obj, env, om_node, new_msg_ctx);
}
only a new context that does not have any headers information exposed or information about endpoint
Staff context taken from operation is this new_msg_ctx that does not return ToAddress information.
Any suggestions?
Mike