ABAP 向 REST 服务发出 HTTPS 请求
是否可以从 ABAP 程序向 REST 服务发出 HTTPS 请求?
我即将开始一个项目,该项目需要使用 XML over HTTPS 从 SAP 实例调用远程托管服务。有人有ABAP示例代码吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以从 ABAP 程序向 REST 服务发出 HTTPS 请求?
我即将开始一个项目,该项目需要使用 XML over HTTPS 从 SAP 实例调用远程托管服务。有人有ABAP示例代码吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这可以使用 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.
有一篇 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...