Hi,
Following abap coding is to get the message ID within XI 3.0 inbound proxys:
data:
l_message_guid TYPE sxmsguid,
lo_protocol TYPE REF TO if_wsprotocol_message_id,
lo_server_context TYPE REF TO if_ws_server_context.
TRY.
lo_server_context = cl_proxy_access=>get_server_context( ).
lo_protocol ?= lo_server_context->get_protocol( if_wsprotocol=>message_id ).
l_message_guid = lo_protocol->get_message_id( ).
CATCH cx_ai_system_fault.
ENDTRY.
Unfortunately only the ID of the request message; how to get the ID of the response?
Regards Udo
Add a comment