I wrote a function to call a SOAP web service using the httpclient object using TLS 1.2. This works just fine on my computer, but when I deploy the application to another computer (which does not have PowerBuilder 2017 installed), an exception is thrown with the message "Unresolvable external httpclient when linking reference at line 50 in function of_call_web_service of object n_cst_webservice." The lines around the error are:
ls_xml_request = ls_xml_request + ""
lo_client = Create httpClient
lo_client.SecureProtocol = SECURE_PROTOCOL_TLS12
line 50 is the lo_client = Create httpClient line.
Any idea what is causing the error on computers that do not have PowerBuilder 2017 installed, but not on computers with it installed?