我试图将SAP系统用作客户端,并与外部服务器进行通信。除了此处的代码外,代码工作正常:
CALL METHOD go_client->receive
EXCEPTIONS
http_communication_failure = 1
http_invalid_state = 2
http_processing_failed = 3
OTHERS = 4.
IF sy-subrc <> 0.
CALL METHOD cl_http_client=>get_last_error(
IMPORTING
code = g_subrc
message = g_errortext ).
WRITE: / 'Error accured: ', g_errortext, 'with the code: ', g_subrc.
EXIT.
ENDIF。
这将返回错误“ http_communication_failure”。我发现详细的消息是“连接到openlibrary.org:80失败:NIECONN_REFUSED(-10)”,但是经过数小时的搜索,我仍然找不到解决方法。
有人可以帮忙吗?