‎2012 Oct 15 7:29 PM
Fellows, I would like to request some help from you.
I need to connect to a HTTPS website that contains a form waiting for a XML data that can be passed through URL parameters and POST method.
The site have a SSL certificate.
It cannot be done as webservice.
My doubt is how it can be done via ABAP and what configurations (if there are) need to be done to make it's possible.
If you guys need some more information, please ask me.
Thank you,
Heber
‎2012 Oct 15 9:20 PM
Hi,
To access external SSL websites within ABAP, do as follow:
1. Activate SSL on ABAP (Below works for almost all ABAP versions)
http://help.sap.com/saphelp_nwpi711/helpdata/en/49/23501ebf5a1902e10000000a42189c/frameset.htm
2. Follow the steps in the following link to import external website's SSL Client certificate into ABAP system via STRUSTSSO2
http://help.sap.com/saphelp_nwpi711/helpdata/en/49/23501ebf5a1902e10000000a42189c/frameset.htm
‎2012 Oct 15 9:20 PM
Hi,
To access external SSL websites within ABAP, do as follow:
1. Activate SSL on ABAP (Below works for almost all ABAP versions)
http://help.sap.com/saphelp_nwpi711/helpdata/en/49/23501ebf5a1902e10000000a42189c/frameset.htm
2. Follow the steps in the following link to import external website's SSL Client certificate into ABAP system via STRUSTSSO2
http://help.sap.com/saphelp_nwpi711/helpdata/en/49/23501ebf5a1902e10000000a42189c/frameset.htm
‎2012 Nov 08 8:27 PM
It was possible using class CL_HTTP_CLIENT and a RFC Destination configured with needed proxies and connection type.
Thank you.