class PP_HTTP_CONNECTION
Client examples: PAYPAL_STANDARD_BUTTON_MANAGER_AUTOTEST_APP
Paypal HTTP connection
note
	description: "Paypal HTTP connection"
	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"
	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2024-05-16 7:19:30 GMT (Thursday 16th May 2024)"
	revision: "11"
		
		class
	PP_HTTP_CONNECTION
inherit
	EL_HTTP_CONNECTION
		rename
			make as make_connection
		redefine
			open_url
		end
create
	make
feature {NONE} -- Initialization
	make (a_configuration: PP_CONFIGURATION)
		do
			make_connection
			configuration := a_configuration
		end
feature -- Access
	configuration: PP_CONFIGURATION
feature -- Basic operations
	open_url (a_url: like url)
		do
			Precursor (a_url)
			set_http_version (1_1)
			set_tls_version (1_2)
			set_certificate_verification (True)
			set_hostname_verification (True)
			set_certificate_authority_info (Configuration.cert_authority_info_path)
			request_headers ["Connection"] := "Close"
		end
end