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

HTTP POST from ABAP report using a HTTPS URL

Former Member
0 Likes
1,114

Hi all,

We have a small project in which we would like to enable iPhone notifications via a third party notifications server (urban airship). To perform the broadcast of the notifications an HTTP POST to a secure http URL is needed (https://go.urbanairship.com/api/push/broadcast).

The HTTP POST is performed using an object (name = "client") of type if_http_client which is initiated using method "create_by_url".

After the header and body of the request are filled, we use the "authenticate" providing user and password (we are not passing any proxy information).

Next we call the send and receive methods of this object.

The problem is we get a response code 407 with text "ICM_HTTP_SSL_ERROR".

I did some reading and found that there might be a missing certificate on my machine.

The problem is I cannot access transaction strust because the report is written in an application system.

Does anyone know why this error is raised? Is it originally coming from the host or from SAP? Any ideas??

Thanks,

Ben

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
602

Hi Ben,

The error may be due to some integration problem with sap and internet protocals.

I would suggest you to ask the basis person to check whether all the configurations related to internet from sap are done properly.

check the below thread from sdn forums.

thanks,

M.naveen Kumar

2 REPLIES 2
Read only

Former Member
0 Likes
603

Hi Ben,

The error may be due to some integration problem with sap and internet protocals.

I would suggest you to ask the basis person to check whether all the configurations related to internet from sap are done properly.

check the below thread from sdn forums.

thanks,

M.naveen Kumar

Read only

0 Likes
602

Hi M. Naveen Kumar.

I think the main problem we have is the configuration of the required SSL certificates from a development application server.

Still waiting for the application system owner to answer my ticket.

I will update an soon as I have more info...

Ben