We are using PowerBuilder 2017 R3 and want to enable anonymous authentication similar to what we have in PowerBuilder 2022 below code. Is there any option available in PowerBuilder 2017 R3 to achieve the same?
Any help is highly appreciated.
Thanks, Tinu Sharma
ln_rtn = l_httpclient.SendRequest("GET", "https://test.appeon.com")
If ln_rtn = -16 Then
l_httpclient.anonymousAccess = true;
l_httpclient.SendRequest("GET", "https://test.appeon.com")
End If