ABAP 向 REST 服务发出 HTTPS 请求

发布于 2024-08-21 17:49:50 字数 112 浏览 4 评论 0 原文

是否可以从 ABAP 程序向 REST 服务发出 HTTPS 请求?

我即将开始一个项目,该项目需要使用 XML over HTTPS 从 SAP 实例调用远程托管服务。有人有ABAP示例代码吗?

Is it possible to make HTTPS requests to a REST service from an ABAP program?

I'm about to start into a project which requires a call from an SAP instance to a remotely hosted service using XML over HTTPS. Does anyone have sample ABAP code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

打小就很酷 2024-08-28 17:49:51

这可以使用 cl_http_client 来完成。
检查 SAP 帮助文档以获取代码。

如需进行HTTPS调用,您还需要将服务提供商的证书导入系统。这可以使用事务“STRUST”来完成。此步骤是强制性的;没有它,您会遇到通信错误。

This can be done using cl_http_client.
Check the SAP help documentation for the code.

For making HTTPS calls, you also need to import the certificate of your service provider into the system. This can be done using the transaction "STRUST". This step is compulsory; without it, you`ll get communication errors.

饮湿 2024-08-28 17:49:50

有一篇 SDN 文章,标题为“使用 REST 和 ICF 的真实 Web 服务”。这仅涵盖服务器端(提供 REST 服务),但这也许可以帮助您入门。还有(可以说相当简洁)客户端 ICF 开发文档。然而,看起来您必须自己解析正文,只使用 SAP 为您提供的 XML 支持。这就是 REST 的缺点...

There is a SDN article titled "Real Web Services with REST and ICF". This covers the server side (providing a REST service) only, but maybe this could help you getting started. There's also the (arguably rather concise) documentation on client side ICF development. However, it looks like you'll have to parse the body on your own, using nothing but the XML support SAP provides you with. That's the drawback of REST...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文