2

Does anyone have any information on the prerequisites for sending HTTPS requests from SAP? I'm able to send HTTP Posts ok but I can't get a request to be sent over HTTPS. This is from ABAP

I guess the core of the issue is what needs to be done to tell SAP to use a HTTPS connection not the standard HTTP.

Thanks

Chris

1 Answers1

8

Are you posting via an HTTP RFC?

If so:

  • go to transaction SM59
  • choose HTTP Connections to External Server
  • Select the RFC
  • Edit

Technical settings tab:

  • Target Host = the server you are sending the HTTP POST to
  • Service No = the port number (e.g. 443)

Logon & Security tab:

  • Basic Authentication
  • SSL = Active
  • SSL Client Certificate = DEFAULT SSL Client (Standard) (this needs to be configured in transaction STRUST if not already done so)
EightBitTony
  • 9,441
  • 1
  • 37
  • 47
Techboy
  • 1,602