Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

HTTPS Connection via ABAP

Former Member
0 Likes
950

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

1 ACCEPTED SOLUTION
Read only

HuseyinBilgen
Active Contributor
0 Likes
822

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

2 REPLIES 2
Read only

HuseyinBilgen
Active Contributor
0 Likes
823

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

Read only

Former Member
0 Likes
822

It was possible using class CL_HTTP_CLIENT and a RFC Destination configured with needed proxies and connection type.

Thank you.