08-20-2022 06:33 PM
Can anyone point me to HTTPS code to login to SOAP webservice.
I have this URL:
Url =
with supplied
— username
— password
Is there a LabVIEW code snippet to send login info for authethetication and return a reference that opens the service API.
Thanks
Solved! Go to Solution.
08-22-2022 09:38 AM
Hello:
OK, I was able to find internet info to answer my own question.
SOAP web service servers use Basic Login Authentication that goes as follows:
See:
https://datatracker.ietf.org/doc/html/rfc2617.html#page-3:
SOAP Basic Authentication Scheme (Login)
----------------------------------------
To receive authorization, the client sends the userid and password, separated by a single colon (":") character, within a base64 [7] encoded string in the credentials.
basic-credentials = base64-user-pass
base64-user-pass = <base64 [4] encoding of user-pass,
And Attached is the VI that Successfully accomplished this Login procedure.