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

Standard SAP code is calling HTTP - want it to call HTTPS

Former Member
0 Likes
495

We have recently switched our environment to HTTPS however some SAP code such as this:

-


FORM get_url USING p_application

CHANGING p_url.

DATA: lw_application_name TYPE string.

lw_application_name = p_application.

CALL METHOD cl_wd_utilities=>construct_wd_url

EXPORTING

application_name = lw_application_name

namespace = 'sap'

IMPORTING

out_absolute_url = p_url. "

ENDFORM. " GET_URL

-


calls the HTTP URL instead of the HTTPS URL.

Is there a way to change this globally so that call code calls the HTTPS value (with the correct port as defined in the ICM - i.e. 443)?

1 REPLY 1
Read only

Former Member
0 Likes
341

Hi

Check the below link.

[;